blob: 95fa7504be88c9a792ef8d044752555ffd225897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
[% if entry.metrics.scopes %]
## Metrics
[% if entry.metrics.folding.enabled %]
{% details summary="[[ entry.metrics.folding.title ]]" %}
[% endif %]
Metrics grouped by *scope*.
The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.
[[ entry.metrics.description ]]
[% for scope in entry.metrics.scopes %]
### Per [[ scope.name ]]
[[ scope.description ]]
[% if scope.labels %]
Labels:
| Label | Description |
|:-----------|:----------------|
[% for label in scope.labels %]
| [[ label.name ]] | [[ label.description ]] |
[% endfor %]
[% else %]
This scope has no labels.
[% endif %]
Metrics:
| Metric | Dimensions | Unit |[% for a in entry.metrics.availability %] [[ a ]] |[% endfor %]
|:------|:----------|:----|[% for a in entry.metrics.availability %]:---:|[% endfor %]
[% for metric in scope.metrics %]
| [[ metric.name ]] | [% for d in metric.dimensions %][[ d.name ]][% if not loop.last %], [% endif %][% endfor %] | [[ metric.unit ]] |[% for a in entry.metrics.availability %] [% if not metric.availability|length or a in metric.availability %]•[% else %] [% endif %] |[% endfor %]
[% endfor %]
[% endfor %]
[% if entry.metrics.folding.enabled %]
{% /details %}
[% endif %]
[% else %]
## Metrics
[[ entry.metrics.description ]]
[% endif %]
|