OpenapiO11y
Lists the org's metric volume-control (label reduction) rules, pageable and…
Lists the org's metric volume-control (label reduction) rules, pageable and sortable by name, volume or recency.
GET /v1/o11y/metric_reduction_rules
| Address | https://api.hanzo.ai/v1/o11y/metric_reduction_rules |
| Method | GET |
| Operation | ListMetricReductionRules |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Lists the org's metric volume-control (label reduction) rules, pageable and sortable by name, volume or recency.
Request
6 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
orderBy | query | string | — | OrderBy sorts the page: metric, ingested_volume, reduced_volume or last_updated. |
order | query | string | — | Order is asc or desc. |
search | query | string | — | Search narrows the page to rules whose metric name contains it. |
metricName | query | string | — | MetricName narrows the page to one metric's rule. |
offset | query | integer | — | Offset is how many rules to skip, for paging. |
limit | query | integer | — | Limit caps how many rules come back, at most 1000. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | o11y.O11yReductionRuleListOut | ok |
200 body — 18 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | o11y.O11yReductionRules | — | |
data.rules | body | o11y.O11yReductionRule[] | — | Rules are the rules. |
data.rules[].active | body | boolean | — | Active says whether the rule is in force. |
data.rules[].createdAt | body | string (date-time) | — | CreatedAt is when the rule was created. |
data.rules[].createdBy | body | string | — | CreatedBy is who created it. |
data.rules[].effectiveFrom | body | string (date-time) | — | EffectiveFrom is when the rule took effect. |
data.rules[].id | body | string | — | ID is the rule's id. |
data.rules[].ingestedSamples | body | integer | — | IngestedSamples is how many samples arrived while the rule was active. |
data.rules[].ingestedSeries | body | integer | — | IngestedSeries is how many series arrived while the rule was active. |
data.rules[].labels | body | string[] | — | Labels are the label names the rule matches. |
data.rules[].matchType | body | string | — | MatchType is drop or keep. |
data.rules[].metricName | body | string | — | MetricName is the metric the rule governs. |
data.rules[].retainedSamples | body | integer | — | RetainedSamples is how many of them were kept. |
data.rules[].retainedSeries | body | integer | — | RetainedSeries is how many of them were kept. |
data.rules[].updatedAt | body | string (date-time) | — | UpdatedAt is when the rule last changed. |
data.rules[].updatedBy | body | string | — | UpdatedBy is who last changed it. |
data.total | body | integer | — | Total is how many rules matched, across all pages. |
status | body | string | — | Status is "success". |
Failure carries the platform error shape — see Errors.
Examples
hanzo o11y metric_reduction_rules listimport { Configuration, O11yApi } from 'hanzoai';
const api = new O11yApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.listMetricReductionRules();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import O11yApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = O11yApi(client).list_metric_reduction_rules()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.O11yAPI.ListMetricReductionRules(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, o11y_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = o11y_api::list_metric_reduction_rules(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.O11yApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new O11yApi(client).listMetricReductionRules();curl https://api.hanzo.ai/v1/o11y/metric_reduction_rules \
-H "Authorization: Bearer $HANZO_API_KEY"Tool o11y, op ListMetricReductionRules — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "o11y",
"arguments": {
"op": "ListMetricReductionRules",
"input": {}
}
}
}'How is this guide?