Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,076 for scrape (0.24 sec)

  1. pkg/kube/inject/testdata/inject/prometheus-scrape.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        prometheus.io/scrape: "false"
      name: hellopod
    spec:
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
              containerPort: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 07 19:11:07 UTC 2022
    - 270 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/prometheus-scrape.yaml.injected

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        istio.io/rev: default
        kubectl.kubernetes.io/default-container: hello
        kubectl.kubernetes.io/default-logs-container: hello
        prometheus.io/scrape: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. hack/serve-prom-scrapes.sh

    # limitations under the License.
    
    # Serves a collection of scrape files up to Prometheus scraping.
    
    # Usage: $0 port_num scrapes-dir
    #
    # Where scrapes-dir has descendant files whose name is of the form
    # <timestamp>.scrape
    # where <timestamp> is seconds since Jan 1, 1970 UTC.
    # Each such file is taken to be a scrape that lacks timestamps,
    # and the timestamp from the filename is multiplied by the necessary 1000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 06:33:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. hack/run-prometheus-on-etcd-scrapes.sh

    # files whose name is of the form
    # <timestamp>.scrape
    # where <timestamp> is seconds since Jan 1, 1970 UTC.
    # Each such file is taken to be a scrape that lacks timestamps,
    # and the timestamp from the filename is multiplied by the necessary 1000
    # and added to the data in that file.
    
    # This requires a:
    # - `docker run` command
    # - an `ip` or `ifconfig` command that this script knows how to wrangle
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  5. hack/lib/etcd.sh

        ETCD_SCRAPE_DIR="${ARTIFACTS}/etcd-scrapes"
      else
        ETCD_SCRAPE_DIR=$(mktemp -d -t test.XXXXXX)/etcd-scrapes
      fi
      kube::log::info "Periodically scraping etcd to ${ETCD_SCRAPE_DIR} ."
      mkdir -p "${ETCD_SCRAPE_DIR}"
      (
        while sleep 30; do
          kube::etcd::scrape
        done
      ) &
      ETCD_SCRAPE_PID=$!
    }
    
    kube::etcd::scrape() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/prometheus-scrape2.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        prometheus.io.scrape: "false"
      name: hellopod
    spec:
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
              containerPort: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 07 19:11:07 UTC 2022
    - 270 bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

        matchLabels:
          app: foo
          version: v1
      template:
        metadata:
          labels:
            app: foo
            version: v1
            test.istio.io/class: naked
          annotations:
            prometheus.io/scrape: "true"
            prometheus.io/port: "15014"
        spec:
          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/README.md

    - MinIO exports Prometheus compatible data by default as an authorized endpoint at `/minio/v2/metrics/cluster`. 
    - MinIO exports Prometheus compatible data by default which is bucket centric as an authorized endpoint at `/minio/v2/metrics/bucket`.
    
    This document explains how to setup Prometheus and configure it to scrape data from MinIO servers.
    
    ## Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/status/server.go

    }
    
    // scrape will send a request to the provided url to scrape metrics from
    // This will attempt to mimic some of Prometheus functionality by passing some of the headers through
    // such as accept, timeout, and user agent
    // Returns the scraped metrics reader as well as the response's "Content-Type" header to determine the metrics format
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  10. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.yaml

          version: bar
      template:
        metadata:
          labels:
            app: foo
            version: bar
            test.istio.io/class: standard
            istio.io/rev: rev-a
          annotations:
            prometheus.io/scrape: "true"
            prometheus.io/port: "15014"
        spec:
          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top