Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 389 for telemetry (0.16 sec)

  1. pkg/config/analysis/analyzers/testdata/telemetry-invalid-provider.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
          - name: envoy
        - filter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 04 14:56:01 UTC 2022
    - 230 bytes
    - Viewed (0)
  2. releasenotes/notes/drop-telemetry-envoyfilter.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
        **Removed** legacy `EnvoyFilter` implementation for telemetry. For the majority of users, this change has no impact, and
        was already enabled in previous releases. However, the following fields are no longer respected: `prometheus.configOverride`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 436 bytes
    - Viewed (0)
  3. releasenotes/notes/experimental-telemetry-api-tracing.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 24284
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 02 19:10:55 UTC 2021
    - 147 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/telemetry-lightstep-meshconfig.yaml

    zirain <******@****.***> 1679323003 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 14:36:43 UTC 2023
    - 157 bytes
    - Viewed (0)
  5. releasenotes/notes/default-json-logging-envoy-telemetry-api.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 37663
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 07 17:43:00 UTC 2022
    - 177 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/README.md

      if the user has opted in to telemetry uploading.
    - The [x/telemetry/cmd/gotelemetry](https://pkg.go.dev/pkg/golang.org/x/telemetry/cmd/gotelemetry)
      command is used for managing telemetry data and configuration.
    - The [x/telemetry/config](https://pkg.go.dev/pkg/golang.org/x/telemetry/config)
      package defines the subset of telemetry data that has been approved for
      uploading by the telemetry proposal process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/mode.go

    //
    // When mode is "on", or "local", telemetry data is written to the local file
    // system and may be inspected with the [gotelemetry] command.
    //
    // If an error occurs while reading the telemetry mode from the file system,
    // Mode returns the default value "local".
    //
    // [gotelemetry]: https://pkg.go.dev/golang.org/x/telemetry/cmd/gotelemetry
    func Mode() string {
    	mode, _ := telemetry.Default.Mode()
    	return mode
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/types_alias.go

    // license that can be found in the LICENSE file.
    
    package telemetry
    
    import "golang.org/x/telemetry/internal/telemetry"
    
    // Common types and directories used by multiple packages.
    
    // An UploadConfig controls what data is uploaded.
    type UploadConfig = telemetry.UploadConfig
    
    type ProgramConfig = telemetry.ProgramConfig
    
    type CounterConfig = telemetry.CounterConfig
    
    // A Report is what's uploaded (or saved locally)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 605 bytes
    - Viewed (0)
  9. src/cmd/go/internal/telemetrystats/telemetrystats.go

    	} else {
    		telemetry.Inc("go/mode:module")
    	}
    	telemetry.Inc("go/platform/target/goos:" + cfg.Goos)
    	telemetry.Inc("go/platform/target/goarch:" + cfg.Goarch)
    	switch cfg.Goarch {
    	case "386":
    		telemetry.Inc("go/platform/target/go386:" + cfg.GO386)
    	case "amd64":
    		telemetry.Inc("go/platform/target/goamd64:" + cfg.GOAMD64)
    	case "arm":
    		telemetry.Inc("go/platform/target/goarm:" + cfg.GOARM)
    	case "arm64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. samples/open-telemetry/als/README.md

    # Open Telemetry ALS
    
    This sample demonstrates Istio's Open Telemetry ALS support.
    
    ## Start otel-collector service
    
    First, create an `otel-collector` backend with simple configuration.
    
    ```bash
    kubectl apply -f ../otel.yaml -n observability
    ```
    
    With following configuration, otel-collector will create a grpc receiver on port `4317`, and output to stdout. You can find more details from [here](https://github.com/open-telemetry/opentelemetry-collector).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top