Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for telemetry (0.2 sec)

  1. pkg/test/datasets/validation/dataset/telemetry-v1-Telemetry.yaml

    apiVersion: telemetry.istio.io/v1
    kind: Telemetry
    metadata:
      name: valid
    spec:
      tracing:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 19:16:23 UTC 2024
    - 127 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/telemetry.txt

    [GOOS:plan9] env userconfig=$home/lib
    
    go telemetry
    stdout 'local'
    
    go telemetry off
    go telemetry
    stdout 'off'
    go env GOTELEMETRY
    stdout 'off'
    
    go telemetry local
    go telemetry
    stdout 'local'
    go env GOTELEMETRY
    stdout 'local'
    
    go telemetry on
    go telemetry
    stdout 'on'
    go env GOTELEMETRY
    stdout 'on'
    
    go env
    stdout 'GOTELEMETRY=''?on''?'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/internal/telemetry/telemetry.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 {
    	return telemetry.Mode()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/features/telemetry.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package features
    
    import (
    	"istio.io/istio/pkg/env"
    )
    
    // Define common telemetry feature flags shared among the Istio components.
    var (
    	MetricsLocalhostAccessOnly = env.Register("METRICS_LOCALHOST_ACCESS_ONLY", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 912 bytes
    - Viewed (0)
  5. src/cmd/go/internal/telemetrycmd/telemetry.go

    // Package telemetrycmd implements the "go telemetry" command.
    package telemetrycmd
    
    import (
    	"context"
    	"fmt"
    	"os"
    
    	"cmd/go/internal/base"
    	"cmd/internal/telemetry"
    )
    
    var CmdTelemetry = &base.Command{
    	UsageLine: "go telemetry [off|local|on]",
    	Short:     "manage telemetry data and settings",
    	Long: `Telemetry is used to manage Go telemetry data and settings.
    
    Telemetry can be in one of three modes: off, local, or on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. pilot/pkg/features/telemetry.go

    		"If true, pilot will add telemetry related metadata to cluster and endpoint resources, which will be consumed by telemetry filter.",
    	).Get()
    
    	EndpointTelemetryLabel = env.Register("PILOT_ENDPOINT_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to Endpoint resource, which will be consumed by telemetry filter.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry.go

    					},
    					Logging: telemetry.Spec.GetAccessLogging(),
    				})
    			}
    			ts = append(ts, telemetry.Spec.GetTracing()...)
    		}
    	}
    
    	if namespace != t.RootNamespace {
    		telemetry := t.namespaceWideTelemetryConfig(namespace)
    		if telemetry != (Telemetry{}) {
    			key.Namespace = types.NamespacedName{Name: telemetry.Name, Namespace: telemetry.Namespace}
    			ms = append(ms, telemetry.Spec.GetMetrics()...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/12-telemetry.yml

    name: Go Telemetry Proposals
    description: Changes to the telemetry upload configuration
    title: "x/telemetry/config: proposal title"
    labels: ["Telemetry-Proposal"]
    projects: ["golang/29"]
    body:
    - type: textarea
      attributes:
        label: Summary
        description: >
          What change are you proposing to the upload configuration, and why?
          For new upload configuration, which new counters will be collected, what
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top