mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing munin graph order.
This commit is contained in:
parent
0235a907da
commit
ea085c6563
1 changed files with 1 additions and 1 deletions
|
@ -17,9 +17,9 @@ class NBMuninGraph(MuninGraph):
|
|||
}
|
||||
|
||||
stats = self.stats
|
||||
graph['graph_order'] = ' '.join(sorted(s['_id'] for s in stats))
|
||||
graph.update(dict((("%s.label" % s['_id'], s['_id']) for s in stats)))
|
||||
graph.update(dict((("%s.draw" % s['_id'], 'LINE1') for s in stats)))
|
||||
graph['graph_order'] = ' '.join(sorted(s['_id'] for s in stats))
|
||||
|
||||
return graph
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue