mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
update state to system name. This will break grafana boards and thus needs an adjustment
This commit is contained in:
parent
ea94ca6656
commit
989d130692
@ -93,16 +93,16 @@ impl EcsSystemMetrics {
|
||||
];
|
||||
let system_length_hist = HistogramVec::new(
|
||||
HistogramOpts::new(
|
||||
"state_tick_time_hist",
|
||||
"shows the number of clients joined to the server",
|
||||
"system_length_hist",
|
||||
"shows the detailed time in ns inside each ECS system as histogram",
|
||||
)
|
||||
.buckets(bucket),
|
||||
&["system"],
|
||||
)?;
|
||||
let system_length_count = IntCounterVec::new(
|
||||
Opts::new(
|
||||
"state_tick_time_count",
|
||||
"shows the detailed time inside the `state_tick` for each system",
|
||||
"system_length_count",
|
||||
"shows the detailed time in ns inside each ECS system",
|
||||
),
|
||||
&["system"],
|
||||
)?;
|
||||
|
Loading…
Reference in New Issue
Block a user