Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AttributeGenURL (0.1 sec)

  1. tests/integration/telemetry/api/testdata/attributegen.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: istio.attributegen
    spec:
      phase: STATS
      selector:
        matchLabels:
          app: b
      url: {{ .AttributeGenURL }}
      imagePullSecret: reg-cred
      pluginConfig:
        attributes:
        - output_attribute: istio_responseClass
          match:
          - value: 2xx
            condition: response.code >= 200 && response.code <= 299
        - output_attribute: istio_operationId
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 639 bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/customize_metrics_test.go

    	proxySHA := "359dcd3a19f109c50e97517fe6b1e2676e870c4d"
    	attrGenImageURL := fmt.Sprintf("oci://%v/istio-testing/wasm/attributegen:%v", registry.Address(), proxySHA)
    	args := map[string]any{
    		"AttributeGenURL": attrGenImageURL,
    	}
    	t.ConfigIstio().
    		EvalFile(apps.Namespace.Name(), args, "testdata/attributegen.yaml").
    		ApplyOrFail(t)
    }
    
    func sendCustomizeMetricsTraffic() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top