mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Wip: Removes queryTransactions from state * Refactor: Adds back query failures * Refactor: Moves error parsing to datasources * Refactor: Adds back hinting for Prometheus * Refactor: removed commented out code * Refactor: Adds back QueryStatus * Refactor: Adds scanning back to Explore * Fix: Fixes prettier error * Fix: Makes sure there is an error * Merge: Merges with master * Fix: Adds safeStringifyValue to error parsing * Fix: Fixes table result calculations * Refactor: Adds ErrorContainer and generic error handling in Explore * Fix: Fixes so refIds remain consistent * Refactor: Makes it possible to return result even when there are errors * Fix: Fixes digest issue with Angular editors * Refactor: Adds tests for explore utils * Refactor: Breakes current behaviour of always returning a result even if Query fails * Fix: Fixes Prettier error * Fix: Adds back console.log for erroneous querys * Refactor: Changes console.log to console.error
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
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) => (
|
|
<div>
|
|
<h2>PromQL Cheat Sheet</h2>
|
|
{CHEAT_SHEET_ITEMS.map(item => (
|
|
<div className="cheat-sheet-item" key={item.expression}>
|
|
<div className="cheat-sheet-item__title">{item.title}</div>
|
|
<div
|
|
className="cheat-sheet-item__expression"
|
|
onClick={e => props.onClickExample({ refId: 'A', expr: item.expression })}
|
|
>
|
|
<code>{item.expression}</code>
|
|
</div>
|
|
<div className="cheat-sheet-item__label">{item.label}</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|