Prometheus- Blackbox တင်ပို့သူမှတစ်ဆင့် HTTP စောင့်ကြည့်ခြင်း။

အားလုံးမင်္ဂလာပါ။ မေလတွင် OTUS စတင်သည်။ စောင့်ကြည့်ရေးနှင့် သစ်ထုတ်လုပ်ရေးဆိုင်ရာ အလုပ်ရုံဆွေးနွေးပွဲZabbix၊ Prometheus၊ Grafana နှင့် ELK ကို အသုံးပြု၍ အခြေခံအဆောက်အအုံနှင့် အက်ပ်လီကေးရှင်း နှစ်ခုလုံး။ ဤကိစ္စနှင့်စပ်လျဉ်း၍ ကျွန်ုပ်တို့သည် ရှေးယခင်ကတည်းက အကြောင်းအရာနှင့်ပတ်သက်၍ အသုံးဝင်သောအကြောင်းအရာများကို မျှဝေပါသည်။

Blackbox တင်ပို့သူ Prometheus အတွက် သင့်အား HTTP၊ HTTPS၊ DNS၊ TCP၊ ICMP မှတစ်ဆင့် ပြင်ပဝန်ဆောင်မှုများကို စောင့်ကြည့်ခြင်းအား အကောင်အထည်ဖော်ရန် ခွင့်ပြုသည်။ ဤဆောင်းပါးတွင်၊ Blackbox exporter ကို အသုံးပြု၍ HTTP/HTTPS စောင့်ကြည့်ခြင်းအား မည်သို့သတ်မှတ်ရမည်ကို ကျွန်ုပ်ပြသပါမည်။ Kubernetes တွင် Blackbox တင်ပို့သူကို ကျွန်ုပ်တို့ စတင်ပါမည်။

ပတ်ဝန်းကျင်

ကျွန်ုပ်တို့သည် အောက်ပါတို့ကို လိုအပ်ပါမည်။

  • Kubernetes
  • Prometheus အော်ပရေတာ

တင်ပို့သူ blackbox ဖွဲ့စည်းမှု

Blackbox မှတဆင့် configure လုပ်ခြင်း။ ConfigMap ဆက်တင်များအတွက် http ဝဘ်ဝန်ဆောင်မှုများစောင့်ကြည့်ရေး module ။

apiVersion: v1
kind: ConfigMap
metadata:
  name: prometheus-blackbox-exporter
  labels:
    app: prometheus-blackbox-exporter
data:
  blackbox.yaml: |
    modules:
      http_2xx:
        http:
          no_follow_redirects: false
          preferred_ip_protocol: ip4
          valid_http_versions:
          - HTTP/1.1
          - HTTP/2
          valid_status_codes: []
        prober: http
        timeout: 5s

အပိုင်း http_2xx ဝဘ်ဝန်ဆောင်မှုသည် HTTP 2xx အခြေအနေကုဒ်ကို ပြန်ပေးကြောင်း စစ်ဆေးရန် အသုံးပြုသည်။ blackbox exporter configuration ကို ထဲတွင် ပိုမိုအသေးစိတ် ဖော်ပြထားပါသည်။ စာရွက်စာတမ်း.

Blackbox တင်ပို့သူကို Kubernetes အစုအဝေးသို့ ဖြန့်ကျက်အသုံးပြုခြင်း။

ဖော်ပြပါ။ Deployment и Service Kubernetes တွင် အသုံးပြုရန်။

---
kind: Service
apiVersion: v1
metadata:
  name: prometheus-blackbox-exporter
  labels:
    app: prometheus-blackbox-exporter
spec:
  type: ClusterIP
  ports:
    - name: http
      port: 9115
      protocol: TCP
  selector:
    app: prometheus-blackbox-exporter

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: prometheus-blackbox-exporter
  labels:
    app: prometheus-blackbox-exporter
spec:
  replicas: 1
  selector:
    matchLabels:
      app: prometheus-blackbox-exporter
  template:
    metadata:
      labels:
        app: prometheus-blackbox-exporter
    spec:
      restartPolicy: Always
      containers:
        - name: blackbox-exporter
          image: "prom/blackbox-exporter:v0.15.1"
          imagePullPolicy: IfNotPresent
          securityContext:
            readOnlyRootFilesystem: true
            runAsNonRoot: true
            runAsUser: 1000
          args:
            - "--config.file=/config/blackbox.yaml"
          resources:
            {}
          ports:
            - containerPort: 9115
              name: http
          livenessProbe:
            httpGet:
              path: /health
              port: http
          readinessProbe:
            httpGet:
              path: /health
              port: http
          volumeMounts:
            - mountPath: /config
              name: config
        - name: configmap-reload
          image: "jimmidyson/configmap-reload:v0.2.2"
          imagePullPolicy: "IfNotPresent"
          securityContext:
            runAsNonRoot: true
            runAsUser: 65534
          args:
            - --volume-dir=/etc/config
            - --webhook-url=http://localhost:9115/-/reload
          resources:
            {}
          volumeMounts:
            - mountPath: /etc/config
              name: config
              readOnly: true
      volumes:
        - name: config
          configMap:
            name: prometheus-blackbox-exporter

Blackbox exporter သည် အောက်ပါ command ကို အသုံးပြု၍ အသုံးပြုနိုင်သည်။ Namespace monitoring Prometheus Operator ကိုရည်ညွှန်းသည်။

kubectl --namespace=monitoring apply -f blackbox-exporter.yaml

အောက်ပါ command ကို အသုံးပြု၍ ဝန်ဆောင်မှုအားလုံး လုပ်ဆောင်နေကြောင်း သေချာပါစေ။

kubectl --namespace=monitoring get all --selector=app=prometheus-blackbox-exporter

Blackbox ကိုစစ်ဆေးပါ။

Blackbox တင်ပို့သူ ဝဘ်အင်တာဖေ့စ်ကို အသုံးပြု၍ သင်ဝင်ရောက်နိုင်သည်။ port-forward:

kubectl --namespace=monitoring port-forward svc/prometheus-blackbox-exporter 9115:9115

ဝဘ်ဘရောက်ဆာမှတဆင့် Blackbox တင်ပို့သူ ဝဘ်အင်တာဖေ့စ်သို့ ချိတ်ဆက်ပါ။ localhost: 9115 ။

Prometheus- Blackbox တင်ပို့သူမှတစ်ဆင့် HTTP စောင့်ကြည့်ခြင်း။

လိပ်စာအတိုင်းသွားလျှင် http://localhost:9115/probe?module=http_2xx&target=https://www.google.comသတ်မှတ်ထားသော URL ကိုစစ်ဆေးခြင်း၏ရလဒ်ကိုသင်တွေ့လိမ့်မည် (https://www.google.com).

Prometheus- Blackbox တင်ပို့သူမှတစ်ဆင့် HTTP စောင့်ကြည့်ခြင်း။

မက်ထရစ်တန်ဖိုး probe_success 1 နှင့် ညီမျှသည် ဆိုသည်မှာ အောင်မြင်သော စစ်ဆေးမှုကို ဆိုလိုသည်။ 0 တန်ဖိုးသည် အမှားတစ်ခုကို ညွှန်ပြသည်။

Prometheus ကို သတ်မှတ်ခြင်း။

BlackBox ပို့ကုန်ကို အသုံးပြုပြီးနောက်၊ ကျွန်ုပ်တို့သည် Prometheus ကို configure လုပ်ပါသည်။ prometheus-additional.yaml.

- job_name: 'kube-api-blackbox'
  scrape_interval: 1w
  metrics_path: /probe
  params:
    module: [http_2xx]
  static_configs:
   - targets:
      - https://www.google.com
      - http://www.example.com
      - https://prometheus.io
  relabel_configs:
   - source_labels: [__address__]
     target_label: __param_target
   - source_labels: [__param_target]
     target_label: instance
   - target_label: __address__
     replacement: prometheus-blackbox-exporter:9115 # The blackbox exporter.

ကျွန်ုပ်တို့ထုတ်လုပ်သည်။ Secretအောက်ပါ command ကို အသုံးပြု.

PROMETHEUS_ADD_CONFIG=$(cat prometheus-additional.yaml | base64)
cat << EOF | kubectl --namespace=monitoring apply -f -
apiVersion: v1
kind: Secret
metadata:
  name: additional-scrape-configs
type: Opaque
data:
  prometheus-additional.yaml: $PROMETHEUS_ADD_CONFIG
EOF

ကျနော်တို့ဖော်ပြသည် additional-scrape-configs Prometheus အော်ပရေတာအတွက် additionalScrapeConfigs.

kubectl --namespace=monitoring edit prometheuses k8s
...
spec:
  additionalScrapeConfigs:
    key: prometheus-additional.yaml
    name: additional-scrape-configs

ကျွန်ုပ်တို့သည် Prometheus ဝဘ်အင်တာဖေ့စ်သို့သွားပြီး မက်ထရစ်များနှင့် ပန်းတိုင်များကို စစ်ဆေးပါ။

kubectl --namespace=monitoring port-forward svc/prometheus-k8s 9090:9090

Prometheus- Blackbox တင်ပို့သူမှတစ်ဆင့် HTTP စောင့်ကြည့်ခြင်း။

Prometheus- Blackbox တင်ပို့သူမှတစ်ဆင့် HTTP စောင့်ကြည့်ခြင်း။

Blackbox ၏ မက်ထရစ်များနှင့် ပန်းတိုင်များကို ကျွန်ုပ်တို့ မြင်တွေ့ရသည်။

အသိပေးချက်များ (သတိပေးချက်) အတွက် စည်းမျဉ်းများ ထည့်သွင်းခြင်း

Blackbox တင်ပို့သူထံမှ အကြောင်းကြားချက်များကို လက်ခံရယူရန်၊ ကျွန်ုပ်တို့သည် Prometheus အော်ပရေတာသို့ စည်းမျဉ်းများကို ပေါင်းထည့်ပါမည်။

kubectl --namespace=monitoring edit prometheusrules prometheus-k8s-rules
...
  - name: blackbox-exporter
    rules:
    - alert: ProbeFailed
      expr: probe_success == 0
      for: 5m
      labels:
        severity: error
      annotations:
        summary: "Probe failed (instance {{ $labels.instance }})"
        description: "Probe failedn  VALUE = {{ $value }}n  LABELS: {{ $labels }}"
    - alert: SlowProbe
      expr: avg_over_time(probe_duration_seconds[1m]) > 1
      for: 5m
      labels:
        severity: warning
      annotations:
        summary: "Slow probe (instance {{ $labels.instance }})"
        description: "Blackbox probe took more than 1s to completen  VALUE = {{ $value }}n  LABELS: {{ $labels }}"
    - alert: HttpStatusCode
      expr: probe_http_status_code <= 199 OR probe_http_status_code >= 400
      for: 5m
      labels:
        severity: error
      annotations:
        summary: "HTTP Status Code (instance {{ $labels.instance }})"
        description: "HTTP status code is not 200-399n  VALUE = {{ $value }}n  LABELS: {{ $labels }}"
    - alert: SslCertificateWillExpireSoon
      expr: probe_ssl_earliest_cert_expiry - time() < 86400 * 30
      for: 5m
      labels:
        severity: warning
      annotations:
        summary: "SSL certificate will expire soon (instance {{ $labels.instance }})"
        description: "SSL certificate expires in 30 daysn  VALUE = {{ $value }}n  LABELS: {{ $labels }}"
    - alert: SslCertificateHasExpired
      expr: probe_ssl_earliest_cert_expiry - time()  <= 0
      for: 5m
      labels:
        severity: error
      annotations:
        summary: "SSL certificate has expired (instance {{ $labels.instance }})"
        description: "SSL certificate has expired alreadyn  VALUE = {{ $value }}n  LABELS: {{ $labels }}"
    - alert: HttpSlowRequests
      expr: avg_over_time(probe_http_duration_seconds[1m]) > 1
      for: 5m
      labels:
        severity: warning
      annotations:
        summary: "HTTP slow requests (instance {{ $labels.instance }})"
        description: "HTTP request took more than 1sn  VALUE = {{ $value }}n  LABELS: {{ $labels }}"
    - alert: SlowPing
      expr: avg_over_time(probe_icmp_duration_seconds[1m]) > 1
      for: 5m
      labels:
        severity: warning
      annotations:
        summary: "Slow ping (instance {{ $labels.instance }})"
        description: "Blackbox ping took more than 1sn  VALUE = {{ $value }}n  LABELS: {{ $labels }}"

Prometheus ဝဘ်အင်တာဖေ့စ်တွင်၊ Status => Rules သို့သွားပြီး blackbox-exporter အတွက် သတိပေးချက်စည်းမျဉ်းများကို ရှာပါ။

Prometheus- Blackbox တင်ပို့သူမှတစ်ဆင့် HTTP စောင့်ကြည့်ခြင်း။

Kubernetes API ဆာဗာ SSL လက်မှတ် သက်တမ်းကုန်ဆုံးခြင်း အသိပေးချက်များကို ပြင်ဆင်သတ်မှတ်ခြင်း။

Kubernetes API ဆာဗာ SSL လက်မှတ် သက်တမ်းကုန်ဆုံးခြင်း စောင့်ကြည့်ခြင်းကို ပြင်ဆင်ကြပါစို့။ တစ်ပတ်တစ်ကြိမ် အကြောင်းကြားစာများ ပေးပို့ပါမည်။

Kubernetes API Server Authentication အတွက် Blackbox exporter module ကို ပေါင်းထည့်ခြင်း။

kubectl --namespace=monitoring edit configmap prometheus-blackbox-exporter
...
      kube-api:
        http:
          method: GET
          no_follow_redirects: false
          preferred_ip_protocol: ip4
          tls_config:
            insecure_skip_verify: false
            ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
          bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
          valid_http_versions:
          - HTTP/1.1
          - HTTP/2
          valid_status_codes: []
        prober: http
        timeout: 5s

Prometheus ခြစ်ထည့်သွင်းခြင်းဖွဲ့စည်းမှု

- job_name: 'kube-api-blackbox'
  metrics_path: /probe
  params:
    module: [kube-api]
  static_configs:
   - targets:
      - https://kubernetes.default.svc/api
  relabel_configs:
   - source_labels: [__address__]
     target_label: __param_target
   - source_labels: [__param_target]
     target_label: instance
   - target_label: __address__
     replacement: prometheus-blackbox-exporter:9115 # The blackbox exporter.

Prometheus Secret ကိုအသုံးပြုခြင်း။

PROMETHEUS_ADD_CONFIG=$(cat prometheus-additional.yaml | base64)
cat << EOF | kubectl --namespace=monitoring apply -f -
apiVersion: v1
kind: Secret
metadata:
  name: additional-scrape-configs
type: Opaque
data:
  prometheus-additional.yaml: $PROMETHEUS_ADD_CONFIG
EOF

သတိပေးချက် စည်းမျဉ်းများ ထည့်သွင်းခြင်း။

kubectl --namespace=monitoring edit prometheusrules prometheus-k8s-rules
...
  - name: k8s-api-server-cert-expiry
    rules:
    - alert: K8sAPIServerSSLCertExpiringAfterThreeMonths
      expr: probe_ssl_earliest_cert_expiry{job="kube-api-blackbox"} - time() < 86400 * 90 
      for: 1w
      labels:
        severity: warning
      annotations:
        summary: "Kubernetes API Server SSL certificate will expire after three months (instance {{ $labels.instance }})"
        description: "Kubernetes API Server SSL certificate expires in 90 daysn  VALUE = {{ $value }}n  LABELS: {{ $labels }}"

အသုံးဝင်သောလင့်များ

Docker တွင် စောင့်ကြည့်ခြင်းနှင့် လော့ဂ်အင်လုပ်ခြင်း။

source: www.habr.com