All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.envoyproxy.envoy.config.overload.v3.BufferFactoryConfigOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: envoy/config/overload/v3/overload.proto

package io.envoyproxy.envoy.config.overload.v3;

public interface BufferFactoryConfigOrBuilder extends
    // @@protoc_insertion_point(interface_extends:envoy.config.overload.v3.BufferFactoryConfig)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * The minimum power of two at which Envoy starts tracking an account.
   * Envoy has 8 power of two buckets starting with the provided exponent below.
   * Concretely the 1st bucket contains accounts for streams that use
   * [2^minimum_account_to_track_power_of_two,
   * 2^(minimum_account_to_track_power_of_two + 1)) bytes.
   * With the 8th bucket tracking accounts
   * >= 128 * 2^minimum_account_to_track_power_of_two.
   * The maximum value is 56, since we're using uint64_t for bytes counting,
   * and that's the last value that would use the 8 buckets. In practice,
   * we don't expect the proxy to be holding 2^56 bytes.
   * If omitted, Envoy should not do any tracking.
   * 
* * uint32 minimum_account_to_track_power_of_two = 1 [(.validate.rules) = { ... } * @return The minimumAccountToTrackPowerOfTwo. */ int getMinimumAccountToTrackPowerOfTwo(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy