mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fix swapped storage metrics names
This commit is contained in:
parent
7e3ed2010d
commit
146837fe73
4 changed files with 11 additions and 11 deletions
|
@ -260,12 +260,12 @@ void Backend::InitMetrics() {
|
|||
erase_metrics =
|
||||
std::make_unique<detail::OperationMetrics>(results_family, latency_family, "erase", Tag(), metrics_config);
|
||||
|
||||
bytes_read_metric = telemetry_mgr->CounterInstance("zeek", "storage_backend_data_written",
|
||||
{{"type", Tag()}, {"config", metrics_config}},
|
||||
"Storage data written to backend", "bytes");
|
||||
bytes_written_metric = telemetry_mgr->CounterInstance("zeek", "storage_backend_data_read",
|
||||
bytes_written_metric = telemetry_mgr->CounterInstance("zeek", "storage_backend_data_written",
|
||||
{{"type", Tag()}, {"config", metrics_config}},
|
||||
"Storage data read from backend", "bytes");
|
||||
"Storage data written to backend", "bytes");
|
||||
bytes_read_metric = telemetry_mgr->CounterInstance("zeek", "storage_backend_data_read",
|
||||
{{"type", Tag()}, {"config", metrics_config}},
|
||||
"Storage data read from backend", "bytes");
|
||||
|
||||
expired_entries_metric = telemetry_mgr->CounterInstance("zeek", "storage_backend_expired_entries",
|
||||
{{"type", Tag()}, {"config", metrics_config}},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue