Class UpstreamLocalityStats.Builder

  • All Implemented Interfaces:
    com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, UpstreamLocalityStatsOrBuilder, java.lang.Cloneable
    Enclosing class:
    UpstreamLocalityStats

    public static final class UpstreamLocalityStats.Builder
    extends com.google.protobuf.GeneratedMessage.Builder<UpstreamLocalityStats.Builder>
    implements UpstreamLocalityStatsOrBuilder
     These are stats Envoy reports to the management server at a frequency defined by
     :ref:`LoadStatsResponse.load_reporting_interval<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.load_reporting_interval>`.
     Stats per upstream region/zone and optionally per subzone.
     [#next-free-field: 12]
     
    Protobuf type envoy.config.endpoint.v3.UpstreamLocalityStats
    • Constructor Detail

      • Builder

        private Builder()
      • Builder

        private Builder​(com.google.protobuf.AbstractMessage.BuilderParent parent)
    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessage.Builder<UpstreamLocalityStats.Builder>
      • maybeForceBuilderInitialization

        private void maybeForceBuilderInitialization()
      • clear

        public UpstreamLocalityStats.Builder clear()
        Specified by:
        clear in interface com.google.protobuf.Message.Builder
        Specified by:
        clear in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clear in class com.google.protobuf.GeneratedMessage.Builder<UpstreamLocalityStats.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessage.Builder<UpstreamLocalityStats.Builder>
      • getDefaultInstanceForType

        public UpstreamLocalityStats getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      • build

        public UpstreamLocalityStats build()
        Specified by:
        build in interface com.google.protobuf.Message.Builder
        Specified by:
        build in interface com.google.protobuf.MessageLite.Builder
      • buildPartial

        public UpstreamLocalityStats buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessage.Builder<UpstreamLocalityStats.Builder>
      • mergeFrom

        public UpstreamLocalityStats.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                                throws java.io.IOException
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Specified by:
        mergeFrom in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<UpstreamLocalityStats.Builder>
        Throws:
        java.io.IOException
      • hasLocality

        public boolean hasLocality()
         Name of zone, region and optionally endpoint group these metrics were
         collected from. Zone and region names could be empty if unknown.
         
        .envoy.config.core.v3.Locality locality = 1;
        Specified by:
        hasLocality in interface UpstreamLocalityStatsOrBuilder
        Returns:
        Whether the locality field is set.
      • getLocality

        public Locality getLocality()
         Name of zone, region and optionally endpoint group these metrics were
         collected from. Zone and region names could be empty if unknown.
         
        .envoy.config.core.v3.Locality locality = 1;
        Specified by:
        getLocality in interface UpstreamLocalityStatsOrBuilder
        Returns:
        The locality.
      • setLocality

        public UpstreamLocalityStats.Builder setLocality​(Locality value)
         Name of zone, region and optionally endpoint group these metrics were
         collected from. Zone and region names could be empty if unknown.
         
        .envoy.config.core.v3.Locality locality = 1;
      • setLocality

        public UpstreamLocalityStats.Builder setLocality​(Locality.Builder builderForValue)
         Name of zone, region and optionally endpoint group these metrics were
         collected from. Zone and region names could be empty if unknown.
         
        .envoy.config.core.v3.Locality locality = 1;
      • mergeLocality

        public UpstreamLocalityStats.Builder mergeLocality​(Locality value)
         Name of zone, region and optionally endpoint group these metrics were
         collected from. Zone and region names could be empty if unknown.
         
        .envoy.config.core.v3.Locality locality = 1;
      • clearLocality

        public UpstreamLocalityStats.Builder clearLocality()
         Name of zone, region and optionally endpoint group these metrics were
         collected from. Zone and region names could be empty if unknown.
         
        .envoy.config.core.v3.Locality locality = 1;
      • getLocalityBuilder

        public Locality.Builder getLocalityBuilder()
         Name of zone, region and optionally endpoint group these metrics were
         collected from. Zone and region names could be empty if unknown.
         
        .envoy.config.core.v3.Locality locality = 1;
      • getLocalityFieldBuilder

        private com.google.protobuf.SingleFieldBuilder<Locality,​Locality.Builder,​LocalityOrBuilder> getLocalityFieldBuilder()
         Name of zone, region and optionally endpoint group these metrics were
         collected from. Zone and region names could be empty if unknown.
         
        .envoy.config.core.v3.Locality locality = 1;
      • getTotalSuccessfulRequests

        public long getTotalSuccessfulRequests()
         The total number of requests successfully completed by the endpoints in the
         locality.
         
        uint64 total_successful_requests = 2;
        Specified by:
        getTotalSuccessfulRequests in interface UpstreamLocalityStatsOrBuilder
        Returns:
        The totalSuccessfulRequests.
      • setTotalSuccessfulRequests

        public UpstreamLocalityStats.Builder setTotalSuccessfulRequests​(long value)
         The total number of requests successfully completed by the endpoints in the
         locality.
         
        uint64 total_successful_requests = 2;
        Parameters:
        value - The totalSuccessfulRequests to set.
        Returns:
        This builder for chaining.
      • clearTotalSuccessfulRequests

        public UpstreamLocalityStats.Builder clearTotalSuccessfulRequests()
         The total number of requests successfully completed by the endpoints in the
         locality.
         
        uint64 total_successful_requests = 2;
        Returns:
        This builder for chaining.
      • setTotalRequestsInProgress

        public UpstreamLocalityStats.Builder setTotalRequestsInProgress​(long value)
         The total number of unfinished requests
         
        uint64 total_requests_in_progress = 3;
        Parameters:
        value - The totalRequestsInProgress to set.
        Returns:
        This builder for chaining.
      • clearTotalRequestsInProgress

        public UpstreamLocalityStats.Builder clearTotalRequestsInProgress()
         The total number of unfinished requests
         
        uint64 total_requests_in_progress = 3;
        Returns:
        This builder for chaining.
      • getTotalErrorRequests

        public long getTotalErrorRequests()
         The total number of requests that failed due to errors at the endpoint,
         aggregated over all endpoints in the locality.
         
        uint64 total_error_requests = 4;
        Specified by:
        getTotalErrorRequests in interface UpstreamLocalityStatsOrBuilder
        Returns:
        The totalErrorRequests.
      • setTotalErrorRequests

        public UpstreamLocalityStats.Builder setTotalErrorRequests​(long value)
         The total number of requests that failed due to errors at the endpoint,
         aggregated over all endpoints in the locality.
         
        uint64 total_error_requests = 4;
        Parameters:
        value - The totalErrorRequests to set.
        Returns:
        This builder for chaining.
      • clearTotalErrorRequests

        public UpstreamLocalityStats.Builder clearTotalErrorRequests()
         The total number of requests that failed due to errors at the endpoint,
         aggregated over all endpoints in the locality.
         
        uint64 total_error_requests = 4;
        Returns:
        This builder for chaining.
      • getTotalIssuedRequests

        public long getTotalIssuedRequests()
         The total number of requests that were issued by this Envoy since
         the last report. This information is aggregated over all the
         upstream endpoints in the locality.
         
        uint64 total_issued_requests = 8;
        Specified by:
        getTotalIssuedRequests in interface UpstreamLocalityStatsOrBuilder
        Returns:
        The totalIssuedRequests.
      • setTotalIssuedRequests

        public UpstreamLocalityStats.Builder setTotalIssuedRequests​(long value)
         The total number of requests that were issued by this Envoy since
         the last report. This information is aggregated over all the
         upstream endpoints in the locality.
         
        uint64 total_issued_requests = 8;
        Parameters:
        value - The totalIssuedRequests to set.
        Returns:
        This builder for chaining.
      • clearTotalIssuedRequests

        public UpstreamLocalityStats.Builder clearTotalIssuedRequests()
         The total number of requests that were issued by this Envoy since
         the last report. This information is aggregated over all the
         upstream endpoints in the locality.
         
        uint64 total_issued_requests = 8;
        Returns:
        This builder for chaining.
      • getTotalActiveConnections

        public long getTotalActiveConnections()
         The total number of connections in an established state at the time of the
         report. This field is aggregated over all the upstream endpoints in the
         locality.
         In Envoy, this information may be based on ``upstream_cx_active metric``.
         [#not-implemented-hide:]
         
        uint64 total_active_connections = 9 [(.xds.annotations.v3.field_status) = { ... }
        Specified by:
        getTotalActiveConnections in interface UpstreamLocalityStatsOrBuilder
        Returns:
        The totalActiveConnections.
      • setTotalActiveConnections

        public UpstreamLocalityStats.Builder setTotalActiveConnections​(long value)
         The total number of connections in an established state at the time of the
         report. This field is aggregated over all the upstream endpoints in the
         locality.
         In Envoy, this information may be based on ``upstream_cx_active metric``.
         [#not-implemented-hide:]
         
        uint64 total_active_connections = 9 [(.xds.annotations.v3.field_status) = { ... }
        Parameters:
        value - The totalActiveConnections to set.
        Returns:
        This builder for chaining.
      • clearTotalActiveConnections

        public UpstreamLocalityStats.Builder clearTotalActiveConnections()
         The total number of connections in an established state at the time of the
         report. This field is aggregated over all the upstream endpoints in the
         locality.
         In Envoy, this information may be based on ``upstream_cx_active metric``.
         [#not-implemented-hide:]
         
        uint64 total_active_connections = 9 [(.xds.annotations.v3.field_status) = { ... }
        Returns:
        This builder for chaining.
      • getTotalNewConnections

        public long getTotalNewConnections()
         The total number of connections opened since the last report.
         This field is aggregated over all the upstream endpoints in the locality.
         In Envoy, this information may be based on ``upstream_cx_total`` metric
         compared to itself between start and end of an interval, i.e.
         ``upstream_cx_total``(now) - ``upstream_cx_total``(now -
         load_report_interval).
         [#not-implemented-hide:]
         
        uint64 total_new_connections = 10 [(.xds.annotations.v3.field_status) = { ... }
        Specified by:
        getTotalNewConnections in interface UpstreamLocalityStatsOrBuilder
        Returns:
        The totalNewConnections.
      • setTotalNewConnections

        public UpstreamLocalityStats.Builder setTotalNewConnections​(long value)
         The total number of connections opened since the last report.
         This field is aggregated over all the upstream endpoints in the locality.
         In Envoy, this information may be based on ``upstream_cx_total`` metric
         compared to itself between start and end of an interval, i.e.
         ``upstream_cx_total``(now) - ``upstream_cx_total``(now -
         load_report_interval).
         [#not-implemented-hide:]
         
        uint64 total_new_connections = 10 [(.xds.annotations.v3.field_status) = { ... }
        Parameters:
        value - The totalNewConnections to set.
        Returns:
        This builder for chaining.
      • clearTotalNewConnections

        public UpstreamLocalityStats.Builder clearTotalNewConnections()
         The total number of connections opened since the last report.
         This field is aggregated over all the upstream endpoints in the locality.
         In Envoy, this information may be based on ``upstream_cx_total`` metric
         compared to itself between start and end of an interval, i.e.
         ``upstream_cx_total``(now) - ``upstream_cx_total``(now -
         load_report_interval).
         [#not-implemented-hide:]
         
        uint64 total_new_connections = 10 [(.xds.annotations.v3.field_status) = { ... }
        Returns:
        This builder for chaining.
      • getTotalFailConnections

        public long getTotalFailConnections()
         The total number of connection failures since the last report.
         This field is aggregated over all the upstream endpoints in the locality.
         In Envoy, this information may be based on ``upstream_cx_connect_fail``
         metric compared to itself between start and end of an interval, i.e.
         ``upstream_cx_connect_fail``(now) - ``upstream_cx_connect_fail``(now -
         load_report_interval).
         [#not-implemented-hide:]
         
        uint64 total_fail_connections = 11 [(.xds.annotations.v3.field_status) = { ... }
        Specified by:
        getTotalFailConnections in interface UpstreamLocalityStatsOrBuilder
        Returns:
        The totalFailConnections.
      • setTotalFailConnections

        public UpstreamLocalityStats.Builder setTotalFailConnections​(long value)
         The total number of connection failures since the last report.
         This field is aggregated over all the upstream endpoints in the locality.
         In Envoy, this information may be based on ``upstream_cx_connect_fail``
         metric compared to itself between start and end of an interval, i.e.
         ``upstream_cx_connect_fail``(now) - ``upstream_cx_connect_fail``(now -
         load_report_interval).
         [#not-implemented-hide:]
         
        uint64 total_fail_connections = 11 [(.xds.annotations.v3.field_status) = { ... }
        Parameters:
        value - The totalFailConnections to set.
        Returns:
        This builder for chaining.
      • clearTotalFailConnections

        public UpstreamLocalityStats.Builder clearTotalFailConnections()
         The total number of connection failures since the last report.
         This field is aggregated over all the upstream endpoints in the locality.
         In Envoy, this information may be based on ``upstream_cx_connect_fail``
         metric compared to itself between start and end of an interval, i.e.
         ``upstream_cx_connect_fail``(now) - ``upstream_cx_connect_fail``(now -
         load_report_interval).
         [#not-implemented-hide:]
         
        uint64 total_fail_connections = 11 [(.xds.annotations.v3.field_status) = { ... }
        Returns:
        This builder for chaining.
      • ensureLoadMetricStatsIsMutable

        private void ensureLoadMetricStatsIsMutable()
      • getLoadMetricStatsCount

        public int getLoadMetricStatsCount()
         Stats for multi-dimensional load balancing.
         
        repeated .envoy.config.endpoint.v3.EndpointLoadMetricStats load_metric_stats = 5;
        Specified by:
        getLoadMetricStatsCount in interface UpstreamLocalityStatsOrBuilder
      • addAllLoadMetricStats

        public UpstreamLocalityStats.Builder addAllLoadMetricStats​(java.lang.Iterable<? extends EndpointLoadMetricStats> values)
         Stats for multi-dimensional load balancing.
         
        repeated .envoy.config.endpoint.v3.EndpointLoadMetricStats load_metric_stats = 5;
      • clearLoadMetricStats

        public UpstreamLocalityStats.Builder clearLoadMetricStats()
         Stats for multi-dimensional load balancing.
         
        repeated .envoy.config.endpoint.v3.EndpointLoadMetricStats load_metric_stats = 5;
      • removeLoadMetricStats

        public UpstreamLocalityStats.Builder removeLoadMetricStats​(int index)
         Stats for multi-dimensional load balancing.
         
        repeated .envoy.config.endpoint.v3.EndpointLoadMetricStats load_metric_stats = 5;
      • getLoadMetricStatsBuilder

        public EndpointLoadMetricStats.Builder getLoadMetricStatsBuilder​(int index)
         Stats for multi-dimensional load balancing.
         
        repeated .envoy.config.endpoint.v3.EndpointLoadMetricStats load_metric_stats = 5;
      • addLoadMetricStatsBuilder

        public EndpointLoadMetricStats.Builder addLoadMetricStatsBuilder()
         Stats for multi-dimensional load balancing.
         
        repeated .envoy.config.endpoint.v3.EndpointLoadMetricStats load_metric_stats = 5;
      • addLoadMetricStatsBuilder

        public EndpointLoadMetricStats.Builder addLoadMetricStatsBuilder​(int index)
         Stats for multi-dimensional load balancing.
         
        repeated .envoy.config.endpoint.v3.EndpointLoadMetricStats load_metric_stats = 5;
      • getLoadMetricStatsBuilderList

        public java.util.List<EndpointLoadMetricStats.Builder> getLoadMetricStatsBuilderList()
         Stats for multi-dimensional load balancing.
         
        repeated .envoy.config.endpoint.v3.EndpointLoadMetricStats load_metric_stats = 5;
      • ensureUpstreamEndpointStatsIsMutable

        private void ensureUpstreamEndpointStatsIsMutable()
      • getUpstreamEndpointStatsList

        public java.util.List<UpstreamEndpointStats> getUpstreamEndpointStatsList()
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
        Specified by:
        getUpstreamEndpointStatsList in interface UpstreamLocalityStatsOrBuilder
      • getUpstreamEndpointStatsCount

        public int getUpstreamEndpointStatsCount()
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
        Specified by:
        getUpstreamEndpointStatsCount in interface UpstreamLocalityStatsOrBuilder
      • getUpstreamEndpointStats

        public UpstreamEndpointStats getUpstreamEndpointStats​(int index)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
        Specified by:
        getUpstreamEndpointStats in interface UpstreamLocalityStatsOrBuilder
      • setUpstreamEndpointStats

        public UpstreamLocalityStats.Builder setUpstreamEndpointStats​(int index,
                                                                      UpstreamEndpointStats value)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • setUpstreamEndpointStats

        public UpstreamLocalityStats.Builder setUpstreamEndpointStats​(int index,
                                                                      UpstreamEndpointStats.Builder builderForValue)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • addUpstreamEndpointStats

        public UpstreamLocalityStats.Builder addUpstreamEndpointStats​(UpstreamEndpointStats value)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • addUpstreamEndpointStats

        public UpstreamLocalityStats.Builder addUpstreamEndpointStats​(int index,
                                                                      UpstreamEndpointStats value)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • addUpstreamEndpointStats

        public UpstreamLocalityStats.Builder addUpstreamEndpointStats​(UpstreamEndpointStats.Builder builderForValue)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • addUpstreamEndpointStats

        public UpstreamLocalityStats.Builder addUpstreamEndpointStats​(int index,
                                                                      UpstreamEndpointStats.Builder builderForValue)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • addAllUpstreamEndpointStats

        public UpstreamLocalityStats.Builder addAllUpstreamEndpointStats​(java.lang.Iterable<? extends UpstreamEndpointStats> values)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • clearUpstreamEndpointStats

        public UpstreamLocalityStats.Builder clearUpstreamEndpointStats()
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • removeUpstreamEndpointStats

        public UpstreamLocalityStats.Builder removeUpstreamEndpointStats​(int index)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • getUpstreamEndpointStatsBuilder

        public UpstreamEndpointStats.Builder getUpstreamEndpointStatsBuilder​(int index)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • getUpstreamEndpointStatsOrBuilder

        public UpstreamEndpointStatsOrBuilder getUpstreamEndpointStatsOrBuilder​(int index)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
        Specified by:
        getUpstreamEndpointStatsOrBuilder in interface UpstreamLocalityStatsOrBuilder
      • getUpstreamEndpointStatsOrBuilderList

        public java.util.List<? extends UpstreamEndpointStatsOrBuilder> getUpstreamEndpointStatsOrBuilderList()
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
        Specified by:
        getUpstreamEndpointStatsOrBuilderList in interface UpstreamLocalityStatsOrBuilder
      • addUpstreamEndpointStatsBuilder

        public UpstreamEndpointStats.Builder addUpstreamEndpointStatsBuilder()
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • addUpstreamEndpointStatsBuilder

        public UpstreamEndpointStats.Builder addUpstreamEndpointStatsBuilder​(int index)
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • getUpstreamEndpointStatsBuilderList

        public java.util.List<UpstreamEndpointStats.Builder> getUpstreamEndpointStatsBuilderList()
         Endpoint granularity stats information for this locality. This information
         is populated if the Server requests it by setting
         :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
         
        repeated .envoy.config.endpoint.v3.UpstreamEndpointStats upstream_endpoint_stats = 7;
      • getPriority

        public int getPriority()
         [#not-implemented-hide:] The priority of the endpoint group these metrics
         were collected from.
         
        uint32 priority = 6;
        Specified by:
        getPriority in interface UpstreamLocalityStatsOrBuilder
        Returns:
        The priority.
      • setPriority

        public UpstreamLocalityStats.Builder setPriority​(int value)
         [#not-implemented-hide:] The priority of the endpoint group these metrics
         were collected from.
         
        uint32 priority = 6;
        Parameters:
        value - The priority to set.
        Returns:
        This builder for chaining.
      • clearPriority

        public UpstreamLocalityStats.Builder clearPriority()
         [#not-implemented-hide:] The priority of the endpoint group these metrics
         were collected from.
         
        uint32 priority = 6;
        Returns:
        This builder for chaining.