124 lines
2.7 KiB
JSON
124 lines
2.7 KiB
JSON
{
|
|
"swagger": "2.0",
|
|
"info": {
|
|
"title": "prompb/rpc.proto",
|
|
"version": "version not set"
|
|
},
|
|
"schemes": [
|
|
"http",
|
|
"https"
|
|
],
|
|
"consumes": [
|
|
"application/json"
|
|
],
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"paths": {
|
|
"/admin/v1/tsdb/delete_series": {
|
|
"post": {
|
|
"summary": "DeleteSeries deletes data for a selection of series in a time range.",
|
|
"operationId": "DeleteSeries",
|
|
"responses": {
|
|
"200": {
|
|
"description": "",
|
|
"schema": {
|
|
"$ref": "#/definitions/prometheusSeriesDeleteResponse"
|
|
}
|
|
}
|
|
},
|
|
"parameters": [
|
|
{
|
|
"name": "body",
|
|
"in": "body",
|
|
"required": true,
|
|
"schema": {
|
|
"$ref": "#/definitions/prometheusSeriesDeleteRequest"
|
|
}
|
|
}
|
|
],
|
|
"tags": [
|
|
"Admin"
|
|
]
|
|
}
|
|
},
|
|
"/admin/v1/tsdb/snapshot": {
|
|
"post": {
|
|
"summary": "Snapshot creates a snapshot of all current data into 'snapshots/\u003cdatetime\u003e-\u003crand\u003e' under\nthe TSDB's date directory.",
|
|
"operationId": "TSDBSnapshot",
|
|
"responses": {
|
|
"200": {
|
|
"description": "",
|
|
"schema": {
|
|
"$ref": "#/definitions/prometheusTSDBSnapshotResponse"
|
|
}
|
|
}
|
|
},
|
|
"tags": [
|
|
"Admin"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"definitions": {
|
|
"prometheusLabelMatcher": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"$ref": "#/definitions/prometheusLabelMatcherType"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"value": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"description": "Matcher specifies a rule, which can match or set of labels or not."
|
|
},
|
|
"prometheusLabelMatcherType": {
|
|
"type": "string",
|
|
"enum": [
|
|
"EQ",
|
|
"NEQ",
|
|
"RE",
|
|
"NRE"
|
|
],
|
|
"default": "EQ"
|
|
},
|
|
"prometheusSeriesDeleteRequest": {
|
|
"type": "object",
|
|
"properties": {
|
|
"min_time": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"max_time": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"matchers": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/prometheusLabelMatcher"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"prometheusSeriesDeleteResponse": {
|
|
"type": "object"
|
|
},
|
|
"prometheusTSDBSnapshotRequest": {
|
|
"type": "object"
|
|
},
|
|
"prometheusTSDBSnapshotResponse": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|