Tag API
HTTP/1.1 200
Content-Type: application/json[
"cluster",
"host",
"process",
"service",
"name"
]Path Parameters
Name
Type
Description
Path Parameters
Name
Type
Description



Last updated
HTTP/1.1 200
Content-Type: application/json[
"cluster",
"host",
"process",
"service",
"name"
]


Last updated
curl -X GET "https://[email protected]/api/v1/tags"curl -X GET "https://[email protected]/api/v1/tags/host?filter=prod-00*&limit=3"HTTP/1.1 200
Content-Type: application/json [
"0.queue_backlog;cluster=prod;host=prod-egg-0021;process=grind;service=data_process",
"2.queue_backlog;cluster=prod;host=prod-egg-0021;process=grind;service=data_process",
"0.items;cluster=prod;host=prod-egg-001;process=dump;service=data_process"
]curl -X GET "https://[email protected]/api/v1/tags/findSeries?expr=cluster=prod&host=egg-0001"HTTP/1.1 200
Content-Type: application/json
{"tag": "host",
"values": [{"count": 59, "value": "machine-0001"},
{"count": 57, "value": "machine-0002"},
{"count": 59, "value": "machine-0003"}]
}curl -X POST "https://[email protected]/api/v1/tags/delSeries" --data-urlencode "path=foo.bar;tag1=val1;tag2=val2"