mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Implemented Redis Operations ts (#8938)
Co-authored-by: Frigo <ceroroot1@gmail.com>
This commit is contained in:
parent
4b3ea9efa1
commit
b8b73f5672
6 changed files with 40 additions and 1 deletions
|
|
@ -1892,6 +1892,23 @@ local community_timeseries = { {
|
|||
color = timeseries_info.get_timeseries_color('default')
|
||||
}
|
||||
}
|
||||
}, {
|
||||
schema = "redis:reads_writes",
|
||||
id = timeseries_id.redis,
|
||||
label = i18n("system_stats.redis.redis_reads_writes"),
|
||||
priority = 0,
|
||||
measure_unit = "number",
|
||||
scale = i18n('graphs.metric_labels.reads_writes'),
|
||||
timeseries = {
|
||||
num_reads = {
|
||||
label = i18n('graphs.metric_labels.reads'),
|
||||
color = timeseries_info.get_timeseries_color('default')
|
||||
},
|
||||
num_writes = {
|
||||
label = i18n('graphs.metric_labels.writes'),
|
||||
color = timeseries_info.get_timeseries_color('bytes')
|
||||
}
|
||||
}
|
||||
}, -- influxdb_monitor.lua (Influx DB): --
|
||||
{
|
||||
schema = "influxdb:storage_size",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue