Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 175 for telemetry (0.38 sec)

  1. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    package zipkin
    
    import (
    	"errors"
    	"fmt"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    // TestServerTracing exercises the trace generation features of Istio, based on the Envoy Trace driver for zipkin.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/fix/main.go

    		desc := strings.TrimSpace(f.desc)
    		desc = strings.ReplaceAll(desc, "\n", "\n\t")
    		fmt.Fprintf(os.Stderr, "\t%s\n", desc)
    	}
    	os.Exit(2)
    }
    
    func main() {
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("fix/invocations")
    	telemetry.CountFlags("fix/flag:", *flag.CommandLine)
    
    	if !version.IsValid(*goVersion) {
    		report(fmt.Errorf("invalid -go=%s", *goVersion))
    		os.Exit(exitCode)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. tests/integration/helm/install_test.go

    				}
    			}
    
    			// Now test field-level blocks with Telemetry
    			err = t.ConfigIstio().Eval("default", nil, extendedTelemetry).Apply()
    			if err == nil {
    				t.Error("Did not receive an error while applying extended Telemetry resource with stable admission policy")
    			} else {
    				msg := fmt.Sprintf(expectedErrorPrefix, "telemetries.telemetry.istio.io")
    				if !strings.Contains(err.Error(), msg) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. src/cmd/go/script_test.go

    			t.Fatal("go was invoked but no counters were incremented")
    		}
    	}
    }
    
    // Copied from https://go.googlesource.com/telemetry/+/5f08a0cbff3f/internal/telemetry/mode.go#122
    // TODO(go.dev/issues/66205): replace this with the public API once it becomes available.
    //
    // disabledOnPlatform indicates whether telemetry is disabled
    // due to bugs in the current platform.
    const disabledOnPlatform = false ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/setup_test.go

    		Setup(func(ctx resource.Context) error {
    			i, err := istio.Get(ctx)
    			if err != nil {
    				return err
    			}
    			return ctx.ConfigIstio().YAML(i.Settings().SystemNamespace, `
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
    spec:
      metrics:
      - providers:
        - name: prometheus
    `).Apply()
    		}).
    		Setup(testRegistrySetup).
    		Setup(SetupSuite).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/go.sum

    golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
    golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
    golang.org/x/telemetry v0.0.0-20240603224550-f2b69109f79b h1:z+G4uyTX70zDaJlqYgXBayrAxlae9kGxeM2BJH0zDu8=
    golang.org/x/telemetry v0.0.0-20240603224550-f2b69109f79b/go.mod h1:pRgIJT+bRLFKnoM1ldnzKoxTIn14Yxz928LQRYYgIN0=
    golang.org/x/term v0.20.0 h1:VnkxpohqXaOBYJtBmEppKUG6mXpi+4O6purfc2+sMhw=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/test2json/main.go

    	os.Exit(2)
    }
    
    // ignoreSignals ignore the interrupt signals.
    func ignoreSignals() {
    	signal.Ignore(signalsToIgnore...)
    }
    
    func main() {
    	telemetry.Start()
    
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("test2json/invocations")
    	telemetry.CountFlags("test2json/flag:", *flag.CommandLine)
    
    	var mode test2json.Mode
    	if *flagT {
    		mode |= test2json.Timestamp
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/customize_metrics_test.go

    		Run(func(t framework.TestContext) {
    			setupWasmExtension(t)
    			t.ConfigIstio().YAML(apps.Namespace.Name(), `
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: ns-default
    spec:
      metrics:
      - providers:
        - name: prometheus
        overrides:
        - match:
            metric: REQUEST_COUNT
          tagOverrides:
            response_code:
              value: "istio_responseClass"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/accesslogs_test.go

    }
    
    func applyTelemetryResource(t framework.TestContext, enableLogs bool) {
    	config := fmt.Sprintf(`apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: logs
    spec:
      accessLogging:
      - providers:
        - name: envoy
        disabled: %v
    `, !enableLogs)
    	t.ConfigIstio().YAML(apps.Namespace.Name(), config).ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/config/schema/collections/collections.gen.go

    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	Telemetry = resource.Builder{
    		Identifier: "Telemetry",
    		Group:      "telemetry.istio.io",
    		Kind:       "Telemetry",
    		Plural:     "telemetries",
    		Version:    "v1alpha1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.telemetry.v1alpha1.Telemetry", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top