我正在尝试使用 prometheus 客户端库在 golang 中捕获一些自定义应用程序指标,以显示在 Prometheus 中。
我有以下工作:
我有一个 go 应用程序,它在 localhost:8080/metrics 上公开指标,如本文所述:
https://godoc.org/github.com/prometheus/client_golang/prometheus
我有一个 kubernates minikube 正在运行,它使用本文中的运算符运行 Prometheus、Grafana 和 AlertManager:
https://github.com/coreos/prometheus-operator/tree/master/contrib/kube-prometheus
我为我的 go 应用程序创建了一个 docker 映像,当我运行它并转到 localhost:8080/metrics 时,我可以看到 prometheus 指标显示在浏览器中。
我使用以下 pod.yaml 将我的 docker 映像部署到 k8s 中的 pod
apiVersion: v1 kind: Pod metadata: name: my-app-pod labels: zone: prod version: v1 annotations: prometheus.io/scrape: 'true' prometheus.io/port: '8080' spec: containers: - name: my-container image: name/my-app:latest imagePullPolicy: IfNotPresent ports: - containerPort: 8080
- 如果我使用以下方式连接到我的 pod:
kubectl exec -it my-app-pod -- /bin/bash
然后在“localhost:8080/metrics”上执行 wget,我可以看到我的指标
到目前为止一切顺利,这是我碰壁的地方。我可以让多个 pod 运行相同的图像。我想将所有图像作为目标公开给普罗米修斯。如何配置我的 pod 以便它们显示在 prometheus 中,以便我可以报告我的自定义指标?
感谢您提供的任何帮助!