Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 389 for telemetry (0.56 sec)

  1. releasenotes/notes/25669.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 25333
      - 24300
    releaseNotes:
      - |
        **Removed** all Mixer-related features and functionality. This is a scheduled
        removal of a deprecated Istio services and deployments, as well as
        Mixer-focused CRDs and component and related functionality.
    
    upgradeNotes:
      - title: Mixer is no longer supported in Istio.
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 12 21:50:07 UTC 2020
    - 937 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    package crashmonitor
    
    // This file defines a monitor that reports arbitrary Go runtime
    // crashes to telemetry.
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"reflect"
    	"runtime/debug"
    	"strconv"
    	"strings"
    
    	"golang.org/x/telemetry/internal/counter"
    )
    
    // Supported reports whether the runtime supports [runtime.SetCrashOutput].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	// a race.
    	weekends := filepath.Join(telemetry.Default.LocalDir(), "weekends")
    	day := fmt.Sprintf("%d\n", rand.Intn(7))
    	if _, err := os.ReadFile(weekends); err != nil {
    		if err := os.MkdirAll(telemetry.Default.LocalDir(), 0777); err != nil {
    			debugPrintf("%v: could not create telemetry.LocalDir %s", err, telemetry.Default.LocalDir())
    			return 0, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. releasenotes/notes/protocol-detection-timeout.yaml

        a detection timeout. However, we found this caused frequent telemetry and traffic failures during slow connections, while increasing latency
        for misconfigured server first protocols rather than failing fast.
    
        This timeout has been disabled by default. This has the following impacts:
    
        - Non "server first" protocols will no longer have a risk of telemetry or traffic failures during slow connections
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  5. tests/fuzz/config_validation_fuzzer.go

    	extensions "istio.io/api/extensions/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	networkingv1beta1 "istio.io/api/networking/v1beta1"
    	security_beta "istio.io/api/security/v1beta1"
    	telemetry "istio.io/api/telemetry/v1alpha1"
    	"istio.io/istio/pilot/pkg/config/kube/crdclient"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/validation"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog.go

    func (b *AccessLogBuilder) setTCPAccessLog(push *model.PushContext, proxy *model.Proxy, tcp *tcp.TcpProxy, class networking.ListenerClass, svc *model.Service) {
    	mesh := push.Mesh
    	cfgs := push.Telemetry.AccessLogging(push, proxy, class, svc)
    
    	if len(cfgs) == 0 {
    		// No Telemetry API configured, fall back to legacy mesh config setting
    		if mesh.AccessLogFile != "" {
    			tcp.AccessLog = append(tcp.AccessLog, b.buildFileAccessLog(mesh))
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. releasenotes/notes/dashboard-reporter-dropdown.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 27595
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 02 19:50:52 UTC 2020
    - 160 bytes
    - Viewed (0)
  8. 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)
  9. releasenotes/notes/otel-tracing-provider-resource-detectors.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 48885
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 199 bytes
    - Viewed (0)
  10. 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)
Back to top