mirror of https://git.rancher.io/charts
43 lines
1006 B
YAML
43 lines
1006 B
YAML
|
{{- if (include "kiali-server.isDashboardEnabled" .) }}
|
||
|
---
|
||
|
apiVersion: "monitoring.kiali.io/v1alpha1"
|
||
|
kind: MonitoringDashboard
|
||
|
metadata:
|
||
|
name: micrometer-1.0.6-jvm-pool
|
||
|
labels:
|
||
|
{{- include "kiali-server.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
runtime: JVM
|
||
|
title: JVM Pool Metrics
|
||
|
discoverOn: "jvm_buffer_total_capacity_bytes"
|
||
|
items:
|
||
|
- chart:
|
||
|
name: "Pool buffer memory used"
|
||
|
unit: "bytes"
|
||
|
spans: 4
|
||
|
metricName: "jvm_buffer_memory_used_bytes"
|
||
|
dataType: "raw"
|
||
|
aggregations:
|
||
|
- label: "id"
|
||
|
displayName: "Pool"
|
||
|
- chart:
|
||
|
name: "Pool buffer capacity"
|
||
|
unit: "bytes"
|
||
|
spans: 4
|
||
|
metricName: "jvm_buffer_total_capacity_bytes"
|
||
|
dataType: "raw"
|
||
|
aggregations:
|
||
|
- label: "id"
|
||
|
displayName: "Pool"
|
||
|
- chart:
|
||
|
name: "Pool buffer count"
|
||
|
unit: "bytes"
|
||
|
spans: 4
|
||
|
metricName: "jvm_buffer_count"
|
||
|
dataType: "raw"
|
||
|
aggregations:
|
||
|
- label: "id"
|
||
|
displayName: "Pool"
|
||
|
...
|
||
|
{{- end }}
|