k8s.io/test-infra@v0.0.0-20240520184403-27c6b4c223d8/config/prow/cluster/monitoring/additional-scrape-configs_secret.yaml (about)

     1  # PROW_INSTANCE_SPECIFIC
     2  # Very customized metrics endpoints
     3  apiVersion: v1
     4  kind: Secret
     5  metadata:
     6    name: additional-scrape-configs
     7    namespace: prow-monitoring
     8  stringData:
     9    prometheus-additional.yaml: |
    10      - job_name: k8s-prow-builds-new-boskos
    11        metrics_path: /metrics
    12        static_configs:
    13          - targets:
    14              - "104.197.27.114:9090"  # external ip boskos-metrics in k8s-prow-builds cluster
    15      - job_name: k8s-infra-prow-builds-boskos
    16        metrics_path: /metrics
    17        static_configs:
    18          - targets:
    19              - "35.225.208.117:9090"  # external ip boskos-metrics in k8s-infra-prow-build cluster
    20      - job_name: greenhouse-metrics
    21        metrics_path: /prometheus
    22        static_configs:
    23          - targets:
    24              - "35.225.115.154" # external ip greenhouse-metrics for k8s-prow-builds
    25      - job_name: blackbox
    26        metrics_path: /probe
    27        params:
    28          module: [http_2xx]
    29        static_configs:
    30          - targets:
    31            # ATTENTION: Keep this in sync with the list in mixins/prometheus/prober_alerts.libsonnet
    32            - https://prow.k8s.io
    33            - https://monitoring.prow.k8s.io
    34            - https://testgrid.k8s.io
    35            - https://storage.googleapis.com/k8s-gubernator/triage/index.html
    36            - https://storage.googleapis.com/test-infra-oncall/oncall.html
    37        relabel_configs:
    38          - source_labels: [__address__]
    39            target_label: __param_target
    40          - source_labels: [__param_target]
    41            target_label: instance
    42          - target_label: __address__
    43            replacement: blackbox-prober
    44  type: Opaque