Better Stack

telemetry_build_explore_query_tool

Generates a ClickHouse SQL query from natural language for exploring logs and spans data in Better Stack. The query is specifically formatted for use in the Better Stack Explore page UI. **Note**: The generated query uses Better Stack's query syntax and will not work directly in raw ClickHouse.

Remote betterstack

Other tools also called telemetry_build_explore_query_tool? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Natural language description of the desired query"
    },
    "source_id": {
      "type": "integer",
      "description": "The ID of the source"
    },
    "source_type": {
      "enum": [
        "logs",
        "spans"
      ],
      "type": "string",
      "description": "Type of source data to query (default: logs)"
    }
  }
}