towerwatch_query_metrics
Retrieve raw network time-series data points for custom analysis. Returns downsampled timestamp-value pairs with data status to distinguish empty windows from uncollected metrics.
Instructions
Raw time-series data points from TowerWatch network monitoring.
Pick this when you need the actual numbers — specific values, series, timestamps — and you will do your own reasoning over them. If you want a judgment about a window (is it degraded, and against what reference), use analyze_window instead.
Returns downsampled [timestamp, value] pairs per metric, plus data_status. Read data_status before the numbers: 'empty_window' means collected here with nothing in range (a true negative), while 'not_collected' means this site never collects it — no evidence, so do not infer that anything is healthy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| error | No | Present only when data_status is 'error'. | |
| series | No | Metric name to its downsampled points. Empty unless data_status is ok. | |
| truncated | No | True when more points exist beyond this page. | |
| data_status | Yes | ok=data present; empty_window=collected here, none in range (true negative); not_collected=site never collects this (NO evidence — do not infer health); partial=some groups missing; error=see message. | |
| coverage_notes | No | Why data is missing or partial, in plain language. | |
| next_page_token | No | Pass back as page_token to continue. Null when complete. |