{{- if (include "kiali-server.isDashboardEnabled" .) }} --- apiVersion: "monitoring.kiali.io/v1alpha1" kind: MonitoringDashboard metadata: name: vertx-client labels: {{- include "kiali-server.labels" . | nindent 4 }} spec: runtime: Vert.x title: Vert.x Client Metrics discoverOn: "vertx_http_client_connections" items: - chart: name: "Client response time" unit: "seconds" spans: 6 metricName: "vertx_http_client_responseTime_seconds" dataType: "histogram" aggregations: - label: "path" displayName: "Path" - label: "method" displayName: "Method" - chart: name: "Client request count rate" unit: "ops" spans: 6 metricName: "vertx_http_client_requestCount_total" dataType: "rate" aggregations: - label: "path" displayName: "Path" - label: "method" displayName: "Method" - chart: name: "Client active connections" spans: 6 metricName: "vertx_http_client_connections" dataType: "raw" - chart: name: "Client active websockets" spans: 6 metricName: "vertx_http_client_wsConnections" dataType: "raw" - chart: name: "Client bytes sent" unit: "bytes" spans: 6 metricName: "vertx_http_client_bytesSent" dataType: "histogram" - chart: name: "Client bytes received" unit: "bytes" spans: 6 metricName: "vertx_http_client_bytesReceived" dataType: "histogram" ... {{- end }}