Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 158 for telemetry (0.14 sec)

  1. pilot/pkg/networking/util/util.go

    			},
    		}
    	}
    
    	// Add compressed telemetry metadata. Note this is a short term solution to make server workload metadata
    	// available at client sidecar, so that telemetry filter could use for metric labels. This is useful for two cases:
    	// server does not have sidecar injected, and request fails to reach server and thus metadata exchange does not happen.
    	// Due to performance concern, telemetry metadata is compressed into a semicolon separated string:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. tests/integration/helm/util.go

                idle_timeout: 30s
    `
    
    	extendedTelemetry = `
    apiVersion: telemetry.istio.io/v1
    kind: Telemetry
    metadata:
      name: sample
    spec:
      metrics:
        - providers:
          - name: prometheus
          reportingInterval: 10s
    `
    
    	revisionedExtendedTelemetry = `
    apiVersion: telemetry.istio.io/v1
    kind: Telemetry
    metadata:
      name: sample
      labels:
        istio.io/rev: %s
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/switch.go

    import (
    	"context"
    	"fmt"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch"
    	"cmd/internal/telemetry"
    )
    
    // A Switcher collects errors to be reported and then decides
    // between reporting the errors or switching to a new toolchain
    // to resolve them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/cds.go

    // Map of all configs that do not impact CDS
    var skippedCdsConfigs = sets.New(
    	kind.Gateway,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    )
    
    // Map all configs that impact CDS for gateways when `PILOT_FILTER_GATEWAY_CLUSTER_CONFIG = true`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/service.go

    	// TLSMode endpoint is injected with istio sidecar and ready to configure Istio mTLS
    	TLSMode string
    
    	// Namespace that this endpoint belongs to. This is for telemetry purpose.
    	Namespace string
    
    	// Name of the workload that this endpoint belongs to. This is for telemetry purpose.
    	WorkloadName string
    
    	// Specifies the hostname of the Pod, empty for vm workload.
    	HostName string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. tests/integration/telemetry/policy/helper_test.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/components/prometheus"
    	"istio.io/istio/pkg/test/util/tmpl"
    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    const (
    	// ServiceEntry is used to create conflicts on various ports
    	// As defined below, the tcp-conflict and https-conflict ports are 9443 and 9091
    	ServiceEntry = `
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pkg/test/env/istio.go

    	LocalOut = verifyFile(LOCAL_OUT, LOCAL_OUT.ValueOrDefaultFunc(getDefaultIstioOut))
    
    	// OtelCollectorInstallFilePath is the OpenTelemetry installation file.
    	OtelCollectorInstallFilePath = path.Join(IstioSrc, getSampleFile("open-telemetry/otel.yaml"))
    
    	// GCEMetadataServerInstallFilePath is the GCE Metadata Server installation file.
    	GCEMetadataServerInstallFilePath = path.Join(IstioSrc, getInstallationFile("gcemetadata/gce_metadata_server.yaml"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. releasenotes/notes/49700.yaml

    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: traffic-management
    
    # issue is a list of GitHub issues resolved in this note.
    # If issue is not in the current repo, specify its full URL instead.
    issue:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    				// right thing...
    				//
    				// (see https://github.com/golang/go/issues/63142#issuecomment-1734025130)
    				if asof.Before(reportDate) {
    					// Note: since this report was created after telemetry was enabled,
    					// we can only assume that the process that created it checked that
    					// the counter data contained therein was all from after the asof
    					// date.
    					//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			c.releaseLock(state)
    			return
    		}
    	}
    }
    
    // Read reads the given counter.
    // This is the implementation of x/telemetry/counter/countertest.ReadCounter.
    func Read(c *Counter) (uint64, error) {
    	if c.file.current.Load() == nil {
    		return c.state.load().extra(), nil
    	}
    	pf, err := readFile(c.file)
    	if err != nil {
    		return 0, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top