What problem does it solve? Querying OpenTelemetry metrics datasets in Honeycomb follows different rules than trace or event datasets, and common operations like bare COUNT, RATE_SUM, or CONCURRENCY fail or return misleading results. This Skill guides you to identify the real metrics dataset, discover per-metric attributes, and apply correct temporal and spatial aggregations. ## Core Features & Use Cases - Dataset and Metric Discovery: Identify true metrics datasets via dataset_type and MetricInfo, then discover metric names and their specific attributes before filtering or grouping. - Correct Aggregation Rules: Learn which operations are forbidden on metrics, the default temporal aggregation per metric type (LAST, INCREASE, SUMMARIZE), and how to override with RATE via calculated fields. - Histogram and Query Math Patterns: Query histogram parent columns or percentile sub-fields, and build formulas for utilization percentages, tail ratios, and error rates. - Use Case: You want per-second request rates from a cumulative counter. The Skill shows you to create a calculated field with RATE($http.server.requests, 300) and apply a spatial aggregation like AVG, avoiding the forbidden RATE_SUM operation. ## Quick Start Ask the AI to query CPU utilization by pod from the Honeycomb metrics dataset and explain which aggregations are valid.