ilert · Schema
MetricNoIncludes
Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations
Properties
| Name | Type | Description |
|---|---|---|
| id | number | |
| name | string | |
| description | string | |
| aggregationType | object | |
| displayType | object | |
| interpolateGaps | boolean | |
| lockYAxisMax | number | |
| lockYAxisMin | number | |
| mouseOverDecimal | number | |
| showValuesOnMouseOver | boolean | |
| unitLabel | string | |
| teams | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.ilert.com/schemas/MetricNoIncludes",
"title": "MetricNoIncludes",
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"aggregationType": {
"$ref": "#/components/schemas/MetricAggregationType"
},
"displayType": {
"$ref": "#/components/schemas/MetricDisplayType"
},
"interpolateGaps": {
"type": "boolean",
"default": false
},
"lockYAxisMax": {
"type": "number",
"format": "double"
},
"lockYAxisMin": {
"type": "number",
"format": "double"
},
"mouseOverDecimal": {
"maximum": 6,
"minimum": 0,
"type": "number",
"format": "int32"
},
"showValuesOnMouseOver": {
"type": "boolean",
"default": false
},
"unitLabel": {
"type": "string"
},
"teams": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TeamRel"
}
}
}
}