OpenapiO11y
Sets a signal limit on an ingestion key, by key id, answering with the created…
Sets a signal limit on an ingestion key, by key id, answering with the created limit.
POST /v1/o11y/gateway/ingestion_keys/{keyId}/limits
| Address | https://api.hanzo.ai/v1/o11y/gateway/ingestion_keys/{keyId}/limits |
| Method | POST |
| Operation | CreateIngestionKeyLimit |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Sets a signal limit on an ingestion key, by key id, answering with the created limit. Editor gate.
Request
10 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
keyId | path | string | yes | |
config | body | o11y.LimitConfig | — | |
config.day | body | o11y.LimitValue | — | |
config.day.count | body | integer | — | |
config.day.size | body | integer | — | |
config.second | body | o11y.LimitValue | — | |
config.second.count | body | integer | — | |
config.second.size | body | integer | — | |
signal | body | string | — | |
tags | body | string[] | — |
Response
| Status | Body | Meaning |
|---|---|---|
201 | o11y.O11yCreatedLimitOut | created |
201 body — 3 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | o11y.GettableCreatedIngestionKeyLimit | — | |
data.id | body | string | — | |
status | body | string | — | Status is "success". |
Failure carries the platform error shape — see Errors.
Examples
hanzo o11y gateway ingestion_keys limits <keyId>import { Configuration, O11yApi } from 'hanzoai';
const api = new O11yApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.createIngestionKeyLimit({ keyId: 'keyId', config: {"day":{"count":0,"size":0},"second":{"count":0,"size":0}}, signal: "<signal>" });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).create_ingestion_key_limit(key_id='keyId', config={"day":{"count":0,"size":0},"second":{"count":0,"size":0}}, signal="<signal>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.O11yAPI.CreateIngestionKeyLimit(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::create_ingestion_key_limit(&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).createIngestionKeyLimit();curl -X POST https://api.hanzo.ai/v1/o11y/gateway/ingestion_keys/<keyId>/limits \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"config": {
"day": {
"count": 0,
"size": 0
},
"second": {
"count": 0,
"size": 0
}
},
"signal": "<signal>"
}'The door reaches o11y through the o11y tool, which names its 340 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_o11y_alert_last"
}
}
}'How is this guide?