monitorLogs
Track and analyze Wazuh security logs in real-time using specified index patterns, filter queries, and customizable refresh intervals with OpenSearch MCP Server.
Instructions
Monitor logs in real-time (simulated)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | Index pattern to monitor | |
maxResults | No | Number of logs to show | |
query | No | Filter query | * |
refreshInterval | No | Refresh interval in seconds |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"index": {
"description": "Index pattern to monitor",
"type": "string"
},
"maxResults": {
"default": 10,
"description": "Number of logs to show",
"type": "number"
},
"query": {
"default": "*",
"description": "Filter query",
"type": "string"
},
"refreshInterval": {
"default": 5,
"description": "Refresh interval in seconds",
"type": "number"
}
},
"required": [
"index"
],
"type": "object"
}