mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
vmui: clarify the info for TotalSeries stat (#7271)
### Describe Your Changes Please provide a brief description of the changes you made. Be as specific as possible to help others understand the purpose and impact of your modifications. ### Checklist The following checks are **mandatory**: - [ ] My change adheres [VictoriaMetrics contributing guidelines](https://docs.victoriametrics.com/contributing/). Signed-off-by: hagen1778 <roman@victoriametrics.com>
This commit is contained in:
parent
87910e4fa8
commit
1d637667a6
1 changed files with 2 additions and 2 deletions
|
@ -41,10 +41,10 @@ const CardinalityTotals: FC<CardinalityTotalsProps> = ({
|
|||
value: totalSeries.toLocaleString("en-US"),
|
||||
dynamic: (!totalSeries || !totalSeriesPrev || isPrometheus) ? "" : `${dynamic.toFixed(2)}%`,
|
||||
display: !focusLabel,
|
||||
info: `The total number of active time series.
|
||||
info: `The total number of unique time series for a selected day.
|
||||
A time series is uniquely identified by its name plus a set of its labels.
|
||||
For example, temperature{city="NY",country="US"} and temperature{city="SF",country="US"}
|
||||
are two distinct series, since they differ by the city label.`
|
||||
are two distinct series, since they differ by the "city" label.`
|
||||
},
|
||||
{
|
||||
title: "Percentage from total",
|
||||
|
|
Loading…
Reference in a new issue