graphs
This commit is contained in:
parent
ef461fec1c
commit
da06f7cf06
3 changed files with 66 additions and 1 deletions
|
@ -75,6 +75,9 @@ defaults = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'grafana_rows': {
|
||||||
|
'zfs_arc',
|
||||||
|
},
|
||||||
'zfs': {
|
'zfs': {
|
||||||
'datasets': {},
|
'datasets': {},
|
||||||
'pools': {},
|
'pools': {},
|
||||||
|
|
|
@ -7,8 +7,8 @@ from(bucket: "${bucket}")
|
||||||
% if function == 'derivative':
|
% if function == 'derivative':
|
||||||
|> derivative(nonNegative: true)
|
|> derivative(nonNegative: true)
|
||||||
% endif
|
% endif
|
||||||
|
|> aggregateWindow(every: duration(v: int(v: v.windowPeriod)*${resolution}), fn: mean, createEmpty: false)
|
||||||
% if negative:
|
% if negative:
|
||||||
|> map(fn: (r) => ({r with _value: r._value * - 1.0}))
|
|> map(fn: (r) => ({r with _value: r._value * - 1.0}))
|
||||||
% endif
|
% endif
|
||||||
|> aggregateWindow(every: duration(v: int(v: v.windowPeriod)*${resolution}), fn: mean, createEmpty: false)
|
|
||||||
|> yield(name: "mean")
|
|> yield(name: "mean")
|
||||||
|
|
62
data/grafana/rows/zfs_arc.py
Normal file
62
data/grafana/rows/zfs_arc.py
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
{
|
||||||
|
'l2_size': {
|
||||||
|
'queries': {
|
||||||
|
'l2_size': {
|
||||||
|
'filters': {
|
||||||
|
'_measurement': 'zfs',
|
||||||
|
'_field': [
|
||||||
|
'arcstats_l2_size',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'function': 'mean',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'unit': 'bytes',
|
||||||
|
},
|
||||||
|
'l2_io': {
|
||||||
|
'queries': {
|
||||||
|
'read': {
|
||||||
|
'filters': {
|
||||||
|
'_measurement': 'zfs',
|
||||||
|
'_field': [
|
||||||
|
'arcstats_l2_read_bytes',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'function': 'derivative',
|
||||||
|
},
|
||||||
|
'write': {
|
||||||
|
'filters': {
|
||||||
|
'_measurement': 'zfs',
|
||||||
|
'_field': [
|
||||||
|
'arcstats_l2_write_bytes',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'function': 'derivative',
|
||||||
|
'negative': True,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'l2_cache_hits': {
|
||||||
|
'queries': {
|
||||||
|
'hits': {
|
||||||
|
'filters': {
|
||||||
|
'_measurement': 'zfs',
|
||||||
|
'_field': [
|
||||||
|
'arcstats_l2_hits',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'function': 'derivative',
|
||||||
|
},
|
||||||
|
'misses': {
|
||||||
|
'filters': {
|
||||||
|
'_measurement': 'zfs',
|
||||||
|
'_field': [
|
||||||
|
'arcstats_l2_misses',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'function': 'derivative',
|
||||||
|
'negative': True,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in a new issue