create_incident
Create a new incident in Grafana with specified title, severity, and room prefix to manage and track operational issues within monitoring systems.
Instructions
Create a new Grafana incident. Requires title, severity, and room prefix
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachCaption | No | Caption of the attachment | |
attachUrl | No | URL of the attachment | |
isDrill | No | Whether the incident is a drill | |
labels | No | Labels to add to the incident | |
roomPrefix | Yes | The prefix of the room to create the incident in | |
severity | Yes | The severity of the incident | |
status | No | The status of the incident | |
title | Yes | The title of the incident |
Input Schema (JSON Schema)
{
"properties": {
"attachCaption": {
"description": "Caption of the attachment",
"type": "string"
},
"attachUrl": {
"description": "URL of the attachment",
"type": "string"
},
"isDrill": {
"description": "Whether the incident is a drill",
"type": "boolean"
},
"labels": {
"description": "Labels to add to the incident",
"items": {
"additionalProperties": false,
"properties": {
"colorHex": {
"type": "string"
},
"description": {
"type": "string"
},
"key": {
"type": "string"
},
"label": {
"type": "string"
}
},
"required": [
"key",
"label"
],
"type": "object"
},
"type": "array"
},
"roomPrefix": {
"description": "The prefix of the room to create the incident in",
"type": "string"
},
"severity": {
"description": "The severity of the incident",
"type": "string"
},
"status": {
"description": "The status of the incident",
"type": "string"
},
"title": {
"description": "The title of the incident",
"type": "string"
}
},
"required": [
"title",
"severity",
"roomPrefix"
],
"type": "object"
}