Created
November 5, 2014 09:51
-
-
Save hodgestar/6cd7bb751435fc4be0e0 to your computer and use it in GitHub Desktop.
Default Vumi Go dashboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
'type': 'diamondash.widgets.lvalue.LValueWidget', | |
'time_range': '1d', | |
'name': 'Messages Sent (24h)', | |
'target': { | |
'metric_type': 'conversation', | |
'name': 'messages_sent' | |
} | |
}, { | |
'type': 'diamondash.widgets.lvalue.LValueWidget', | |
'time_range': '1d', | |
'name': 'Messages Received (24h)', | |
'target': { | |
'metric_type': 'conversation', | |
'name': 'messages_received' | |
} | |
}, 'new_row', { | |
'type': 'diamondash.widgets.graph.GraphWidget', | |
'name': 'Messages Sent and Received (24h)', | |
'width': 6, | |
'time_range': '24h', | |
'bucket_size': '15m', | |
'metrics': [{ | |
'name': 'Messages Sent', | |
'target': { | |
'metric_type': 'conversation', | |
'name': 'messages_sent' | |
} | |
}, { | |
'name': 'Messages Received', | |
'target': { | |
'metric_type': 'conversation', | |
'name': 'messages_received' | |
} | |
}] | |
}, { | |
'type': 'diamondash.widgets.graph.GraphWidget', | |
'name': 'Messages Sent and Received (30d)', | |
'width': 6, | |
'time_range': '30d', | |
'bucket_size': '1d', | |
'metrics': [{ | |
'name': 'Messages Sent', | |
'target': { | |
'metric_type': 'conversation', | |
'name': 'messages_sent' | |
} | |
}, { | |
'name': 'Messages Received', | |
'target': { | |
'metric_type': 'conversation', | |
'name': 'messages_received' | |
} | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment