Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for fetch (0.3 sec)

  1. manifests/addons/dashboards/istio-extension-dashboard.json

              },
              "expr": "avg(envoy_wasm_remote_load_fetch_failures)",
              "interval": "",
              "legendFormat": "failures",
              "refId": "A"
            },
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "avg(envoy_wasm_remote_load_fetch_successes)",
              "interval": "",
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 20K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "spaceLength": 10, "stack": false, "steppedLine": false, "targets": [ { "expr": "avg(envoy_wasm_remote_load_fetch_failures)", "interval": "", "legendFormat": "failures", "refId": "A" }, { "expr": "avg(envoy_wasm_remote_load_fetch_successes)", "interval": "", "legendFormat": "successes", "refId": "B" } ], "thresholds": [], "timeFrom": null, "timeRegions": [], "timeShift": null, "title": "Remote Fetch", "tooltip": { "shared": true, "sort": 0, "value_type": "individual" }, "type": "graph", "xaxis": { "buckets":...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  3. operator/cmd/mesh/manifest-generate_test.go

    		// First we fetch all the objects for our default install
    		cname := "istiod"
    		deployment := mustFindObject(t, objs, cname, name.DeploymentStr)
    		service := mustFindObject(t, objs, cname, name.ServiceStr)
    		pdb := mustFindObject(t, objs, cname, name.PDBStr)
    		podLabels := mustGetLabels(t, deployment, "spec.template.metadata.labels")
    
    		// Next we fetch all the objects for a revision install
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 43.5K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload.go

    	}
    	istioInjectionCM, err := kubeClient.Kube().CoreV1().ConfigMaps(istioNamespace).Get(context.Background(), injectionConfigMap, metav1.GetOptions{})
    	if err != nil {
    		return "", fmt.Errorf("fetch injection template: %v", err)
    	}
    
    	var injectedCMValues map[string]any
    	if err := json.Unmarshal([]byte(istioInjectionCM.Data[istioctlutil.ValuesConfigMapKey]), &injectedCMValues); err != nil {
    		return "", err
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
Back to top