get_assertions
Retrieve assertion summaries for monitoring entities by specifying type, name, environment, time range, and other parameters to analyze system health and performance.
Instructions
Get assertion summary for a given entity with its type, name, env, site, namespace, and time range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endTime | Yes | The end time in RFC3339 format | |
entityName | Yes | The name of the entity | |
entityType | Yes | The type of the entity (e.g., Service, Node, Pod) | |
env | No | The environment of the entity | |
namespace | No | The namespace of the entity | |
site | No | The site of the entity | |
startTime | Yes | The start time in RFC3339 format |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"description": "The end time in RFC3339 format",
"type": "string"
},
"entityName": {
"description": "The name of the entity",
"type": "string"
},
"entityType": {
"description": "The type of the entity (e.g., Service, Node, Pod)",
"type": "string"
},
"env": {
"description": "The environment of the entity",
"type": "string"
},
"namespace": {
"description": "The namespace of the entity",
"type": "string"
},
"site": {
"description": "The site of the entity",
"type": "string"
},
"startTime": {
"description": "The start time in RFC3339 format",
"type": "string"
}
},
"required": [
"entityType",
"entityName",
"startTime",
"endTime"
],
"type": "object"
}