Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 158 for telemetry (0.35 sec)

  1. pilot/pkg/xds/debug.go

    	s.addDebugHandler(mux, internalMux, "/debug/authorizationz", "Internal authorization policies", s.authorizationz)
    	s.addDebugHandler(mux, internalMux, "/debug/telemetryz", "Debug Telemetry configuration", s.telemetryz)
    	s.addDebugHandler(mux, internalMux, "/debug/config_dump", "ConfigDump in the form of the Envoy admin config dump API for passed in proxyID", s.ConfigDump)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		},
    	},
    	{
    		Meta: config.Meta{Name: uuid.NewString(), Namespace: "istio-system", GroupVersionKind: gvk.Telemetry},
    		Spec: &telemetry.Telemetry{
    			Metrics: []*telemetry.Metrics{{Providers: []*telemetry.ProviderRef{{Name: "prometheus"}}}},
    		},
    	},
    }
    
    func TestOutboundFilters(t *testing.T) {
    	mc := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/select.go

    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/run"
    	"cmd/go/internal/work"
    	"cmd/internal/telemetry"
    
    	"golang.org/x/mod/module"
    )
    
    const (
    	// We download golang.org/toolchain version v0.0.1-<gotoolchain>.<goos>-<goarch>.
    	// If the 0.0.1 indicates anything at all, its the version of the toolchain packaging:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/values.yaml

        # Override to pass env variables, for example: /inject/cluster/remote/net/network2
        injectionPath: "/inject"
    
        injectionCABundle: ""
      telemetry:
        enabled: true
        v2:
          # For Null VM case now.
          # This also enables metadata exchange.
          enabled: true
          # Indicate if prometheus stats filter is enabled or not
          prometheus:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. architecture/ambient/ztunnel.md

    | `Baggage`     | (Experimental, likely to be removed) This contains metadata about the source/destination workload for telemetry purposes                                                                                                                                |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/networkfilter_test.go

    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/api/security/v1beta1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/listenertest"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/protocol"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. tests/integration/ambient/main_test.go

    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    
    	// used to validate telemetry in-cluster
    	prom prometheus.Instance
    )
    
    type EchoDeployments struct {
    	// Namespace echo apps will be deployed
    	Namespace         namespace.Instance
    	ExternalNamespace namespace.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	// are no authorization policies in the cluster.
    	AuthzPolicies *AuthorizationPolicies `json:"-"`
    
    	// Telemetry stores the existing Telemetry resources for the cluster.
    	Telemetry *Telemetries `json:"-"`
    
    	// ProxyConfig stores the existing ProxyConfig resources for the cluster.
    	ProxyConfigs *ProxyConfigs `json:"-"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_waypoint.go

    						},
    					}),
    				},
    			}},
    		}},
    	}
    	return l
    }
    
    // buildWaypointHTTPFilters augments the common chain of Waypoint-bound HTTP filters.
    // Authn/authz filters are pre-pended. Telemetry filters are appended.
    func (lb *ListenerBuilder) buildWaypointHTTPFilters(svc *model.Service) (pre []*hcm.HttpFilter, post []*hcm.HttpFilter) {
    	authzCustomBuilder := lb.authzCustomBuilder
    	authzBuilder := lb.authzBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway.go

    	"istio.io/istio/pilot/pkg/networking/core/extension"
    	istio_route "istio.io/istio/pilot/pkg/networking/core/route"
    	"istio.io/istio/pilot/pkg/networking/core/tunnelingconfig"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/gateway"
    	"istio.io/istio/pkg/config/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top