Support retrieving identifying information per time series:
- Metric name (and unit, if available)
- Dimension names
- Dimension name/values
This will likely require some aggregation function (or other dedicated syntax) for use in TS-STATS, that can be combined with filtering on metric or dimension filters (including regex), e.g.
TS metrics | WHERE label LIKE "host-*-10" AND TRANGE(5m) | STATS TSINFO()
This can be implemented similartly to STATS BY ALL, retrieving the source for the first doc per tsid and keeping the dimension names and values and the metric name(s).
Support retrieving identifying information per time series:
This will likely require some aggregation function (or other dedicated syntax) for use in TS-STATS, that can be combined with filtering on metric or dimension filters (including regex), e.g.
This can be implemented similartly to
STATS BY ALL, retrieving the source for the first doc per tsid and keeping the dimension names and values and the metric name(s).