Interface AdminOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Admin,Admin.Builder
public interface AdminOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAccessLogPath()The path to write the access log for the administration server.com.google.protobuf.ByteStringgetAccessLogPathBytes()The path to write the access log for the administration server.AddressgetAddress()The TCP address that the administration server will listen on.AddressOrBuildergetAddressOrBuilder()The TCP address that the administration server will listen on.StringgetProfilePath()The cpu profiler output path for the administration server.com.google.protobuf.ByteStringgetProfilePathBytes()The cpu profiler output path for the administration server.SocketOptiongetSocketOptions(int index)Additional socket options that may not be present in Envoy source code or precompiled binaries.intgetSocketOptionsCount()Additional socket options that may not be present in Envoy source code or precompiled binaries.List<SocketOption>getSocketOptionsList()Additional socket options that may not be present in Envoy source code or precompiled binaries.SocketOptionOrBuildergetSocketOptionsOrBuilder(int index)Additional socket options that may not be present in Envoy source code or precompiled binaries.List<? extends SocketOptionOrBuilder>getSocketOptionsOrBuilderList()Additional socket options that may not be present in Envoy source code or precompiled binaries.booleanhasAddress()The TCP address that the administration server will listen on.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAccessLogPath
String getAccessLogPath()
The path to write the access log for the administration server. If no access log is desired specify ‘/dev/null’. This is only required if :ref:`address <envoy_api_field_config.bootstrap.v2.Admin.address>` is set.
string access_log_path = 1;- Returns:
- The accessLogPath.
-
getAccessLogPathBytes
com.google.protobuf.ByteString getAccessLogPathBytes()
The path to write the access log for the administration server. If no access log is desired specify ‘/dev/null’. This is only required if :ref:`address <envoy_api_field_config.bootstrap.v2.Admin.address>` is set.
string access_log_path = 1;- Returns:
- The bytes for accessLogPath.
-
getProfilePath
String getProfilePath()
The cpu profiler output path for the administration server. If no profile path is specified, the default is ‘/var/log/envoy/envoy.prof’.
string profile_path = 2;- Returns:
- The profilePath.
-
getProfilePathBytes
com.google.protobuf.ByteString getProfilePathBytes()
The cpu profiler output path for the administration server. If no profile path is specified, the default is ‘/var/log/envoy/envoy.prof’.
string profile_path = 2;- Returns:
- The bytes for profilePath.
-
hasAddress
boolean hasAddress()
The TCP address that the administration server will listen on. If not specified, Envoy will not start an administration server.
.envoy.api.v2.core.Address address = 3;- Returns:
- Whether the address field is set.
-
getAddress
Address getAddress()
The TCP address that the administration server will listen on. If not specified, Envoy will not start an administration server.
.envoy.api.v2.core.Address address = 3;- Returns:
- The address.
-
getAddressOrBuilder
AddressOrBuilder getAddressOrBuilder()
The TCP address that the administration server will listen on. If not specified, Envoy will not start an administration server.
.envoy.api.v2.core.Address address = 3;
-
getSocketOptionsList
List<SocketOption> getSocketOptionsList()
Additional socket options that may not be present in Envoy source code or precompiled binaries.
repeated .envoy.api.v2.core.SocketOption socket_options = 4;
-
getSocketOptions
SocketOption getSocketOptions(int index)
Additional socket options that may not be present in Envoy source code or precompiled binaries.
repeated .envoy.api.v2.core.SocketOption socket_options = 4;
-
getSocketOptionsCount
int getSocketOptionsCount()
Additional socket options that may not be present in Envoy source code or precompiled binaries.
repeated .envoy.api.v2.core.SocketOption socket_options = 4;
-
getSocketOptionsOrBuilderList
List<? extends SocketOptionOrBuilder> getSocketOptionsOrBuilderList()
Additional socket options that may not be present in Envoy source code or precompiled binaries.
repeated .envoy.api.v2.core.SocketOption socket_options = 4;
-
getSocketOptionsOrBuilder
SocketOptionOrBuilder getSocketOptionsOrBuilder(int index)
Additional socket options that may not be present in Envoy source code or precompiled binaries.
repeated .envoy.api.v2.core.SocketOption socket_options = 4;
-
-