You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2023. It is now read-only.
The total number of active_series on a MT instance is available, but for multi-tenant deployments there is no way to get the number of active_series per tenant (internally represented by OrgId)
It looks like this can be simply added by changing AggMetrics.Metrics from ```
map[schema.MKey]*AggMetric
to
map[uint32]map[schema.MKey]*AggMetric
All calls to AggMetrics methods already pass a schema.MKey which has an Org field that returns the OrgId
This change to AggMetrics will then allow us to keep perOrg MetricsActive counts.
The text was updated successfully, but these errors were encountered:
The total number of active_series on a MT instance is available, but for multi-tenant deployments there is no way to get the number of active_series per tenant (internally represented by OrgId)
It looks like this can be simply added by changing AggMetrics.Metrics from ```
to
All calls to AggMetrics methods already pass a
schema.MKey
which has anOrg
field that returns the OrgIdThis change to AggMetrics will then allow us to keep perOrg MetricsActive counts.
The text was updated successfully, but these errors were encountered: