feat: implement history push mutation and enhanced MCP logging
- Implement pushHistory mutation to support pushing telemetry data to Zabbix trapper items. - Add VERBOSITY and MCP_LOG_* environment variables for controllable request/response logging in both API and MCP server. - Enhance ZabbixRESTDataSource with better session handling and error logging. - Update ZabbixHistory datasource to support history push operations. - Expand documentation with new cookbook recipes and MCP integration guides. - Add integration tests for history pushing (src/test/history_push*). - Reorganize documentation, moving technical product info PDF to docs/use-cases/. - Update GraphQL generated types and VCR templates.
This commit is contained in:
parent
b646b8c606
commit
7c2dee2b6c
28 changed files with 6036 additions and 3088 deletions
|
|
@ -11,6 +11,8 @@ services:
|
|||
environment:
|
||||
- SCHEMA_PATH=/usr/app/dist/schema/
|
||||
- ZABBIX_DEVELOPMENT_TOKEN=${ZABBIX_DEVELOPMENT_TOKEN}
|
||||
- VERBOSITY=${VERBOSITY:-0}
|
||||
- LOG_LEVELS=${LOG_LEVELS:-INFO}
|
||||
volumes:
|
||||
- ./samples:/usr/app/dist/samples
|
||||
|
||||
|
|
@ -25,6 +27,9 @@ services:
|
|||
command: /mcp-config.yaml
|
||||
environment:
|
||||
- APOLLO_GRAPH_REF=local@main
|
||||
- MCP_LOG_LEVEL=${MCP_LOG_LEVEL:-info}
|
||||
- MCP_LOG_PARAMETERS=${MCP_LOG_PARAMETERS:-false}
|
||||
- MCP_LOG_RESPONSES=${MCP_LOG_RESPONSES:-false}
|
||||
depends_on:
|
||||
schema-gen:
|
||||
condition: service_completed_successfully
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue