Prometheus Alert Manager 오류 "comComponent=cluster err="광고 주소를 추론할 수 없습니다" 및 "가십 그리드를 초기화할 수 없습니다"

Prometheus Alert Manager 오류 "comComponent=cluster err="광고 주소를 추론할 수 없습니다" 및 "가십 그리드를 초기화할 수 없습니다"

저는 Prometheus를 처음 사용하고 경고 관리자 모듈을 설치하려고 합니다.

Debian 10에서 Prometheus 2.19.2, 노드 내보내기 1.0.1 및 Alert Manager 0.21.0을 사용합니다.

구성 파일:

프로메테우스:

alerting:
  alertmanagers:
  - static_configs:
    - targets:
      - localhost:9093"

경보 관리자:

global:
  smtp_smarthost: 'localhost:25'
  smtp_from: '[email protected]'
  smtp_auth_username: ''
  smtp_auth_password: ''
  smtp_require_tls: false

templates:
- '/etc/alertmanager/template/*.tmpl'

route:
  repeat_interval: 1h
  receiver: operations-team

receivers:
- name: 'operations-team'
  email_configs:
  - to: '[email protected]'

이 문제는 시작 시 오류를 발생시키는 Alert Manager 서비스와 관련되어 있습니다.

Jul  9 19:08:11 mail alertmanager[851]: level=warn ts=2020-07-09T17:08:11.887Z caller=cluster.go:154 component=cluster err="couldn't deduce an advertise address: no private IP found, explicit advertise addr not provided"

Jul  9 19:08:11 mail alertmanager[851]: level=error ts=2020-07-09T17:08:11.901Z caller=main.go:241 msg="unable to initialize gossip mesh" err="create memberlist: Failed to get final advertise address: No private IP address found, and explicit IP not provided"

인터넷으로 찾아보는데 아직 해결방법을 못찾았네요...

어떤 아이디어가 있나요?

감사해요

답변1

--cluster.advertise-address=0.0.0.0:9093시작 시 인수 " "를 추가해야 합니다.

관련 정보