首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >普罗米修斯:普罗米修斯没有发现的豆荚度量

普罗米修斯:普罗米修斯没有发现的豆荚度量
EN

Stack Overflow用户
提问于 2020-10-27 19:24:44
回答 1查看 443关注 0票数 0

我目前正在我的pod中运行metrics server。数据正在发送到位于localhost:9090的pod中。我可以通过curl获取pod中的数据。deployment.yaml被注释为抓取数据,但我在pod中看不到任何新的指标。我做错了什么?

我在pod内部看到的指标:

代码语言:javascript
复制
cpu_usage{process="COMMAND", pid="PID"} %CPU
cpu_usage{process="/bin/sh", pid="1"} 0.0
cpu_usage{process="sh", pid="8"} 0.0
cpu_usage{process="/usr/share/filebeat/bin/filebeat-god", pid="49"} 0.0
cpu_usage{process="/usr/share/filebeat/bin/filebeat", pid="52"} 0.0
cpu_usage{process="php-fpm:", pid="66"} 0.0
cpu_usage{process="php-fpm:", pid="67"} 0.0
cpu_usage{process="php-fpm:", pid="68"} 0.0
cpu_usage{process="nginx:", pid="69"} 0.0
cpu_usage{process="nginx:", pid="70"} 0.0
cpu_usage{process="nginx:", pid="71"} 0.0
cpu_usage{process="/bin/sh", pid="541"} 0.0
cpu_usage{process="bash", pid="556"} 0.0
cpu_usage{process="/bin/sh", pid="1992"} 0.0
cpu_usage{process="ps", pid="1993"} 0.0
cpu_usage{process="/bin/sh", pid="1994"} 0.0

deployment.yaml

代码语言:javascript
复制
  template: 
    metadata:
      labels: 
        app: supplier-service
      annotations:
        prometheus.io/path: /
        prometheus.io/scrape: 'true'
        prometheus.io/port: '9090'



          ports: 
            - containerPort: 80
            - containerPort: 443
            - containerPort: 9090

prometheus.yml

代码语言:javascript
复制
global:
  scrape_interval: 15s # By default, scrape targets every 15seconds. # Attach these labels to any time series or alerts when #communicating with external systems (federation, re$
  external_labels:
    monitor: 'codelab-monitor'
# Scraping Prometheus itself
scrape_configs:
- job_name: 'prometheus'
  scrape_interval: 5s
  static_configs:
  - targets: ['localhost:9090']
- job_name: 'kubernetes-service-endpoints'
  scrape_interval: 5s
  kubernetes_sd_configs:
  - role: endpoints
  relabel_configs:
  - action: labelmap
    regex: __meta_kubernetes_service_label_(.+)
  - source_labels: [__meta_kubernetes_namespace]
    action: replace
    target_label: kubernetes_namespace
  - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape]
    action: keep
    regex: true
  - source_labels: [__address__]
    action: replace
    regex: ([^:]+)(?::\d+)?
    replacement: $1:9090
    target_label: __address__
  - source_labels: [__meta_kubernetes_service_name]
    action: replace
    target_label: kubernetes_name

端口号是正确的。我做错了什么?

EN

回答 1

Stack Overflow用户

发布于 2020-10-28 01:40:26

您的kubernetes_sd_configs配置为查找由服务创建的endpoints。您是否为您的服务创建了端点?您可以在您的名称空间中使用kubectl get endpoints进行检查。如果你不想创建一个服务,我想你也可以配置Prometheus来抓取pod目标,查看the docs获取更多信息。

documentation for metrics and labels还说指标名称必须与正则表达式[a-zA-Z_:][a-zA-Z0-9_:]*匹配,因此指标名称中的破折号(-)也可能是一个问题。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/64553422

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档