Skip to content

Instantly share code, notes, and snippets.

@hodgestar
Created November 5, 2014 09:51
Show Gist options
  • Save hodgestar/6cd7bb751435fc4be0e0 to your computer and use it in GitHub Desktop.
Save hodgestar/6cd7bb751435fc4be0e0 to your computer and use it in GitHub Desktop.
Default Vumi Go dashboard
[{
'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