Removing page fetches from munin.

This commit is contained in:
Samuel Clay 2013-08-16 16:02:56 -07:00
parent 312880a862
commit 1ff16938e3

View file

@ -14,7 +14,7 @@ class NBMuninGraph(MuninGraph):
# 'feed_errors.label': 'Feed Errors',
'feed_success.label': 'Feed Success',
# 'page_errors.label': 'Page Errors',
'page_success.label': 'Page Success',
# 'page_success.label': 'Page Success',
}
def calculate_metrics(self):
@ -23,7 +23,6 @@ class NBMuninGraph(MuninGraph):
return {
'feed_success': statistics['feeds_fetched'],
'page_success': statistics['pages_fetched'],
}
if __name__ == '__main__':