Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Insufficient logging of SD problems #3810

Open
matthiasr opened this Issue Feb 7, 2018 · 3 comments

Comments

Projects
None yet
2 participants
@matthiasr
Copy link
Contributor

matthiasr commented Feb 7, 2018

See below for the original issue that I was trying to investigate. The situation was confused by lack of logging about issues talking to Kubernetes, and by not including the information which DNS names could not be resolved.

What did you do?

Have some DNS issues, that also affected the Kubernetes discovery.

What did you expect to see?

Prometheus logs about issues with the Kubernetes discovery. Prometheus includes enough information in logs to identify the job and (for DNS SD) address that failed.

What did you see instead? Under which circumstances?

No messages about Kubernetes discovery at all. Repeated messages about some issue with DNS but with no further details.

==================

What did you do?

Use Prometheus 2.1 with Kubernetes Discovery. Deploy so that pods get cycled around.

What did you expect to see?

Prometheus updates scrape targets.

What did you see instead? Under which circumstances?

At least one Prometheus server stopped updating targets completely, apparently across multiple jobs.

Environment

  • System information:

    Linux 4.4.10+soundcloud x86_64

  • Prometheus version:

prometheus, version 2.1.0 (branch: HEAD, revision: 85f23d82a045d103ea7f3c89a91fba4a93e6367a)
  build user:       root@6e784304d3ff
  build date:       20180119-12:01:23
  go version:       go1.9.2
config & logs Prometheus configuration file:
---
global:
  scrape_interval: 30s
  scrape_timeout: 30s
  evaluation_interval: 30s
  external_labels:
    cluster: k2
    owner: prodeng
    zone: db
rule_files:
- "/data1/prometheus/rules/prometheus_base.rules.yml"
- "/data1/prometheus/rules/k8s.rules.yml"
- "/data1/prometheus/rules/k8s_user_alerts.rules.yml"
- "/data1/prometheus/rules/node.rules.yml"
- "/data1/prometheus/rules/k8s-log-archive.rules.yml"
- "/data1/prometheus/rules/log-archive.rules.yml"
- "/data1/prometheus/rules/kafka.rules.yml"
scrape_configs:
- job_name: prometheus
  static_configs:
  - targets:
    - localhost:9090
  scrape_interval: 15s
- relabel_configs:
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_annotation_prometheus_io_port
    regex: ".+;(?:[0-9]+,?)+|;"
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_label_system
    regex: ".+;k8s|;"
  - source_labels:
    - __meta_kubernetes_pod_annotation_prometheus_io_scheme
    target_label: __scheme__
    regex: "(https?)"
  - source_labels:
    - __meta_kubernetes_pod_annotation_prometheus_io_path
    target_label: __metrics_path__
    regex: "(.+)"
  - source_labels:
    - __address__
    - __meta_kubernetes_pod_annotation_prometheus_io_port
    target_label: __address__
    regex: "(.+?)(?::\\d+)?;(\\d+)"
    replacement: "$1:$2"
  - target_label: cluster
    replacement: k2
  - source_labels:
    - __meta_kubernetes_pod_label_system
    target_label: system
  - source_labels:
    - __meta_kubernetes_pod_label_env
    target_label: env
  - source_labels:
    - __meta_kubernetes_pod_label_component
    target_label: component
  - source_labels:
    - __meta_kubernetes_pod_label_version
    target_label: version
  - source_labels:
    - __meta_kubernetes_pod_label_track
    target_label: track
  - source_labels:
    - __meta_kubernetes_pod_name
    target_label: instance
  - source_labels:
    - __meta_kubernetes_namespace
    target_label: namespace
  - action: drop
    source_labels:
    - __meta_kubernetes_pod_label_component
    regex: ingress|kube-state-metrics
  - action: replace
    source_labels:
    - __meta_kubernetes_pod_label_system
    - __meta_kubernetes_pod_label_component
    target_label: job
    regex: "([^;]+);([^;]+)"
    replacement: "$1-$2"
  job_name: k8s-cluster-components
  kubernetes_sd_configs:
  - api_server: https://
    role: pod
    tls_config:
      ca_file: "/data1/prometheus/k8s-certificates/k2/ca.crt"
      cert_file: "/data1/prometheus/k8s-certificates/k2/client.crt"
      key_file: "/data1/prometheus/k8s-certificates/k2/client.key"
- honor_labels: true
  metric_relabel_configs:
  - action: replace
    source_labels:
    - pod
    target_label: pod_name
  - action: replace
    source_labels:
    - container
    target_label: container_name
  - action: replace
    source_labels:
    - label_system
    target_label: system
  - action: replace
    source_labels:
    - label_env
    target_label: env
  - action: replace
    source_labels:
    - label_component
    target_label: component
  - action: replace
    source_labels:
    - label_version
    target_label: version
  - action: replace
    source_labels:
    - label_track
    target_label: track
  job_name: k8s-kube-state-metrics
  kubernetes_sd_configs:
  - api_server: https://
    role: pod
    tls_config:
      ca_file: "/data1/prometheus/k8s-certificates/k2/ca.crt"
      cert_file: "/data1/prometheus/k8s-certificates/k2/client.crt"
      key_file: "/data1/prometheus/k8s-certificates/k2/client.key"
  relabel_configs:
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_annotation_prometheus_io_port
    regex: ".+;(?:[0-9]+,?)+|;"
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_label_system
    regex: ".+;k8s|;"
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_label_component
    regex: ".+;kube-state-metrics|;"
  - source_labels:
    - __meta_kubernetes_pod_annotation_prometheus_io_scheme
    target_label: __scheme__
    regex: "(https?)"
  - source_labels:
    - __meta_kubernetes_pod_annotation_prometheus_io_path
    target_label: __metrics_path__
    regex: "(.+)"
  - source_labels:
    - __address__
    - __meta_kubernetes_pod_annotation_prometheus_io_port
    target_label: __address__
    regex: "(.+?)(?::\\d+)?;(\\d+)"
    replacement: "$1:$2"
  - target_label: cluster
    replacement: k2
  - source_labels:
    - __meta_kubernetes_pod_label_system
    target_label: system
  - source_labels:
    - __meta_kubernetes_pod_label_env
    target_label: env
  - source_labels:
    - __meta_kubernetes_pod_label_component
    target_label: component
  - source_labels:
    - __meta_kubernetes_pod_label_version
    target_label: version
  - source_labels:
    - __meta_kubernetes_pod_label_track
    target_label: track
  - source_labels:
    - __meta_kubernetes_pod_name
    target_label: instance
  - source_labels:
    - __meta_kubernetes_namespace
    target_label: namespace
- relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  job_name: apiserver-node
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- scheme: https
  relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  tls_config:
    ca_file: "/data1/prometheus/k8s-certificates/k2/ca.crt"
    cert_file: "/data1/prometheus/k8s-certificates/k2/client.crt"
    key_file: "/data1/prometheus/k8s-certificates/k2/client.key"
    insecure_skip_verify: true
  job_name: apiserver
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  job_name: kube-scheduler
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  job_name: kube-controller-manager
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- scheme: https
  relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  tls_config:
    ca_file: "/data1/prometheus/k8s-certificates/k2/etcd-ca.crt"
    cert_file: "/data1/prometheus/k8s-certificates/k2/etcd-client.crt"
    key_file: "/data1/prometheus/k8s-certificates/k2/etcd-client.key"
    insecure_skip_verify: true
  job_name: etcd
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  job_name: kubelet
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  job_name: kubelet-node
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  job_name: k8s-logs-kafka
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  job_name: k8s-logs-kafka-node
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- relabel_configs:
  - action: replace
    source_labels:
    - __address__
    target_label: node
    regex: "([\\w.-]*?):\\d+"
    replacement: "$1"
  job_name: k8s-logs-zookeeper
  dns_sd_configs:
  - names:
    - 
    refresh_interval: 10s
- job_name: k8s-logs-consumer-lag
  kubernetes_sd_configs:
  - api_server: https://
    role: pod
    tls_config:
      ca_file: "/data1/prometheus/k8s-certificates/k2/ca.crt"
      cert_file: "/data1/prometheus/k8s-certificates/k2/client.crt"
      key_file: "/data1/prometheus/k8s-certificates/k2/client.key"
  relabel_configs:
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_annotation_prometheus_io_port
    regex: ".+;(?:[0-9]+,?)+|;"
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_label_system
    regex: ".+;kafka-notifier|;"
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_label_env
    regex: ".+;k8s-logs|;"
  - source_labels:
    - __meta_kubernetes_pod_annotation_prometheus_io_scheme
    target_label: __scheme__
    regex: "(https?)"
  - source_labels:
    - __meta_kubernetes_pod_annotation_prometheus_io_path
    target_label: __metrics_path__
    regex: "(.+)"
  - source_labels:
    - __address__
    - __meta_kubernetes_pod_annotation_prometheus_io_port
    target_label: __address__
    regex: "(.+?)(?::\\d+)?;(\\d+)"
    replacement: "$1:$2"
  - target_label: cluster
    replacement: k2
  - source_labels:
    - __meta_kubernetes_pod_label_system
    target_label: system
  - source_labels:
    - __meta_kubernetes_pod_label_env
    target_label: env
  - source_labels:
    - __meta_kubernetes_pod_label_component
    target_label: component
  - source_labels:
    - __meta_kubernetes_pod_label_version
    target_label: version
  - source_labels:
    - __meta_kubernetes_pod_label_track
    target_label: track
  - source_labels:
    - __meta_kubernetes_pod_name
    target_label: instance
  - source_labels:
    - __meta_kubernetes_namespace
    target_label: namespace
- metric_relabel_configs:
  - action: drop
    source_labels:
    - __name__
    regex: kafka2hdfs_kafka_.*
  job_name: k8s-logs-log-archive-kafka2hdfs
  kubernetes_sd_configs:
  - api_server: https://
    role: pod
    tls_config:
      ca_file: "/data1/prometheus/k8s-certificates/k2/ca.crt"
      cert_file: "/data1/prometheus/k8s-certificates/k2/client.crt"
      key_file: "/data1/prometheus/k8s-certificates/k2/client.key"
  relabel_configs:
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_annotation_prometheus_io_port
    regex: ".+;(?:[0-9]+,?)+|;"
  - action: keep
    source_labels:
    - __meta_kubernetes_namespace
    - __meta_kubernetes_pod_label_component
    regex: ".+;log-?archive.*|;"
  - source_labels:
    - __meta_kubernetes_pod_annotation_prometheus_io_scheme
    target_label: __scheme__
    regex: "(https?)"
  - source_labels:
    - __meta_kubernetes_pod_annotation_prometheus_io_path
    target_label: __metrics_path__
    regex: "(.+)"
  - source_labels:
    - __address__
    - __meta_kubernetes_pod_annotation_prometheus_io_port
    target_label: __address__
    regex: "(.+?)(?::\\d+)?;(\\d+)"
    replacement: "$1:$2"
  - target_label: cluster
    replacement: k2
  - source_labels:
    - __meta_kubernetes_pod_label_system
    target_label: system
  - source_labels:
    - __meta_kubernetes_pod_label_env
    target_label: env
  - source_labels:
    - __meta_kubernetes_pod_label_component
    target_label: component
  - source_labels:
    - __meta_kubernetes_pod_label_version
    target_label: version
  - source_labels:
    - __meta_kubernetes_pod_label_track
    target_label: track
  - source_labels:
    - __meta_kubernetes_pod_name
    target_label: instance
  - source_labels:
    - __meta_kubernetes_namespace
    target_label: namespace
- job_name: docker-registry
  static_configs:
  - targets:
    - :9100
alerting:
  alert_relabel_configs:
  - source_labels:
    - severity
    regex: critical|warning
    target_label: severity
    replacement: info
  alertmanagers:
  - dns_sd_configs:
    - names:
      - 
  • Logs:
2018-02-07_14:14:23.12871 level=error ts=2018-02-07T14:14:23.128609459Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:14:23.13099 level=error ts=2018-02-07T14:14:23.13091649Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:14:23.13112 level=error ts=2018-02-07T14:14:23.131062721Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:14:23.13118 level=error ts=2018-02-07T14:14:23.131133919Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:14:53.44665 level=error ts=2018-02-07T14:14:53.446559771Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:14:53.44857 level=error ts=2018-02-07T14:14:53.448519747Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:14:53.44881 level=error ts=2018-02-07T14:14:53.448752722Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:14:53.44890 level=error ts=2018-02-07T14:14:53.448855776Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:15:23.31882 level=error ts=2018-02-07T14:15:23.318734268Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:15:23.32099 level=error ts=2018-02-07T14:15:23.320948316Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:15:23.32107 level=error ts=2018-02-07T14:15:23.321050478Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:15:23.32134 level=error ts=2018-02-07T14:15:23.321314446Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:15:54.65807 level=error ts=2018-02-07T14:15:54.657867405Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:15:54.66008 level=error ts=2018-02-07T14:15:54.659991434Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:15:54.66022 level=error ts=2018-02-07T14:15:54.660182211Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:15:54.66080 level=error ts=2018-02-07T14:15:54.660737185Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:16:25.13847 level=error ts=2018-02-07T14:16:25.138381091Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:16:25.14009 level=error ts=2018-02-07T14:16:25.140054984Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:16:25.14043 level=error ts=2018-02-07T14:16:25.140377062Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:16:25.14064 level=error ts=2018-02-07T14:16:25.140596845Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:16:54.90611 level=error ts=2018-02-07T14:16:54.905993889Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:16:54.90788 level=error ts=2018-02-07T14:16:54.907824135Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:16:54.90820 level=error ts=2018-02-07T14:16:54.908161203Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:16:54.90842 level=error ts=2018-02-07T14:16:54.908391796Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:17:25.03258 level=error ts=2018-02-07T14:17:25.032515193Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:17:25.03442 level=error ts=2018-02-07T14:17:25.034355341Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:17:25.03464 level=error ts=2018-02-07T14:17:25.034587476Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:17:25.03496 level=error ts=2018-02-07T14:17:25.0348705Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:17:53.32936 level=error ts=2018-02-07T14:17:53.329221038Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:17:53.32952 level=error ts=2018-02-07T14:17:53.329435224Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:17:53.33287 level=error ts=2018-02-07T14:17:53.332807244Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:17:53.34319 level=error ts=2018-02-07T14:17:53.343067743Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:18:23.24175 level=error ts=2018-02-07T14:18:23.241612949Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:18:23.24539 level=error ts=2018-02-07T14:18:23.245293031Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:18:23.24542 level=error ts=2018-02-07T14:18:23.2453361Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:18:23.24553 level=error ts=2018-02-07T14:18:23.245486074Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:18:53.25100 level=error ts=2018-02-07T14:18:53.250925606Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:18:53.25313 level=error ts=2018-02-07T14:18:53.252995836Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:18:53.25316 level=error ts=2018-02-07T14:18:53.253042133Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:18:53.25370 level=error ts=2018-02-07T14:18:53.253621951Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:19:23.48909 level=error ts=2018-02-07T14:19:23.489007123Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:19:23.49094 level=error ts=2018-02-07T14:19:23.490859516Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:19:23.49097 level=error ts=2018-02-07T14:19:23.490905171Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:19:23.49121 level=error ts=2018-02-07T14:19:23.491172447Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:19:53.52820 level=error ts=2018-02-07T14:19:53.528060108Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:19:53.53020 level=error ts=2018-02-07T14:19:53.530097115Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:19:53.53023 level=error ts=2018-02-07T14:19:53.530157139Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:19:53.53116 level=error ts=2018-02-07T14:19:53.531064674Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:20:23.18865 level=error ts=2018-02-07T14:20:23.188563167Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:20:23.19079 level=error ts=2018-02-07T14:20:23.1907213Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:20:23.19093 level=error ts=2018-02-07T14:20:23.19088024Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:20:23.19106 level=error ts=2018-02-07T14:20:23.191022201Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:20:53.50634 level=error ts=2018-02-07T14:20:53.506205472Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:20:53.50817 level=error ts=2018-02-07T14:20:53.508089206Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:20:53.50830 level=error ts=2018-02-07T14:20:53.508259287Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:20:53.50840 level=error ts=2018-02-07T14:20:53.508368766Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:21:23.50196 level=error ts=2018-02-07T14:21:23.501853905Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:21:23.50367 level=error ts=2018-02-07T14:21:23.503582684Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:21:23.50402 level=error ts=2018-02-07T14:21:23.503921112Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:21:23.50500 level=error ts=2018-02-07T14:21:23.504924651Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:21:53.52330 level=error ts=2018-02-07T14:21:53.523157097Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:21:53.52508 level=error ts=2018-02-07T14:21:53.525014218Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:21:53.52510 level=error ts=2018-02-07T14:21:53.525023192Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:21:53.52598 level=error ts=2018-02-07T14:21:53.525938439Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:22:23.28554 level=error ts=2018-02-07T14:22:23.285411138Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:22:23.28733 level=error ts=2018-02-07T14:22:23.287254663Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:22:23.28741 level=error ts=2018-02-07T14:22:23.287367599Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:22:23.28763 level=error ts=2018-02-07T14:22:23.287582287Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:22:53.38468 level=error ts=2018-02-07T14:22:53.384562907Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:22:53.38599 level=error ts=2018-02-07T14:22:53.385931376Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:22:53.38657 level=error ts=2018-02-07T14:22:53.386505937Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:22:53.38665 level=error ts=2018-02-07T14:22:53.38655016Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:23:23.70299 level=error ts=2018-02-07T14:23:23.702889048Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:23:23.70487 level=error ts=2018-02-07T14:23:23.704808234Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:23:23.70494 level=error ts=2018-02-07T14:23:23.704913949Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:23:23.70519 level=error ts=2018-02-07T14:23:23.705155501Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:23:54.75485 level=error ts=2018-02-07T14:23:54.754780038Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:23:54.75815 level=error ts=2018-02-07T14:23:54.758083486Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:23:54.75818 level=error ts=2018-02-07T14:23:54.758133038Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:23:54.75844 level=error ts=2018-02-07T14:23:54.758403777Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:24:24.96368 level=error ts=2018-02-07T14:24:24.963588834Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:24:24.96554 level=error ts=2018-02-07T14:24:24.965445054Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:24:24.96613 level=error ts=2018-02-07T14:24:24.966037227Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:24:24.96619 level=error ts=2018-02-07T14:24:24.966153665Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:24:55.54931 level=error ts=2018-02-07T14:24:55.549237933Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:24:55.55189 level=error ts=2018-02-07T14:24:55.551814708Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:24:55.55201 level=error ts=2018-02-07T14:24:55.551947919Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:24:55.55208 level=error ts=2018-02-07T14:24:55.552036705Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:25:23.38214 level=error ts=2018-02-07T14:25:23.382046298Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:25:23.38403 level=error ts=2018-02-07T14:25:23.383988078Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:25:23.38411 level=error ts=2018-02-07T14:25:23.38404991Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:25:23.38540 level=error ts=2018-02-07T14:25:23.385354874Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:25:53.44610 level=error ts=2018-02-07T14:25:53.446010596Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:25:53.44827 level=error ts=2018-02-07T14:25:53.448236445Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:25:53.44829 level=error ts=2018-02-07T14:25:53.448242079Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:25:53.44849 level=error ts=2018-02-07T14:25:53.448467247Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:26:23.75015 level=error ts=2018-02-07T14:26:23.750067882Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:26:23.75156 level=error ts=2018-02-07T14:26:23.751524701Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:26:23.75182 level=error ts=2018-02-07T14:26:23.751801227Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:26:23.75229 level=error ts=2018-02-07T14:26:23.75224836Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:26:53.88553 level=error ts=2018-02-07T14:26:53.885431888Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:26:53.88748 level=error ts=2018-02-07T14:26:53.887422764Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:26:53.88756 level=error ts=2018-02-07T14:26:53.887489742Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:26:53.88774 level=error ts=2018-02-07T14:26:53.887704372Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:27:23.26135 level=error ts=2018-02-07T14:27:23.261243832Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:27:23.26364 level=error ts=2018-02-07T14:27:23.263545006Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:27:23.26461 level=error ts=2018-02-07T14:27:23.264555522Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:27:23.26492 level=error ts=2018-02-07T14:27:23.26485442Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:27:53.65494 level=error ts=2018-02-07T14:27:53.654801758Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:27:53.65629 level=error ts=2018-02-07T14:27:53.656254714Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:27:53.65687 level=error ts=2018-02-07T14:27:53.656830124Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:27:53.65691 level=error ts=2018-02-07T14:27:53.656865382Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:28:23.75955 level=error ts=2018-02-07T14:28:23.759438506Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:28:23.76134 level=error ts=2018-02-07T14:28:23.761276737Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:28:23.76137 level=error ts=2018-02-07T14:28:23.761318283Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:28:23.76214 level=error ts=2018-02-07T14:28:23.762096813Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:28:53.41769 level=error ts=2018-02-07T14:28:53.417601599Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:28:53.41973 level=error ts=2018-02-07T14:28:53.419678966Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:28:53.41997 level=error ts=2018-02-07T14:28:53.41993669Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:28:53.42004 level=error ts=2018-02-07T14:28:53.419992404Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=1 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_14:57:14.38513 level=warn ts=2018-02-07T14:57:14.384996487Z caller=dns.go:300 component="discovery manager scrape" discovery=dns msg="DNS resolution failed" server=127.0.0.1 name=. err="read udp 127.0.0.1:44495->127.0.0.1:53: i/o timeout"
2018-02-07_14:57:14.39193 level=error ts=2018-02-07T14:57:14.391881013Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="could not resolve \"\": all servers responded with errors to at least one search domain"
2018-02-07_15:00:00.06933 level=info ts=2018-02-07T15:00:00.06919562Z caller=compact.go:387 component=tsdb msg="compact blocks" count=1 mint=1518004800000 maxt=1518012000000
2018-02-07_15:02:49.47431 level=info ts=2018-02-07T15:02:49.474184446Z caller=head.go:348 component=tsdb msg="head GC completed" duration=11.111738654s
2018-02-07_15:03:17.27433 level=info ts=2018-02-07T15:03:17.274196244Z caller=head.go:357 component=tsdb msg="WAL truncation completed" duration=27.799928042s
2018-02-07_15:14:13.60535 level=info ts=2018-02-07T15:14:13.605251529Z caller=main.go:585 msg="Loading configuration file" filename=/data1/prometheus/prometheus.yml
2018-02-07_15:14:18.36914 level=error ts=2018-02-07T15:14:18.369035259Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36918 level=error ts=2018-02-07T15:14:18.36906386Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36920 level=error ts=2018-02-07T15:14:18.369118984Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36921 level=error ts=2018-02-07T15:14:18.369146486Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36922 level=error ts=2018-02-07T15:14:18.369182356Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36925 level=error ts=2018-02-07T15:14:18.369194279Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36926 level=error ts=2018-02-07T15:14:18.369218185Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36931 level=error ts=2018-02-07T15:14:18.369238223Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36935 level=error ts=2018-02-07T15:14:18.369274017Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.36941 level=error ts=2018-02-07T15:14:18.369353289Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.37859 level=error ts=2018-02-07T15:14:18.378482309Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.37902 level=error ts=2018-02-07T15:14:18.378975861Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.38446 level=error ts=2018-02-07T15:14:18.38441167Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.38846 level=error ts=2018-02-07T15:14:18.388417832Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:14:18.43577 level=error ts=2018-02-07T15:14:18.435726861Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:15:30.38368 level=error ts=2018-02-07T15:15:30.383574097Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:15:30.38501 level=error ts=2018-02-07T15:15:30.384898667Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:15:30.38504 level=error ts=2018-02-07T15:15:30.384940713Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:15:30.38750 level=error ts=2018-02-07T15:15:30.387418958Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:16:00.39553 level=error ts=2018-02-07T15:16:00.395403217Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:16:00.39749 level=error ts=2018-02-07T15:16:00.397415229Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:16:00.39856 level=error ts=2018-02-07T15:16:00.398487904Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:16:00.39904 level=error ts=2018-02-07T15:16:00.398955963Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:16:30.37721 level=error ts=2018-02-07T15:16:30.377102212Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:16:30.38195 level=error ts=2018-02-07T15:16:30.381834594Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:16:30.38267 level=error ts=2018-02-07T15:16:30.382557972Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:16:30.38311 level=error ts=2018-02-07T15:16:30.383003761Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:17:00.38580 level=error ts=2018-02-07T15:17:00.385750892Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:17:00.38627 level=error ts=2018-02-07T15:17:00.386233189Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:17:00.38634 level=error ts=2018-02-07T15:17:00.386287209Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:17:00.38805 level=error ts=2018-02-07T15:17:00.388020655Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:17:30.38741 level=error ts=2018-02-07T15:17:30.387284148Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:17:30.38815 level=error ts=2018-02-07T15:17:30.388069601Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:17:30.38834 level=error ts=2018-02-07T15:17:30.388285568Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:17:30.39109 level=error ts=2018-02-07T15:17:30.391037834Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:18:00.38515 level=error ts=2018-02-07T15:18:00.385052721Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:18:00.38803 level=error ts=2018-02-07T15:18:00.387919918Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:18:00.38805 level=error ts=2018-02-07T15:18:00.387979121Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:18:00.39010 level=error ts=2018-02-07T15:18:00.390020956Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:18:30.37760 level=error ts=2018-02-07T15:18:30.377511966Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:18:30.38198 level=error ts=2018-02-07T15:18:30.381883646Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:18:30.38258 level=error ts=2018-02-07T15:18:30.382549173Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:18:30.38268 level=error ts=2018-02-07T15:18:30.382662649Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:19:00.39650 level=error ts=2018-02-07T15:19:00.396352013Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:19:00.39844 level=error ts=2018-02-07T15:19:00.398343956Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:19:00.39877 level=error ts=2018-02-07T15:19:00.39868792Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:19:00.40068 level=error ts=2018-02-07T15:19:00.400599164Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:19:30.36636 level=error ts=2018-02-07T15:19:30.366254366Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:19:30.36972 level=error ts=2018-02-07T15:19:30.369673708Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:19:30.36990 level=error ts=2018-02-07T15:19:30.369842602Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:19:30.37193 level=error ts=2018-02-07T15:19:30.371890667Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:20:00.36104 level=error ts=2018-02-07T15:20:00.360904986Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:20:00.36436 level=error ts=2018-02-07T15:20:00.364234686Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:20:00.36522 level=error ts=2018-02-07T15:20:00.365129124Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:20:00.36612 level=error ts=2018-02-07T15:20:00.366043858Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:20:30.35690 level=error ts=2018-02-07T15:20:30.356830205Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:20:30.36027 level=error ts=2018-02-07T15:20:30.360232977Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:20:30.36039 level=error ts=2018-02-07T15:20:30.360354503Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:20:30.36228 level=error ts=2018-02-07T15:20:30.362214356Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:21:00.35588 level=error ts=2018-02-07T15:21:00.355795653Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:21:00.35635 level=error ts=2018-02-07T15:21:00.356321097Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:21:00.35648 level=error ts=2018-02-07T15:21:00.356435177Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:21:00.35812 level=error ts=2018-02-07T15:21:00.35807315Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:21:30.38365 level=error ts=2018-02-07T15:21:30.38354732Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:21:30.38779 level=error ts=2018-02-07T15:21:30.387710778Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:21:30.38799 level=error ts=2018-02-07T15:21:30.38792842Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:21:30.39022 level=error ts=2018-02-07T15:21:30.390160106Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:22:00.40746 level=error ts=2018-02-07T15:22:00.407401569Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:22:00.41218 level=error ts=2018-02-07T15:22:00.412073389Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:22:00.41220 level=error ts=2018-02-07T15:22:00.412127484Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:22:00.41453 level=error ts=2018-02-07T15:22:00.414456029Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:22:30.38695 level=error ts=2018-02-07T15:22:30.386859955Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:22:30.38823 level=error ts=2018-02-07T15:22:30.388179026Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:22:30.38826 level=error ts=2018-02-07T15:22:30.388214855Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:22:30.39112 level=error ts=2018-02-07T15:22:30.391047098Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:23:00.37556 level=error ts=2018-02-07T15:23:00.37547633Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:23:00.37728 level=error ts=2018-02-07T15:23:00.377164824Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:23:00.37992 level=error ts=2018-02-07T15:23:00.379839333Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:23:00.37994 level=error ts=2018-02-07T15:23:00.37987244Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:23:30.38492 level=error ts=2018-02-07T15:23:30.384800256Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:23:30.38889 level=error ts=2018-02-07T15:23:30.388818848Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:23:30.38957 level=error ts=2018-02-07T15:23:30.389530189Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:23:30.39067 level=error ts=2018-02-07T15:23:30.390606704Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:24:00.40495 level=error ts=2018-02-07T15:24:00.404852442Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:24:00.40523 level=error ts=2018-02-07T15:24:00.405159662Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:24:00.40526 level=error ts=2018-02-07T15:24:00.405200048Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:24:00.40681 level=error ts=2018-02-07T15:24:00.406733169Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:24:20.63569 level=info ts=2018-02-07T15:24:20.635594233Z caller=main.go:585 msg="Loading configuration file" filename=/data1/prometheus/prometheus.yml
2018-02-07_15:24:21.32403 level=error ts=2018-02-07T15:24:21.323965695Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32405 level=error ts=2018-02-07T15:24:21.324009315Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32406 level=error ts=2018-02-07T15:24:21.323998905Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32407 level=error ts=2018-02-07T15:24:21.324009151Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32408 level=error ts=2018-02-07T15:24:21.324068925Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32409 level=error ts=2018-02-07T15:24:21.324027574Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32410 level=error ts=2018-02-07T15:24:21.324061456Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32411 level=error ts=2018-02-07T15:24:21.324092588Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32412 level=error ts=2018-02-07T15:24:21.324091802Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32417 level=error ts=2018-02-07T15:24:21.324118362Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.32766 level=error ts=2018-02-07T15:24:21.327627681Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.33499 level=error ts=2018-02-07T15:24:21.334926787Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.33759 level=error ts=2018-02-07T15:24:21.337546109Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.34244 level=error ts=2018-02-07T15:24:21.342370117Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:21.34424 level=error ts=2018-02-07T15:24:21.344207528Z caller=dns.go:164 component="discovery manager scrape" discovery=dns msg="Error refreshing DNS targets" err="context canceled"
2018-02-07_15:24:30.27435 level=error ts=2018-02-07T15:24:30.274251871Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:24:30.27576 level=error ts=2018-02-07T15:24:30.275716492Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:24:30.27614 level=error ts=2018-02-07T15:24:30.276094879Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:24:30.27795 level=error ts=2018-02-07T15:24:30.277911096Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:25:00.38415 level=error ts=2018-02-07T15:25:00.384033961Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:25:00.38524 level=error ts=2018-02-07T15:25:00.385150488Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:25:00.38559 level=error ts=2018-02-07T15:25:00.385552091Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:25:00.38742 level=error ts=2018-02-07T15:25:00.387363069Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:25:30.40116 level=error ts=2018-02-07T15:25:30.401043437Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:25:30.40365 level=error ts=2018-02-07T15:25:30.40357233Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:25:30.40471 level=error ts=2018-02-07T15:25:30.404620769Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:25:30.40580 level=error ts=2018-02-07T15:25:30.405749431Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:26:00.40023 level=error ts=2018-02-07T15:26:00.400135317Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:26:00.40342 level=error ts=2018-02-07T15:26:00.403292763Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:26:00.40353 level=error ts=2018-02-07T15:26:00.403483486Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:26:00.40547 level=error ts=2018-02-07T15:26:00.40539428Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:26:30.40276 level=error ts=2018-02-07T15:26:30.402652133Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:26:30.40371 level=error ts=2018-02-07T15:26:30.403586777Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:26:30.40528 level=error ts=2018-02-07T15:26:30.405162154Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:26:30.40585 level=error ts=2018-02-07T15:26:30.405771333Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:27:00.42934 level=error ts=2018-02-07T15:27:00.429254924Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:27:00.43081 level=error ts=2018-02-07T15:27:00.430756885Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:27:00.43191 level=error ts=2018-02-07T15:27:00.431871312Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:27:00.43241 level=error ts=2018-02-07T15:27:00.432343058Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:27:30.66471 level=error ts=2018-02-07T15:27:30.664569869Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:27:30.67769 level=error ts=2018-02-07T15:27:30.677579761Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:27:30.67839 level=error ts=2018-02-07T15:27:30.678319699Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:27:30.68027 level=error ts=2018-02-07T15:27:30.680198953Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:28:00.41188 level=error ts=2018-02-07T15:28:00.411755795Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:28:00.41449 level=error ts=2018-02-07T15:28:00.414401143Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:28:00.41566 level=error ts=2018-02-07T15:28:00.415562589Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:28:00.41672 level=error ts=2018-02-07T15:28:00.416620476Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:28:30.39133 level=error ts=2018-02-07T15:28:30.391214211Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:28:30.39272 level=error ts=2018-02-07T15:28:30.392629333Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:28:30.39442 level=error ts=2018-02-07T15:28:30.394337547Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:28:30.39488 level=error ts=2018-02-07T15:28:30.394837122Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:29:00.37646 level=error ts=2018-02-07T15:29:00.37637485Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:29:00.37865 level=error ts=2018-02-07T15:29:00.378606324Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:29:00.37940 level=error ts=2018-02-07T15:29:00.379274866Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:29:00.38089 level=error ts=2018-02-07T15:29:00.380828772Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:29:30.40030 level=error ts=2018-02-07T15:29:30.400155914Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:29:30.40165 level=error ts=2018-02-07T15:29:30.40156051Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:29:30.40350 level=error ts=2018-02-07T15:29:30.403420532Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:29:30.40391 level=error ts=2018-02-07T15:29:30.403832038Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:30:00.39734 level=error ts=2018-02-07T15:30:00.397256507Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:30:00.39948 level=error ts=2018-02-07T15:30:00.399429154Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:30:00.39997 level=error ts=2018-02-07T15:30:00.399903222Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:30:00.40089 level=error ts=2018-02-07T15:30:00.400832143Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=31 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:30:30.40596 level=error ts=2018-02-07T15:30:30.405816191Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=15 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:30:30.40827 level=error ts=2018-02-07T15:30:30.40818856Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=15 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:30:30.40858 level=error ts=2018-02-07T15:30:30.408492555Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=15 msg="Error sending alert" err="bad response status 400 Bad Request"
2018-02-07_15:30:30.40907 level=error ts=2018-02-07T15:30:30.408993478Z caller=notifier.go:454 component=notifier alertmanager=http://:9093/api/v1/alerts count=15 msg="Error sending alert" err="bad response status 400 Bad Request"

@matthiasr

This comment has been minimized.

Copy link
Contributor Author

matthiasr commented Feb 7, 2018

For now, I have isolated this server and can introspect it more. I'll need to restart it before the end of the week.

@matthiasr

This comment has been minimized.

Copy link
Contributor Author

matthiasr commented Feb 7, 2018

Also note that a SIGHUP (visible in the logs) did not un-stick this. I don't know if the DNS SD issues are related, it could be that it's stuck overall.

@matthiasr

This comment has been minimized.

Copy link
Contributor Author

matthiasr commented Feb 7, 2018

Sooo, partially the problem seems to have been related to DNS. I restarted a DNS cache and the Kubernetes discovery has recovered now (logging nothing about either problems or discovery, which is really a problem in itself). I'm still seeing DNS resolution errors (that don't say what the name was that it could not resolve, that makes things not very helpful.

I'll update the issue title and description accordingly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.