Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for upstream_local_address (0.27 sec)

  1. pilot/pkg/model/telemetry_logging.go

    			"upstream_cluster":                  {Kind: &structpb.Value_StringValue{StringValue: "%UPSTREAM_CLUSTER%"}},
    			"upstream_local_address":            {Kind: &structpb.Value_StringValue{StringValue: "%UPSTREAM_LOCAL_ADDRESS%"}},
    			"downstream_local_address":          {Kind: &structpb.Value_StringValue{StringValue: "%DOWNSTREAM_LOCAL_ADDRESS%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    		"%RESPONSE_CODE% %RESPONSE_FLAGS% %RESPONSE_CODE_DETAILS% " +
    		"%CONNECTION_TERMINATION_DETAILS% \"%UPSTREAM_TRANSPORT_FAILURE_REASON%\" " +
    		"\"%UPSTREAM_HOST%\" %UPSTREAM_CLUSTER% %UPSTREAM_LOCAL_ADDRESS% %DOWNSTREAM_REMOTE_ADDRESS%\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging_test.go

    								"upstream_cluster":               {Kind: &structpb.Value_StringValue{StringValue: "%UPSTREAM_CLUSTER%"}},
    								"upstream_local_address":         {Kind: &structpb.Value_StringValue{StringValue: "%UPSTREAM_LOCAL_ADDRESS%"}},
    								"downstream_local_address":       {Kind: &structpb.Value_StringValue{StringValue: "%DOWNSTREAM_LOCAL_ADDRESS%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump.json

                                    }
                                  }
                                }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                    }
                                  }
                                }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server.go

    	}
    	return registry, nil
    }
    
    // NewServer creates a new status server.
    func NewServer(config Options) (*Server, error) {
    	localhost := localHostIPv4
    	upstreamLocalAddress := UpstreamLocalAddressIPv4
    	if config.IPv6 {
    		localhost = localHostIPv6
    		upstreamLocalAddress = UpstreamLocalAddressIPv6
    	} else {
    		// if not ipv6-only, it can be ipv4-only or dual-stack
    		// let InstanceIP decide the localhost
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server_test.go

    			KubeAppProbers: string(appProber),
    			PodIP:          tc.podIP,
    			IPv6:           tc.ipv6,
    		}
    		server := NewTestServer(t, config)
    		// Starts the pilot agent status server.
    		if tc.ipv6 {
    			server.upstreamLocalAddress = &net.TCPAddr{IP: net.ParseIP("::1")} // required because ::6 is NOT a loopback address (IPv6 only has ::1)
    		}
    
    		client := http.Client{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top