streaming/kafka-strimzi/manifests/02-prometheus-metrics/kafka-exporter.yaml (41 lines of code) (raw):

# Copyright 2023 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: apps/v1 kind: Deployment metadata: name: kafka-exporter labels: app.kubernetes.io/name: kafka-exporter spec: replicas: 1 selector: matchLabels: app.kubernetes.io/name: kafka-exporter template: metadata: labels: app.kubernetes.io/name: kafka-exporter spec: containers: - name: exporter image: danielqsj/kafka-exporter:v1.6.0 args: - --kafka.server=my-cluster-kafka-bootstrap.kafka.svc.cluster.local:9092 ports: - containerPort: 9308 name: prometheus --- # Copyright 2023 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: monitoring.googleapis.com/v1 kind: PodMonitoring metadata: name: kafka-exporter labels: app.kubernetes.io/name: kafka-exporter app.kubernetes.io/part-of: google-cloud-managed-prometheus spec: endpoints: - port: prometheus scheme: http interval: 30s path: /metrics selector: matchLabels: app.kubernetes.io/name: kafka-exporter