2019-04-17 05:51:42 -04:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"unit",
|
2019-06-05 09:43:50 -04:00
|
|
|
"label",
|
|
|
|
"prometheus_endpoint_path"
|
2019-04-17 05:51:42 -04:00
|
|
|
],
|
2019-04-17 06:05:11 -04:00
|
|
|
"oneOf": [
|
|
|
|
{ "required": ["query"] },
|
|
|
|
{ "required": ["query_range"] }
|
|
|
|
],
|
2019-04-17 05:51:42 -04:00
|
|
|
"properties": {
|
|
|
|
"id": { "type": "string" },
|
|
|
|
"query_range": { "type": "string" },
|
|
|
|
"query": { "type": "string" },
|
|
|
|
"unit": { "type": "string" },
|
|
|
|
"label": { "type": "string" },
|
2019-06-05 09:43:50 -04:00
|
|
|
"track": { "type": "string" },
|
2019-08-07 12:17:35 -04:00
|
|
|
"prometheus_endpoint_path": { "type": "string" },
|
|
|
|
"metric_id": { "type": "number" }
|
2019-04-17 05:51:42 -04:00
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|