forked from Crapworks/ceph-dash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.influxdb.json
More file actions
24 lines (23 loc) · 1000 Bytes
/
config.influxdb.json
File metadata and controls
24 lines (23 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"ceph_config": "/ceph-dash/ceph.conf",
"influxdb": {
"uri": "influxdb://influxdb.marathon.l4lb.thisdcos.directory:8086/ceph-dash",
"metrics": [
{
"queries" : [
"SELECT mean(value) FROM \"ceph.cluster\" WHERE hostname =~ /ceph-mon-.*/ AND type = 'read_bytes_sec' AND time > now() - 15m GROUP BY time(10s);",
"SELECT mean(value) FROM \"ceph.cluster\" WHERE hostname =~ /ceph-mon-.*/ AND type = 'write_bytes_sec' AND time > now() - 15m GROUP BY time(10s);"
],
"labels": [ "Read", "Write" ],
"mode": "byteRate"
},
{
"queries" : [
"SELECT mean(value) FROM \"ceph.cluster\" WHERE hostname =~ /ceph-mon-.*/ AND type = 'op_per_sec' AND time > now() - 15m GROUP BY time(10s);"
],
"labels": [ "IOPS" ],
"colors": [ "#5bc0de" ]
}
]
}
}