Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 173 for telemetry (0.14 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

        verbs: ["get", "watch", "list"]
        resources: ["*"]
    {{- if .Values.global.istiod.enableAnalysis }}
      - apiGroups: ["config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io", "rbac.istio.io", "telemetry.istio.io", "extensions.istio.io"]
        verbs: ["update"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/internal/telemetry/telemetry_bootstrap.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cmd_go_bootstrap || compiler_bootstrap
    
    package telemetry
    
    import "flag"
    
    type dummyCounter struct{}
    
    func (dc dummyCounter) Inc() {}
    
    func Start()                                                              {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.Telemetry:
    		oldRes := &apiistioioapitelemetryv1alpha1.Telemetry{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*istioioapitelemetryv1alpha1.Telemetry)),
    		}
    		modRes := &apiistioioapitelemetryv1alpha1.Telemetry{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*istioioapitelemetryv1alpha1.Telemetry)),
    		}
    		patchBytes, err := genPatchBytes(oldRes, modRes, typ)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  4. src/cmd/pprof/pprof.go

    	"sync"
    	"time"
    
    	"cmd/internal/objfile"
    	"cmd/internal/telemetry"
    
    	"github.com/google/pprof/driver"
    	"github.com/google/pprof/profile"
    )
    
    func main() {
    	telemetry.Start()
    	telemetry.Inc("pprof/invocations")
    	options := &driver.Options{
    		Fetch: new(fetcher),
    		Obj:   new(objTool),
    		UI:    newUI(),
    	}
    	err := driver.PProf(options)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/cmd/trace/main.go

    	// The binary file name, left here for serveSVGProfile.
    	programBinary string
    	traceFile     string
    )
    
    func main() {
    	telemetry.Start()
    	flag.Usage = func() {
    		fmt.Fprint(os.Stderr, usageMessage)
    		os.Exit(2)
    	}
    	flag.Parse()
    	telemetry.Inc("trace/invocations")
    	telemetry.CountFlags("trace/flag:", *flag.CommandLine)
    
    	// Go 1.7 traces embed symbol info and does not require the binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/go.mod

    	golang.org/x/arch v0.8.0
    	golang.org/x/build v0.0.0-20240603162849-5dfbda438323
    	golang.org/x/mod v0.18.0
    	golang.org/x/sync v0.7.0
    	golang.org/x/sys v0.21.0
    	golang.org/x/telemetry v0.0.0-20240603224550-f2b69109f79b
    	golang.org/x/term v0.20.0
    	golang.org/x/tools v0.21.1-0.20240604144337-208808308b70
    )
    
    require (
    	github.com/ianlancetaylor/demangle v0.0.0-20240312041847-bd984b5ce465 // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 595 bytes
    - Viewed (0)
  7. manifests/charts/base/templates/default.yaml

          {{- end }}
        rules:
          - operations:
              - CREATE
              - UPDATE
            apiGroups:
              - security.istio.io
              - networking.istio.io
              - telemetry.istio.io
              - extensions.istio.io
            apiVersions:
              - "*"
            resources:
              - "*"
    
        {{- if .Values.base.validationCABundle }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. releasenotes/notes/51081.yaml

    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: traffic-management
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 22:34:29 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/help.go

    package help
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"text/template"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/go/internal/base"
    	"cmd/internal/telemetry"
    )
    
    var counterErrorsHelpUnknownTopic = telemetry.NewCounter("go/errors:help-unknown-topic")
    
    // Help implements the 'help' command.
    func Help(w io.Writer, args []string) {
    	// 'go help documentation' generates doc.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/default.yaml

          {{- end }}
        rules:
          - operations:
              - CREATE
              - UPDATE
            apiGroups:
              - security.istio.io
              - networking.istio.io
              - telemetry.istio.io
              - extensions.istio.io
            apiVersions:
              - "*"
            resources:
              - "*"
    
        {{- if .Values.base.validationCABundle }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top