import React from 'react'; const CHEAT_SHEET_ITEMS = [ { title: 'Request Rate', expression: 'rate(http_request_total[5m])', label: 'Given an HTTP request counter, this query calculates the per-second average request rate over the last 5 minutes.', }, { title: '95th Percentile of Request Latencies', expression: 'histogram_quantile(0.95, sum(rate(prometheus_http_request_duration_seconds_bucket[5m])) by (le))', label: 'Calculates the 95th percentile of HTTP request rate over 5 minute windows.', }, { title: 'Alerts Firing', expression: 'sort_desc(sum(sum_over_time(ALERTS{alertstate="firing"}[24h])) by (alertname))', label: 'Sums up the alerts that have been firing over the last 24 hours.', }, ]; export default (props: any) => (

PromQL Cheat Sheet

{CHEAT_SHEET_ITEMS.map(item => (
{item.title}
props.onClickExample({ refId: 'A', expr: item.expression })} > {item.expression}
{item.label}
))}
);