Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 293 for scrappy (0.11 sec)

  1. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    					ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Cluster{
    						Cluster: &networking.EnvoyFilter_ClusterMatch{Name: "scooby"},
    					},
    				},
    				cluster: &cluster.Cluster{Name: "scrappy"},
    			},
    			want: false,
    		},
    		{
    			name: "subset mismatch",
    			args: args{
    				proxy:     &model.Proxy{Type: model.SidecarProxy},
    				operation: networking.EnvoyFilter_Patch_MERGE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. 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)
  3. hack/run-prometheus-on-etcd-scrapes.sh

    echo "Prometheus will listen on port 9090 and scrape historic metrics from http://${IPADDR}:9091/metrics"
    sleep 1
    echo
    
    cat > "$CONFIG" <<EOF
    global:
      scrape_interval: 30s
    
    scrape_configs:
    
    - job_name: local
      static_configs:
      - targets: ['${IPADDR}:9091']
    EOF
    
    "${SCRIPT_ROOT}/serve-prom-scrapes.sh" 9091 "$UNPACKDIR" &
    SERVER_PID=$!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/kube/inject/testdata/inject/prometheus-scrape2.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)
  7. 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)
  8. 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)
  9. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	fs.StringVar(&etcdVersionScrapeURI, "etcd-version-scrape-uri", "http://localhost:2379/version", "URI to scrape etcd version info")
    	fs.StringVar(&etcdMetricsScrapeURI, "etcd-metrics-scrape-uri", "http://localhost:2379/metrics", "URI to scrape etcd metrics")
    	fs.DurationVar(&scrapeTimeout, "scrape-timeout", 15*time.Second, "Timeout for trying to get stats from etcd")
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. docs/sts/.gitignore

    coverage.xml
    *.cover
    .hypothesis/
    .pytest_cache/
    
    # Translations
    *.mo
    *.pot
    
    # Django stuff:
    *.log
    local_settings.py
    db.sqlite3
    
    # Flask stuff:
    instance/
    .webassets-cache
    
    # Scrapy stuff:
    .scrapy
    
    # Sphinx documentation
    docs/_build/
    
    # PyBuilder
    target/
    
    # Jupyter Notebook
    .ipynb_checkpoints
    
    # pyenv
    .python-version
    
    # celery beat schedule file
    celerybeat-schedule
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 15 11:55:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
Back to top