We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82a1982 commit 4f11007Copy full SHA for 4f11007
docs/examples/simple.md
@@ -12,10 +12,8 @@ g.dashboard.new('Faro dashboard')
12
+ g.dashboard.withPanels([
13
g.panel.timeSeries.new('Requests / sec')
14
+ g.panel.timeSeries.queryOptions.withTargets([
15
- g.query.prometheus.new(
16
- 'mimir',
17
- 'sum by (status_code) (rate(request_duration_seconds_count{job=~".*/faro-api"}[$__rate_interval]))',
18
- ),
+ g.query.testData.withQueryType('randomWalk')
+ + g.query.testData.withDatasource(),
19
])
20
+ g.panel.timeSeries.standardOptions.withUnit('reqps')
21
+ g.panel.timeSeries.gridPos.withW(24)
0 commit comments