mirror of https://git.rancher.io/charts
33 lines
733 B
YAML
33 lines
733 B
YAML
|
{{- if (include "kiali-server.isDashboardEnabled" .) }}
|
||
|
---
|
||
|
apiVersion: "monitoring.kiali.io/v1alpha1"
|
||
|
kind: MonitoringDashboard
|
||
|
metadata:
|
||
|
name: quarkus
|
||
|
labels:
|
||
|
{{- include "kiali-server.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
title: Quarkus Metrics
|
||
|
runtime: Quarkus
|
||
|
items:
|
||
|
- chart:
|
||
|
name: "Thread count"
|
||
|
spans: 4
|
||
|
metricName: "vendor:thread_count"
|
||
|
dataType: "raw"
|
||
|
- chart:
|
||
|
name: "Used heap"
|
||
|
unit: "bytes"
|
||
|
spans: 4
|
||
|
metricName: "vendor:memory_heap_usage_bytes"
|
||
|
dataType: "raw"
|
||
|
- chart:
|
||
|
name: "Used non-heap"
|
||
|
unit: "bytes"
|
||
|
spans: 4
|
||
|
metricName: "vendor:memory_non_heap_usage_bytes"
|
||
|
dataType: "raw"
|
||
|
- include: "microprofile-x.y"
|
||
|
...
|
||
|
{{- end }}
|