Merge the "cloud" grafana dashboard into the normal dashboard (#4007)

automerge
This commit is contained in:
Michael Vines 2019-04-25 21:14:36 -07:00 committed by Grimes
parent e71ab55288
commit 82776b333d
3 changed files with 1816 additions and 100 deletions

View File

@ -40,7 +40,7 @@ $ curl -X POST -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","id":1,
Inspect the blockexplorer at [http://beta.testnet.solana.com/](http://beta.testnet.solana.com/) for activity. Inspect the blockexplorer at [http://beta.testnet.solana.com/](http://beta.testnet.solana.com/) for activity.
View the [metrics dashboard]( View the [metrics dashboard](
https://metrics.solana.com:3000/d/U9-26Cqmk/testnet-monitor-cloud?refresh=60s&orgId=2&var-testnet=testnet-beta&var-hostid=All) https://metrics.solana.com:3000/d/testnet-beta/testnet-monitor-beta?var-testnet=testnet-beta)
for more detail on cluster activity. for more detail on cluster activity.
### Validator Setup ### Validator Setup

View File

@ -24,7 +24,17 @@ if channel == 'stable':
# testnet databases # testnet databases
data['title'] = 'Testnet Monitor' data['title'] = 'Testnet Monitor'
data['uid'] = 'testnet' data['uid'] = 'testnet'
data['templating']['list'] = [{'allValue': None, data['templating']['list'] = [{'current': {'text': '$datasource',
'value': '$datasource'},
'hide': 1,
'label': 'Data Source',
'name': 'datasource',
'options': [],
'query': 'influxdb',
'refresh': 1,
'regex': '',
'type': 'datasource'},
{'allValue': None,
'current': {'text': 'testnet', 'current': {'text': 'testnet',
'value': 'testnet'}, 'value': 'testnet'},
'hide': 1, 'hide': 1,
@ -45,10 +55,20 @@ else:
# databases # databases
data['title'] = 'Testnet Monitor ({})'.format(channel) data['title'] = 'Testnet Monitor ({})'.format(channel)
data['uid'] = 'testnet-' + channel data['uid'] = 'testnet-' + channel
data['templating']['list'] = [{'allValue': ".*", data['templating']['list'] = [{'current': {'text': '$datasource',
'value': '$datasource'},
'hide': 1,
'label': 'Data Source',
'name': 'datasource',
'options': [],
'query': 'influxdb',
'refresh': 1,
'regex': '',
'type': 'datasource'},
{'allValue': ".*",
'current': {'text': 'testnet', 'current': {'text': 'testnet',
'value': 'testnet'}, 'value': 'testnet'},
'datasource': 'Solana Influx Cloud (read-only)', 'datasource': '$datasource',
'hide': 1, 'hide': 1,
'includeAll': False, 'includeAll': False,
'label': 'Testnet', 'label': 'Testnet',
@ -65,7 +85,7 @@ else:
'type': 'query', 'type': 'query',
'useTags': False}, 'useTags': False},
{'allValue': ".*", {'allValue': ".*",
'datasource': 'Solana Influx Cloud (read-only)', 'datasource': '$datasource',
'hide': 0, 'hide': 0,
'includeAll': True, 'includeAll': True,
'label': 'HostID', 'label': 'HostID',

File diff suppressed because it is too large Load Diff