Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for StatPrefix (0.16 sec)

  1. pilot/pkg/networking/core/networkfilter.go

    // configuring the Redis proxy.
    func buildRedisFilter(statPrefix, clusterName string) *listener.Filter {
    	redisProxy := &redis.RedisProxy{
    		LatencyInMicros: true,       // redis latency stats are captured in micro seconds which is typically the case.
    		StatPrefix:      statPrefix, // redis stats are prefixed with redis.<statPrefix> by Envoy
    		Settings: &redis.RedisProxy_ConnPoolSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-out2.yaml

            prefix: istio-ext-authz
      grpcService:
        envoyGrpc:
          authority: my-custom-ext-authz.foo.svc.cluster.local
          clusterName: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
        timeout: 0.002s
      statPrefix: tcp.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:13 UTC 2023
    - 582 bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tls.go

    			port = service.Ports[0].Port
    		}
    
    		clusterName := model.BuildSubsetKey(model.TrafficDirectionOutbound, "", service.Hostname, port)
    		statPrefix := clusterName
    		// If stat name is configured, use it to build the stat prefix.
    		if len(push.Mesh.OutboundClusterStatName) != 0 {
    			statPrefix = telemetry.BuildStatPrefix(push.Mesh.OutboundClusterStatName, string(service.Hostname), "", &model.Port{Port: port}, 0, &service.Attributes)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_inbound.go

    	statPrefix := fcc.clusterName
    	// If stat name is configured, build the stat prefix from configured pattern.
    	if len(lb.push.Mesh.InboundClusterStatName) != 0 {
    		statPrefix = telemetry.BuildInboundStatPrefix(lb.push.Mesh.InboundClusterStatName, fcc.telemetryMetadata, "", uint32(fcc.port.Port), fcc.port.Name)
    	}
    	tcpProxy := &tcp.TcpProxy{
    		StatPrefix:       statPrefix,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/networkfilter_test.go

    		redisProxy := redis.RedisProxy{}
    		if err := config.TypedConfig.UnmarshalTo(&redisProxy); err != nil {
    			t.Errorf("unmarshal failed: %v", err)
    		}
    		if redisProxy.StatPrefix != "redis" {
    			t.Errorf("redis proxy statPrefix is %s", redisProxy.StatPrefix)
    		}
    		if !redisProxy.LatencyInMicros {
    			t.Errorf("redis proxy latency stat is not configured for microseconds")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/tcp/allow-both-http-tcp-out.yaml

                    ids:
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns-1/.*
      shadowRulesStatPrefix: istio_dry_run_allow_
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 642 bytes
    - Viewed (0)
  7. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    								TypedConfig: protoconv.MessageToAny(hcm),
    							},
    						},
    					},
    					TransportSocket: createTransportSocket(listenerSettings.TLSEnabled),
    				},
    			},
    			StatPrefix: fmt.Sprintf("http_forward_proxy_%d", listenerSettings.Port),
    		})
    	}
    	return protomarshal.ToYAML(bootstrap)
    }
    
    var dynamicForwardProxyCacheConfig = &envoy_common_dynamic_forward_proxy.DnsCacheConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/tcp/audit-both-http-tcp-out.yaml

                      ids:
                      - authenticated:
                          principalName:
                            exact: spiffe://not-principal
      shadowRulesStatPrefix: istio_dry_run_allow_
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_builder.go

    	} else {
    		connectionManager.CodecType = hcm.HttpConnectionManager_AUTO
    	}
    	connectionManager.AccessLog = []*accesslog.AccessLog{}
    	connectionManager.StatPrefix = httpOpts.statPrefix
    
    	// Setup normalization
    	connectionManager.PathWithEscapedSlashesAction = hcm.HttpConnectionManager_KEEP_UNCHANGED
    	switch lb.push.Mesh.GetPathNormalization().GetNormalization() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/builder.go

    }
    
    func (b Builder) buildTCP(rules *rbacpb.RBAC, shadowRules *rbacpb.RBAC, providers []string) []*listener.Filter {
    	if !b.option.IsCustomBuilder {
    		rbac := &rbactcp.RBAC{
    			Rules:                 rules,
    			StatPrefix:            authzmodel.RBACTCPFilterStatPrefix,
    			ShadowRules:           shadowRules,
    			ShadowRulesStatPrefix: shadowRuleStatPrefix(shadowRules),
    		}
    		return []*listener.Filter{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top