{{ if len $.Release }}

{{.Release}}

{{ end }}

Sections

{{ range $name, $section := .Status.Sections }}

{{$name}}

{{ if len $section.Counters }}

Counters

{{ range $name, $counter := $section.Counters }} {{ end }}
{{$name}}{{$counter.Value}}
{{ end }} {{ if len $section.Ratios }}

Ratios

{{ range $name, $ratio := $section.Ratios }} {{ end }}
{{$name}}{{$ratio.Value | printf "%.02f"}}%
{{ end }} {{ if len $section.CounterDistributions }}

Counter distributions

{{ range $percentile := $section.Percentiles }} {{ end }} {{ range $name, $ad := $section.CounterDistributions }} {{ range $value := $ad.Values }} {{ end }} {{ end }}
Percentiles{{$percentile | printf "%.02f"}}
{{$name}}{{ $value }}
{{ end }} {{ if len $section.RatioDistributions }}

Ratio distributions

{{ range $percentile := $section.Percentiles }} {{ end }} {{ range $name, $ad := $section.RatioDistributions }} {{ range $value := $ad.Values }} {{ end }} {{ end }}
Percentiles{{$percentile | printf "%.02f"}}
{{$name}}{{ $value | printf "%.02f" }}%
{{ end }} {{ if len $section.BoolDistributions }}

Bool distributions

{{ range $name, $ad := $section.BoolDistributions }} {{ end }}
Name True % False %
{{$name}} {{$ad.TruePercentage | printf "%.02f"}} {{$ad.FalsePercentage | printf "%.02f"}}
{{ end }} {{ if len $section.DurationDistributions }}

Duration distributions

{{ range $percentile := $section.Percentiles }} {{ end }} {{ range $name, $ad := $section.DurationDistributions }} {{ range $value := $ad.Values }} {{ end }} {{ end }}
Percentiles{{$percentile | printf "%.02f"}}
{{$name}}{{ $value | humanizeDuration }}
{{ end }} {{ if len $section.SampleInt64s }}

Raw samples

{{ range $percentile := $section.Percentiles }} {{ end }} {{ range $name, $ad := $section.SampleInt64s }} {{ range $value := $ad.Values }} {{ end }} {{ end }}
Percentiles{{$percentile | printf "%.02f"}}
{{$name}}{{ $value }}
{{ end }} {{ if len $section.SampleDurations }}

Duration samples

{{ range $percentile := $section.Percentiles }} {{ end }} {{ range $name, $ad := $section.SampleDurations }} {{ range $value := $ad.Values }} {{ end }} {{ end }}
Percentiles{{$percentile | printf "%.02f"}}
{{$name}}{{$value | humanizeDuration }}
{{ end }} {{ if len $section.SampleBytes }}

Size samples (bytes)

{{ range $percentile := $section.Percentiles }} {{ end }} {{ range $name, $ad := $section.SampleBytes }} {{ range $value := $ad.Values }} {{ end }} {{ end }}
Percentiles{{$percentile | printf "%.02f"}}
{{$name}}{{$value | humanizeSize}}
{{ end }} {{ if len $section.Breakdowns }}

Breakdowns

{{ range $name, $breakdown := $section.Breakdowns }} {{ range $category, $value := $breakdown.Value }} {{ end }}
{{$name}}
{{$category}}{{$value | printf "%.02f"}}%
{{ end }} {{ end }} {{ end }}