Implemented Redis Operations ts (#8938)

Co-authored-by: Frigo <ceroroot1@gmail.com>
This commit is contained in:
Manuel Ceroni 2025-02-04 16:15:51 +01:00 committed by GitHub
parent 4b3ea9efa1
commit b8b73f5672
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 40 additions and 1 deletions

View file

@ -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",