envoy_admin_v2alpha

package
v1.12.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 30, 2020 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CommandLineOptions_IpVersion_name = map[int32]string{
	0: "v4",
	1: "v6",
}
View Source
var CommandLineOptions_IpVersion_value = map[string]int32{
	"v4": 0,
	"v6": 1,
}
View Source
var CommandLineOptions_Mode_name = map[int32]string{
	0: "Serve",
	1: "Validate",
	2: "InitOnly",
}
View Source
var CommandLineOptions_Mode_value = map[string]int32{
	"Serve":    0,
	"Validate": 1,
	"InitOnly": 2,
}
View Source
var ServerInfo_State_name = map[int32]string{
	0: "LIVE",
	1: "DRAINING",
	2: "PRE_INITIALIZING",
	3: "INITIALIZING",
}
View Source
var ServerInfo_State_value = map[string]int32{
	"LIVE":             0,
	"DRAINING":         1,
	"PRE_INITIALIZING": 2,
	"INITIALIZING":     3,
}
View Source
var SimpleMetric_Type_name = map[int32]string{
	0: "COUNTER",
	1: "GAUGE",
}
View Source
var SimpleMetric_Type_value = map[string]int32{
	"COUNTER": 0,
	"GAUGE":   1,
}

Functions

This section is empty.

Types

type BootstrapConfigDump

type BootstrapConfigDump struct {
	Bootstrap *v2.Bootstrap `protobuf:"bytes,1,opt,name=bootstrap,proto3" json:"bootstrap,omitempty"`
	// The timestamp when the BootstrapConfig was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

This message describes the bootstrap configuration that Envoy was started with. This includes any CLI overrides that were merged. Bootstrap configuration information can be used to recreate the static portions of an Envoy configuration by reusing the output as the bootstrap configuration for another Envoy.

func (*BootstrapConfigDump) Descriptor

func (*BootstrapConfigDump) Descriptor() ([]byte, []int)

func (*BootstrapConfigDump) GetBootstrap

func (m *BootstrapConfigDump) GetBootstrap() *v2.Bootstrap

func (*BootstrapConfigDump) GetLastUpdated

func (m *BootstrapConfigDump) GetLastUpdated() *types.Timestamp

func (*BootstrapConfigDump) ProtoMessage

func (*BootstrapConfigDump) ProtoMessage()

func (*BootstrapConfigDump) Reset

func (m *BootstrapConfigDump) Reset()

func (*BootstrapConfigDump) String

func (m *BootstrapConfigDump) String() string

func (*BootstrapConfigDump) XXX_DiscardUnknown

func (m *BootstrapConfigDump) XXX_DiscardUnknown()

func (*BootstrapConfigDump) XXX_Marshal

func (m *BootstrapConfigDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BootstrapConfigDump) XXX_Merge

func (m *BootstrapConfigDump) XXX_Merge(src proto.Message)

func (*BootstrapConfigDump) XXX_Size

func (m *BootstrapConfigDump) XXX_Size() int

func (*BootstrapConfigDump) XXX_Unmarshal

func (m *BootstrapConfigDump) XXX_Unmarshal(b []byte) error

type Certificate

type Certificate struct {
	// Details of CA certificate.
	CaCert []*CertificateDetails `protobuf:"bytes,1,rep,name=ca_cert,json=caCert,proto3" json:"ca_cert,omitempty"`
	// Details of Certificate Chain
	CertChain            []*CertificateDetails `protobuf:"bytes,2,rep,name=cert_chain,json=certChain,proto3" json:"cert_chain,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*Certificate) Descriptor

func (*Certificate) Descriptor() ([]byte, []int)

func (*Certificate) GetCaCert

func (m *Certificate) GetCaCert() []*CertificateDetails

func (*Certificate) GetCertChain

func (m *Certificate) GetCertChain() []*CertificateDetails

func (*Certificate) ProtoMessage

func (*Certificate) ProtoMessage()

func (*Certificate) Reset

func (m *Certificate) Reset()

func (*Certificate) String

func (m *Certificate) String() string

func (*Certificate) XXX_DiscardUnknown

func (m *Certificate) XXX_DiscardUnknown()

func (*Certificate) XXX_Marshal

func (m *Certificate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Certificate) XXX_Merge

func (m *Certificate) XXX_Merge(src proto.Message)

func (*Certificate) XXX_Size

func (m *Certificate) XXX_Size() int

func (*Certificate) XXX_Unmarshal

func (m *Certificate) XXX_Unmarshal(b []byte) error

type CertificateDetails

type CertificateDetails struct {
	// Path of the certificate.
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// Certificate Serial Number.
	SerialNumber string `protobuf:"bytes,2,opt,name=serial_number,json=serialNumber,proto3" json:"serial_number,omitempty"`
	// List of Subject Alternate names.
	SubjectAltNames []*SubjectAlternateName `protobuf:"bytes,3,rep,name=subject_alt_names,json=subjectAltNames,proto3" json:"subject_alt_names,omitempty"`
	// Minimum of days until expiration of certificate and it's chain.
	DaysUntilExpiration uint64 `protobuf:"varint,4,opt,name=days_until_expiration,json=daysUntilExpiration,proto3" json:"days_until_expiration,omitempty"`
	// Indicates the time from which the certificate is valid.
	ValidFrom *types.Timestamp `protobuf:"bytes,5,opt,name=valid_from,json=validFrom,proto3" json:"valid_from,omitempty"`
	// Indicates the time at which the certificate expires.
	ExpirationTime       *types.Timestamp `protobuf:"bytes,6,opt,name=expiration_time,json=expirationTime,proto3" json:"expiration_time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

[#next-free-field: 7]

func (*CertificateDetails) Descriptor

func (*CertificateDetails) Descriptor() ([]byte, []int)

func (*CertificateDetails) GetDaysUntilExpiration

func (m *CertificateDetails) GetDaysUntilExpiration() uint64

func (*CertificateDetails) GetExpirationTime

func (m *CertificateDetails) GetExpirationTime() *types.Timestamp

func (*CertificateDetails) GetPath

func (m *CertificateDetails) GetPath() string

func (*CertificateDetails) GetSerialNumber

func (m *CertificateDetails) GetSerialNumber() string

func (*CertificateDetails) GetSubjectAltNames

func (m *CertificateDetails) GetSubjectAltNames() []*SubjectAlternateName

func (*CertificateDetails) GetValidFrom

func (m *CertificateDetails) GetValidFrom() *types.Timestamp

func (*CertificateDetails) ProtoMessage

func (*CertificateDetails) ProtoMessage()

func (*CertificateDetails) Reset

func (m *CertificateDetails) Reset()

func (*CertificateDetails) String

func (m *CertificateDetails) String() string

func (*CertificateDetails) XXX_DiscardUnknown

func (m *CertificateDetails) XXX_DiscardUnknown()

func (*CertificateDetails) XXX_Marshal

func (m *CertificateDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CertificateDetails) XXX_Merge

func (m *CertificateDetails) XXX_Merge(src proto.Message)

func (*CertificateDetails) XXX_Size

func (m *CertificateDetails) XXX_Size() int

func (*CertificateDetails) XXX_Unmarshal

func (m *CertificateDetails) XXX_Unmarshal(b []byte) error

type Certificates

type Certificates struct {
	// List of certificates known to an Envoy.
	Certificates         []*Certificate `protobuf:"bytes,1,rep,name=certificates,proto3" json:"certificates,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

Proto representation of certificate details. Admin endpoint uses this wrapper for `/certs` to display certificate information. See :ref:`/certs <operations_admin_interface_certs>` for more information.

func (*Certificates) Descriptor

func (*Certificates) Descriptor() ([]byte, []int)

func (*Certificates) GetCertificates

func (m *Certificates) GetCertificates() []*Certificate

func (*Certificates) ProtoMessage

func (*Certificates) ProtoMessage()

func (*Certificates) Reset

func (m *Certificates) Reset()

func (*Certificates) String

func (m *Certificates) String() string

func (*Certificates) XXX_DiscardUnknown

func (m *Certificates) XXX_DiscardUnknown()

func (*Certificates) XXX_Marshal

func (m *Certificates) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Certificates) XXX_Merge

func (m *Certificates) XXX_Merge(src proto.Message)

func (*Certificates) XXX_Size

func (m *Certificates) XXX_Size() int

func (*Certificates) XXX_Unmarshal

func (m *Certificates) XXX_Unmarshal(b []byte) error

type ClusterStatus

type ClusterStatus struct {
	// Name of the cluster.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Denotes whether this cluster was added via API or configured statically.
	AddedViaApi bool `protobuf:"varint,2,opt,name=added_via_api,json=addedViaApi,proto3" json:"added_via_api,omitempty"`
	// The success rate threshold used in the last interval.
	// If
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_api_field_cluster.OutlierDetection.split_external_local_origin_errors>`
	// is *false*, all errors: externally and locally generated were used to calculate the threshold.
	// If
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_api_field_cluster.OutlierDetection.split_external_local_origin_errors>`
	// is *true*, only externally generated errors were used to calculate the threshold.
	// The threshold is used to eject hosts based on their success rate. See
	// :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for details.
	//
	// Note: this field may be omitted in any of the three following cases:
	//
	// 1. There were not enough hosts with enough request volume to proceed with success rate based
	//    outlier ejection.
	// 2. The threshold is computed to be < 0 because a negative value implies that there was no
	//    threshold for that interval.
	// 3. Outlier detection is not enabled for this cluster.
	SuccessRateEjectionThreshold *_type.Percent `` /* 149-byte string literal not displayed */
	// Mapping from host address to the host's current status.
	HostStatuses []*HostStatus `protobuf:"bytes,4,rep,name=host_statuses,json=hostStatuses,proto3" json:"host_statuses,omitempty"`
	// The success rate threshold used in the last interval when only locally originated failures were
	// taken into account and externally originated errors were treated as success.
	// This field should be interpreted only when
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_api_field_cluster.OutlierDetection.split_external_local_origin_errors>`
	// is *true*. The threshold is used to eject hosts based on their success rate.
	// See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
	// details.
	//
	// Note: this field may be omitted in any of the three following cases:
	//
	// 1. There were not enough hosts with enough request volume to proceed with success rate based
	//    outlier ejection.
	// 2. The threshold is computed to be < 0 because a negative value implies that there was no
	//    threshold for that interval.
	// 3. Outlier detection is not enabled for this cluster.
	LocalOriginSuccessRateEjectionThreshold *_type.Percent `` /* 186-byte string literal not displayed */
	XXX_NoUnkeyedLiteral                    struct{}       `json:"-"`
	XXX_unrecognized                        []byte         `json:"-"`
	XXX_sizecache                           int32          `json:"-"`
}

Details an individual cluster's current status. [#next-free-field: 6]

func (*ClusterStatus) Descriptor

func (*ClusterStatus) Descriptor() ([]byte, []int)

func (*ClusterStatus) GetAddedViaApi

func (m *ClusterStatus) GetAddedViaApi() bool

func (*ClusterStatus) GetHostStatuses

func (m *ClusterStatus) GetHostStatuses() []*HostStatus

func (*ClusterStatus) GetLocalOriginSuccessRateEjectionThreshold

func (m *ClusterStatus) GetLocalOriginSuccessRateEjectionThreshold() *_type.Percent

func (*ClusterStatus) GetName

func (m *ClusterStatus) GetName() string

func (*ClusterStatus) GetSuccessRateEjectionThreshold

func (m *ClusterStatus) GetSuccessRateEjectionThreshold() *_type.Percent

func (*ClusterStatus) ProtoMessage

func (*ClusterStatus) ProtoMessage()

func (*ClusterStatus) Reset

func (m *ClusterStatus) Reset()

func (*ClusterStatus) String

func (m *ClusterStatus) String() string

func (*ClusterStatus) XXX_DiscardUnknown

func (m *ClusterStatus) XXX_DiscardUnknown()

func (*ClusterStatus) XXX_Marshal

func (m *ClusterStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClusterStatus) XXX_Merge

func (m *ClusterStatus) XXX_Merge(src proto.Message)

func (*ClusterStatus) XXX_Size

func (m *ClusterStatus) XXX_Size() int

func (*ClusterStatus) XXX_Unmarshal

func (m *ClusterStatus) XXX_Unmarshal(b []byte) error

type Clusters

type Clusters struct {
	// Mapping from cluster name to each cluster's status.
	ClusterStatuses      []*ClusterStatus `protobuf:"bytes,1,rep,name=cluster_statuses,json=clusterStatuses,proto3" json:"cluster_statuses,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

Admin endpoint uses this wrapper for `/clusters` to display cluster status information. See :ref:`/clusters <operations_admin_interface_clusters>` for more information.

func (*Clusters) Descriptor

func (*Clusters) Descriptor() ([]byte, []int)

func (*Clusters) GetClusterStatuses

func (m *Clusters) GetClusterStatuses() []*ClusterStatus

func (*Clusters) ProtoMessage

func (*Clusters) ProtoMessage()

func (*Clusters) Reset

func (m *Clusters) Reset()

func (*Clusters) String

func (m *Clusters) String() string

func (*Clusters) XXX_DiscardUnknown

func (m *Clusters) XXX_DiscardUnknown()

func (*Clusters) XXX_Marshal

func (m *Clusters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Clusters) XXX_Merge

func (m *Clusters) XXX_Merge(src proto.Message)

func (*Clusters) XXX_Size

func (m *Clusters) XXX_Size() int

func (*Clusters) XXX_Unmarshal

func (m *Clusters) XXX_Unmarshal(b []byte) error

type ClustersConfigDump

type ClustersConfigDump struct {
	// This is the :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` in the
	// last processed CDS discovery response. If there are only static bootstrap clusters, this field
	// will be "".
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The statically loaded cluster configs.
	StaticClusters []*ClustersConfigDump_StaticCluster `protobuf:"bytes,2,rep,name=static_clusters,json=staticClusters,proto3" json:"static_clusters,omitempty"`
	// The dynamically loaded active clusters. These are clusters that are available to service
	// data plane traffic.
	DynamicActiveClusters []*ClustersConfigDump_DynamicCluster `` /* 126-byte string literal not displayed */
	// The dynamically loaded warming clusters. These are clusters that are currently undergoing
	// warming in preparation to service data plane traffic. Note that if attempting to recreate an
	// Envoy configuration from a configuration dump, the warming clusters should generally be
	// discarded.
	DynamicWarmingClusters []*ClustersConfigDump_DynamicCluster `` /* 129-byte string literal not displayed */
	XXX_NoUnkeyedLiteral   struct{}                             `json:"-"`
	XXX_unrecognized       []byte                               `json:"-"`
	XXX_sizecache          int32                                `json:"-"`
}

Envoy's cluster manager fills this message with all currently known clusters. Cluster configuration information can be used to recreate an Envoy configuration by populating all clusters as static clusters or by returning them in a CDS response.

func (*ClustersConfigDump) Descriptor

func (*ClustersConfigDump) Descriptor() ([]byte, []int)

func (*ClustersConfigDump) GetDynamicActiveClusters

func (m *ClustersConfigDump) GetDynamicActiveClusters() []*ClustersConfigDump_DynamicCluster

func (*ClustersConfigDump) GetDynamicWarmingClusters

func (m *ClustersConfigDump) GetDynamicWarmingClusters() []*ClustersConfigDump_DynamicCluster

func (*ClustersConfigDump) GetStaticClusters

func (m *ClustersConfigDump) GetStaticClusters() []*ClustersConfigDump_StaticCluster

func (*ClustersConfigDump) GetVersionInfo

func (m *ClustersConfigDump) GetVersionInfo() string

func (*ClustersConfigDump) ProtoMessage

func (*ClustersConfigDump) ProtoMessage()

func (*ClustersConfigDump) Reset

func (m *ClustersConfigDump) Reset()

func (*ClustersConfigDump) String

func (m *ClustersConfigDump) String() string

func (*ClustersConfigDump) XXX_DiscardUnknown

func (m *ClustersConfigDump) XXX_DiscardUnknown()

func (*ClustersConfigDump) XXX_Marshal

func (m *ClustersConfigDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClustersConfigDump) XXX_Merge

func (m *ClustersConfigDump) XXX_Merge(src proto.Message)

func (*ClustersConfigDump) XXX_Size

func (m *ClustersConfigDump) XXX_Size() int

func (*ClustersConfigDump) XXX_Unmarshal

func (m *ClustersConfigDump) XXX_Unmarshal(b []byte) error

type ClustersConfigDump_DynamicCluster

type ClustersConfigDump_DynamicCluster struct {
	// This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` field at the time
	// that the cluster was loaded. In the future, discrete per-cluster versions may be supported by
	// the API.
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The cluster config.
	Cluster *v21.Cluster `protobuf:"bytes,2,opt,name=cluster,proto3" json:"cluster,omitempty"`
	// The timestamp when the Cluster was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

Describes a dynamically loaded cluster via the CDS API.

func (*ClustersConfigDump_DynamicCluster) Descriptor

func (*ClustersConfigDump_DynamicCluster) Descriptor() ([]byte, []int)

func (*ClustersConfigDump_DynamicCluster) GetCluster

func (*ClustersConfigDump_DynamicCluster) GetLastUpdated

func (m *ClustersConfigDump_DynamicCluster) GetLastUpdated() *types.Timestamp

func (*ClustersConfigDump_DynamicCluster) GetVersionInfo

func (m *ClustersConfigDump_DynamicCluster) GetVersionInfo() string

func (*ClustersConfigDump_DynamicCluster) ProtoMessage

func (*ClustersConfigDump_DynamicCluster) ProtoMessage()

func (*ClustersConfigDump_DynamicCluster) Reset

func (*ClustersConfigDump_DynamicCluster) String

func (*ClustersConfigDump_DynamicCluster) XXX_DiscardUnknown

func (m *ClustersConfigDump_DynamicCluster) XXX_DiscardUnknown()

func (*ClustersConfigDump_DynamicCluster) XXX_Marshal

func (m *ClustersConfigDump_DynamicCluster) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClustersConfigDump_DynamicCluster) XXX_Merge

func (*ClustersConfigDump_DynamicCluster) XXX_Size

func (m *ClustersConfigDump_DynamicCluster) XXX_Size() int

func (*ClustersConfigDump_DynamicCluster) XXX_Unmarshal

func (m *ClustersConfigDump_DynamicCluster) XXX_Unmarshal(b []byte) error

type ClustersConfigDump_StaticCluster

type ClustersConfigDump_StaticCluster struct {
	// The cluster config.
	Cluster *v21.Cluster `protobuf:"bytes,1,opt,name=cluster,proto3" json:"cluster,omitempty"`
	// The timestamp when the Cluster was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

Describes a statically loaded cluster.

func (*ClustersConfigDump_StaticCluster) Descriptor

func (*ClustersConfigDump_StaticCluster) Descriptor() ([]byte, []int)

func (*ClustersConfigDump_StaticCluster) GetCluster

func (m *ClustersConfigDump_StaticCluster) GetCluster() *v21.Cluster

func (*ClustersConfigDump_StaticCluster) GetLastUpdated

func (m *ClustersConfigDump_StaticCluster) GetLastUpdated() *types.Timestamp

func (*ClustersConfigDump_StaticCluster) ProtoMessage

func (*ClustersConfigDump_StaticCluster) ProtoMessage()

func (*ClustersConfigDump_StaticCluster) Reset

func (*ClustersConfigDump_StaticCluster) String

func (*ClustersConfigDump_StaticCluster) XXX_DiscardUnknown

func (m *ClustersConfigDump_StaticCluster) XXX_DiscardUnknown()

func (*ClustersConfigDump_StaticCluster) XXX_Marshal

func (m *ClustersConfigDump_StaticCluster) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClustersConfigDump_StaticCluster) XXX_Merge

func (*ClustersConfigDump_StaticCluster) XXX_Size

func (m *ClustersConfigDump_StaticCluster) XXX_Size() int

func (*ClustersConfigDump_StaticCluster) XXX_Unmarshal

func (m *ClustersConfigDump_StaticCluster) XXX_Unmarshal(b []byte) error

type CommandLineOptions

type CommandLineOptions struct {
	// See :option:`--base-id` for details.
	BaseId uint64 `protobuf:"varint,1,opt,name=base_id,json=baseId,proto3" json:"base_id,omitempty"`
	// See :option:`--concurrency` for details.
	Concurrency uint32 `protobuf:"varint,2,opt,name=concurrency,proto3" json:"concurrency,omitempty"`
	// See :option:`--config-path` for details.
	ConfigPath string `protobuf:"bytes,3,opt,name=config_path,json=configPath,proto3" json:"config_path,omitempty"`
	// See :option:`--config-yaml` for details.
	ConfigYaml string `protobuf:"bytes,4,opt,name=config_yaml,json=configYaml,proto3" json:"config_yaml,omitempty"`
	// See :option:`--allow-unknown-static-fields` for details.
	AllowUnknownStaticFields bool `` /* 138-byte string literal not displayed */
	// See :option:`--reject-unknown-dynamic-fields` for details.
	RejectUnknownDynamicFields bool `` /* 145-byte string literal not displayed */
	// See :option:`--admin-address-path` for details.
	AdminAddressPath string `protobuf:"bytes,6,opt,name=admin_address_path,json=adminAddressPath,proto3" json:"admin_address_path,omitempty"`
	// See :option:`--local-address-ip-version` for details.
	LocalAddressIpVersion CommandLineOptions_IpVersion `` /* 183-byte string literal not displayed */
	// See :option:`--log-level` for details.
	LogLevel string `protobuf:"bytes,8,opt,name=log_level,json=logLevel,proto3" json:"log_level,omitempty"`
	// See :option:`--component-log-level` for details.
	ComponentLogLevel string `protobuf:"bytes,9,opt,name=component_log_level,json=componentLogLevel,proto3" json:"component_log_level,omitempty"`
	// See :option:`--log-format` for details.
	LogFormat string `protobuf:"bytes,10,opt,name=log_format,json=logFormat,proto3" json:"log_format,omitempty"`
	// See :option:`--log-path` for details.
	LogPath string `protobuf:"bytes,11,opt,name=log_path,json=logPath,proto3" json:"log_path,omitempty"`
	// See :option:`--service-cluster` for details.
	ServiceCluster string `protobuf:"bytes,13,opt,name=service_cluster,json=serviceCluster,proto3" json:"service_cluster,omitempty"`
	// See :option:`--service-node` for details.
	ServiceNode string `protobuf:"bytes,14,opt,name=service_node,json=serviceNode,proto3" json:"service_node,omitempty"`
	// See :option:`--service-zone` for details.
	ServiceZone string `protobuf:"bytes,15,opt,name=service_zone,json=serviceZone,proto3" json:"service_zone,omitempty"`
	// See :option:`--file-flush-interval-msec` for details.
	FileFlushInterval *types.Duration `protobuf:"bytes,16,opt,name=file_flush_interval,json=fileFlushInterval,proto3" json:"file_flush_interval,omitempty"`
	// See :option:`--drain-time-s` for details.
	DrainTime *types.Duration `protobuf:"bytes,17,opt,name=drain_time,json=drainTime,proto3" json:"drain_time,omitempty"`
	// See :option:`--parent-shutdown-time-s` for details.
	ParentShutdownTime *types.Duration `protobuf:"bytes,18,opt,name=parent_shutdown_time,json=parentShutdownTime,proto3" json:"parent_shutdown_time,omitempty"`
	// See :option:`--mode` for details.
	Mode CommandLineOptions_Mode `protobuf:"varint,19,opt,name=mode,proto3,enum=envoy.admin.v2alpha.CommandLineOptions_Mode" json:"mode,omitempty"`
	// max_stats and max_obj_name_len are now unused and have no effect.
	MaxStats      uint64 `protobuf:"varint,20,opt,name=max_stats,json=maxStats,proto3" json:"max_stats,omitempty"`                    // Deprecated: Do not use.
	MaxObjNameLen uint64 `protobuf:"varint,21,opt,name=max_obj_name_len,json=maxObjNameLen,proto3" json:"max_obj_name_len,omitempty"` // Deprecated: Do not use.
	// See :option:`--disable-hot-restart` for details.
	DisableHotRestart bool `protobuf:"varint,22,opt,name=disable_hot_restart,json=disableHotRestart,proto3" json:"disable_hot_restart,omitempty"`
	// See :option:`--enable-mutex-tracing` for details.
	EnableMutexTracing bool `protobuf:"varint,23,opt,name=enable_mutex_tracing,json=enableMutexTracing,proto3" json:"enable_mutex_tracing,omitempty"`
	// See :option:`--restart-epoch` for details.
	RestartEpoch uint32 `protobuf:"varint,24,opt,name=restart_epoch,json=restartEpoch,proto3" json:"restart_epoch,omitempty"`
	// See :option:`--cpuset-threads` for details.
	CpusetThreads        bool     `protobuf:"varint,25,opt,name=cpuset_threads,json=cpusetThreads,proto3" json:"cpuset_threads,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

[#next-free-field: 27]

func (*CommandLineOptions) Descriptor

func (*CommandLineOptions) Descriptor() ([]byte, []int)

func (*CommandLineOptions) GetAdminAddressPath

func (m *CommandLineOptions) GetAdminAddressPath() string

func (*CommandLineOptions) GetAllowUnknownStaticFields

func (m *CommandLineOptions) GetAllowUnknownStaticFields() bool

func (*CommandLineOptions) GetBaseId

func (m *CommandLineOptions) GetBaseId() uint64

func (*CommandLineOptions) GetComponentLogLevel

func (m *CommandLineOptions) GetComponentLogLevel() string

func (*CommandLineOptions) GetConcurrency

func (m *CommandLineOptions) GetConcurrency() uint32

func (*CommandLineOptions) GetConfigPath

func (m *CommandLineOptions) GetConfigPath() string

func (*CommandLineOptions) GetConfigYaml

func (m *CommandLineOptions) GetConfigYaml() string

func (*CommandLineOptions) GetCpusetThreads

func (m *CommandLineOptions) GetCpusetThreads() bool

func (*CommandLineOptions) GetDisableHotRestart

func (m *CommandLineOptions) GetDisableHotRestart() bool

func (*CommandLineOptions) GetDrainTime

func (m *CommandLineOptions) GetDrainTime() *types.Duration

func (*CommandLineOptions) GetEnableMutexTracing

func (m *CommandLineOptions) GetEnableMutexTracing() bool

func (*CommandLineOptions) GetFileFlushInterval

func (m *CommandLineOptions) GetFileFlushInterval() *types.Duration

func (*CommandLineOptions) GetLocalAddressIpVersion

func (m *CommandLineOptions) GetLocalAddressIpVersion() CommandLineOptions_IpVersion

func (*CommandLineOptions) GetLogFormat

func (m *CommandLineOptions) GetLogFormat() string

func (*CommandLineOptions) GetLogLevel

func (m *CommandLineOptions) GetLogLevel() string

func (*CommandLineOptions) GetLogPath

func (m *CommandLineOptions) GetLogPath() string

func (*CommandLineOptions) GetMaxObjNameLen deprecated

func (m *CommandLineOptions) GetMaxObjNameLen() uint64

Deprecated: Do not use.

func (*CommandLineOptions) GetMaxStats deprecated

func (m *CommandLineOptions) GetMaxStats() uint64

Deprecated: Do not use.

func (*CommandLineOptions) GetMode

func (*CommandLineOptions) GetParentShutdownTime

func (m *CommandLineOptions) GetParentShutdownTime() *types.Duration

func (*CommandLineOptions) GetRejectUnknownDynamicFields

func (m *CommandLineOptions) GetRejectUnknownDynamicFields() bool

func (*CommandLineOptions) GetRestartEpoch

func (m *CommandLineOptions) GetRestartEpoch() uint32

func (*CommandLineOptions) GetServiceCluster

func (m *CommandLineOptions) GetServiceCluster() string

func (*CommandLineOptions) GetServiceNode

func (m *CommandLineOptions) GetServiceNode() string

func (*CommandLineOptions) GetServiceZone

func (m *CommandLineOptions) GetServiceZone() string

func (*CommandLineOptions) ProtoMessage

func (*CommandLineOptions) ProtoMessage()

func (*CommandLineOptions) Reset

func (m *CommandLineOptions) Reset()

func (*CommandLineOptions) String

func (m *CommandLineOptions) String() string

func (*CommandLineOptions) XXX_DiscardUnknown

func (m *CommandLineOptions) XXX_DiscardUnknown()

func (*CommandLineOptions) XXX_Marshal

func (m *CommandLineOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommandLineOptions) XXX_Merge

func (m *CommandLineOptions) XXX_Merge(src proto.Message)

func (*CommandLineOptions) XXX_Size

func (m *CommandLineOptions) XXX_Size() int

func (*CommandLineOptions) XXX_Unmarshal

func (m *CommandLineOptions) XXX_Unmarshal(b []byte) error

type CommandLineOptions_IpVersion

type CommandLineOptions_IpVersion int32
const (
	CommandLineOptions_v4 CommandLineOptions_IpVersion = 0
	CommandLineOptions_v6 CommandLineOptions_IpVersion = 1
)

func (CommandLineOptions_IpVersion) EnumDescriptor

func (CommandLineOptions_IpVersion) EnumDescriptor() ([]byte, []int)

func (CommandLineOptions_IpVersion) String

type CommandLineOptions_Mode

type CommandLineOptions_Mode int32
const (
	// Validate configs and then serve traffic normally.
	CommandLineOptions_Serve CommandLineOptions_Mode = 0
	// Validate configs and exit.
	CommandLineOptions_Validate CommandLineOptions_Mode = 1
	// Completely load and initialize the config, and then exit without running the listener loop.
	CommandLineOptions_InitOnly CommandLineOptions_Mode = 2
)

func (CommandLineOptions_Mode) EnumDescriptor

func (CommandLineOptions_Mode) EnumDescriptor() ([]byte, []int)

func (CommandLineOptions_Mode) String

func (x CommandLineOptions_Mode) String() string

type ConfigDump

type ConfigDump struct {
	// This list is serialized and dumped in its entirety at the
	// :ref:`/config_dump <operations_admin_interface_config_dump>` endpoint.
	//
	// The following configurations are currently supported and will be dumped in the order given
	// below:
	//
	// * *bootstrap*: :ref:`BootstrapConfigDump <envoy_api_msg_admin.v2alpha.BootstrapConfigDump>`
	// * *clusters*: :ref:`ClustersConfigDump <envoy_api_msg_admin.v2alpha.ClustersConfigDump>`
	// * *listeners*: :ref:`ListenersConfigDump <envoy_api_msg_admin.v2alpha.ListenersConfigDump>`
	// * *routes*:  :ref:`RoutesConfigDump <envoy_api_msg_admin.v2alpha.RoutesConfigDump>`
	Configs              []*types.Any `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

The :ref:`/config_dump <operations_admin_interface_config_dump>` admin endpoint uses this wrapper message to maintain and serve arbitrary configuration information from any component in Envoy.

func (*ConfigDump) Descriptor

func (*ConfigDump) Descriptor() ([]byte, []int)

func (*ConfigDump) GetConfigs

func (m *ConfigDump) GetConfigs() []*types.Any

func (*ConfigDump) ProtoMessage

func (*ConfigDump) ProtoMessage()

func (*ConfigDump) Reset

func (m *ConfigDump) Reset()

func (*ConfigDump) String

func (m *ConfigDump) String() string

func (*ConfigDump) XXX_DiscardUnknown

func (m *ConfigDump) XXX_DiscardUnknown()

func (*ConfigDump) XXX_Marshal

func (m *ConfigDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfigDump) XXX_Merge

func (m *ConfigDump) XXX_Merge(src proto.Message)

func (*ConfigDump) XXX_Size

func (m *ConfigDump) XXX_Size() int

func (*ConfigDump) XXX_Unmarshal

func (m *ConfigDump) XXX_Unmarshal(b []byte) error

type HostHealthStatus

type HostHealthStatus struct {
	// The host is currently failing active health checks.
	FailedActiveHealthCheck bool `` /* 135-byte string literal not displayed */
	// The host is currently considered an outlier and has been ejected.
	FailedOutlierCheck bool `protobuf:"varint,2,opt,name=failed_outlier_check,json=failedOutlierCheck,proto3" json:"failed_outlier_check,omitempty"`
	// The host is currently being marked as degraded through active health checking.
	FailedActiveDegradedCheck bool `` /* 141-byte string literal not displayed */
	// The host has been removed from service discovery, but is being stabilized due to active
	// health checking.
	PendingDynamicRemoval bool `` /* 127-byte string literal not displayed */
	// The host has not yet been health checked.
	PendingActiveHc bool `protobuf:"varint,6,opt,name=pending_active_hc,json=pendingActiveHc,proto3" json:"pending_active_hc,omitempty"`
	// Health status as reported by EDS. Note: only HEALTHY and UNHEALTHY are currently supported
	// here.
	// TODO(mrice32): pipe through remaining EDS health status possibilities.
	EdsHealthStatus      core.HealthStatus `` /* 145-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

Health status for a host. [#next-free-field: 7]

func (*HostHealthStatus) Descriptor

func (*HostHealthStatus) Descriptor() ([]byte, []int)

func (*HostHealthStatus) GetEdsHealthStatus

func (m *HostHealthStatus) GetEdsHealthStatus() core.HealthStatus

func (*HostHealthStatus) GetFailedActiveDegradedCheck

func (m *HostHealthStatus) GetFailedActiveDegradedCheck() bool

func (*HostHealthStatus) GetFailedActiveHealthCheck

func (m *HostHealthStatus) GetFailedActiveHealthCheck() bool

func (*HostHealthStatus) GetFailedOutlierCheck

func (m *HostHealthStatus) GetFailedOutlierCheck() bool

func (*HostHealthStatus) GetPendingActiveHc

func (m *HostHealthStatus) GetPendingActiveHc() bool

func (*HostHealthStatus) GetPendingDynamicRemoval

func (m *HostHealthStatus) GetPendingDynamicRemoval() bool

func (*HostHealthStatus) ProtoMessage

func (*HostHealthStatus) ProtoMessage()

func (*HostHealthStatus) Reset

func (m *HostHealthStatus) Reset()

func (*HostHealthStatus) String

func (m *HostHealthStatus) String() string

func (*HostHealthStatus) XXX_DiscardUnknown

func (m *HostHealthStatus) XXX_DiscardUnknown()

func (*HostHealthStatus) XXX_Marshal

func (m *HostHealthStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HostHealthStatus) XXX_Merge

func (m *HostHealthStatus) XXX_Merge(src proto.Message)

func (*HostHealthStatus) XXX_Size

func (m *HostHealthStatus) XXX_Size() int

func (*HostHealthStatus) XXX_Unmarshal

func (m *HostHealthStatus) XXX_Unmarshal(b []byte) error

type HostStatus

type HostStatus struct {
	// Address of this host.
	Address *core.Address `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// List of stats specific to this host.
	Stats []*SimpleMetric `protobuf:"bytes,2,rep,name=stats,proto3" json:"stats,omitempty"`
	// The host's current health status.
	HealthStatus *HostHealthStatus `protobuf:"bytes,3,opt,name=health_status,json=healthStatus,proto3" json:"health_status,omitempty"`
	// Request success rate for this host over the last calculated interval.
	// If
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_api_field_cluster.OutlierDetection.split_external_local_origin_errors>`
	// is *false*, all errors: externally and locally generated were used in success rate
	// calculation. If
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_api_field_cluster.OutlierDetection.split_external_local_origin_errors>`
	// is *true*, only externally generated errors were used in success rate calculation.
	// See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
	// details.
	//
	// Note: the message will not be present if host did not have enough request volume to calculate
	// success rate or the cluster did not have enough hosts to run through success rate outlier
	// ejection.
	SuccessRate *_type.Percent `protobuf:"bytes,4,opt,name=success_rate,json=successRate,proto3" json:"success_rate,omitempty"`
	// The host's weight. If not configured, the value defaults to 1.
	Weight uint32 `protobuf:"varint,5,opt,name=weight,proto3" json:"weight,omitempty"`
	// The hostname of the host, if applicable.
	Hostname string `protobuf:"bytes,6,opt,name=hostname,proto3" json:"hostname,omitempty"`
	// The host's priority. If not configured, the value defaults to 0 (highest priority).
	Priority uint32 `protobuf:"varint,7,opt,name=priority,proto3" json:"priority,omitempty"`
	// Request success rate for this host over the last calculated
	// interval when only locally originated errors are taken into account and externally originated
	// errors were treated as success.
	// This field should be interpreted only when
	// :ref:`outlier_detection.split_external_local_origin_errors<envoy_api_field_cluster.OutlierDetection.split_external_local_origin_errors>`
	// is *true*.
	// See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
	// details.
	//
	// Note: the message will not be present if host did not have enough request volume to calculate
	// success rate or the cluster did not have enough hosts to run through success rate outlier
	// ejection.
	LocalOriginSuccessRate *_type.Percent `` /* 131-byte string literal not displayed */
	XXX_NoUnkeyedLiteral   struct{}       `json:"-"`
	XXX_unrecognized       []byte         `json:"-"`
	XXX_sizecache          int32          `json:"-"`
}

Current state of a particular host. [#next-free-field: 9]

func (*HostStatus) Descriptor

func (*HostStatus) Descriptor() ([]byte, []int)

func (*HostStatus) GetAddress

func (m *HostStatus) GetAddress() *core.Address

func (*HostStatus) GetHealthStatus

func (m *HostStatus) GetHealthStatus() *HostHealthStatus

func (*HostStatus) GetHostname

func (m *HostStatus) GetHostname() string

func (*HostStatus) GetLocalOriginSuccessRate

func (m *HostStatus) GetLocalOriginSuccessRate() *_type.Percent

func (*HostStatus) GetPriority

func (m *HostStatus) GetPriority() uint32

func (*HostStatus) GetStats

func (m *HostStatus) GetStats() []*SimpleMetric

func (*HostStatus) GetSuccessRate

func (m *HostStatus) GetSuccessRate() *_type.Percent

func (*HostStatus) GetWeight

func (m *HostStatus) GetWeight() uint32

func (*HostStatus) ProtoMessage

func (*HostStatus) ProtoMessage()

func (*HostStatus) Reset

func (m *HostStatus) Reset()

func (*HostStatus) String

func (m *HostStatus) String() string

func (*HostStatus) XXX_DiscardUnknown

func (m *HostStatus) XXX_DiscardUnknown()

func (*HostStatus) XXX_Marshal

func (m *HostStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HostStatus) XXX_Merge

func (m *HostStatus) XXX_Merge(src proto.Message)

func (*HostStatus) XXX_Size

func (m *HostStatus) XXX_Size() int

func (*HostStatus) XXX_Unmarshal

func (m *HostStatus) XXX_Unmarshal(b []byte) error

type ListenerStatus

type ListenerStatus struct {
	// Name of the listener
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The actual local address that the listener is listening on. If a listener was configured
	// to listen on port 0, then this address has the port that was allocated by the OS.
	LocalAddress         *core.Address `protobuf:"bytes,2,opt,name=local_address,json=localAddress,proto3" json:"local_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

Details an individual listener's current status.

func (*ListenerStatus) Descriptor

func (*ListenerStatus) Descriptor() ([]byte, []int)

func (*ListenerStatus) GetLocalAddress

func (m *ListenerStatus) GetLocalAddress() *core.Address

func (*ListenerStatus) GetName

func (m *ListenerStatus) GetName() string

func (*ListenerStatus) ProtoMessage

func (*ListenerStatus) ProtoMessage()

func (*ListenerStatus) Reset

func (m *ListenerStatus) Reset()

func (*ListenerStatus) String

func (m *ListenerStatus) String() string

func (*ListenerStatus) XXX_DiscardUnknown

func (m *ListenerStatus) XXX_DiscardUnknown()

func (*ListenerStatus) XXX_Marshal

func (m *ListenerStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListenerStatus) XXX_Merge

func (m *ListenerStatus) XXX_Merge(src proto.Message)

func (*ListenerStatus) XXX_Size

func (m *ListenerStatus) XXX_Size() int

func (*ListenerStatus) XXX_Unmarshal

func (m *ListenerStatus) XXX_Unmarshal(b []byte) error

type Listeners

type Listeners struct {
	// List of listener statuses.
	ListenerStatuses     []*ListenerStatus `protobuf:"bytes,1,rep,name=listener_statuses,json=listenerStatuses,proto3" json:"listener_statuses,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

Admin endpoint uses this wrapper for `/listeners` to display listener status information. See :ref:`/listeners <operations_admin_interface_listeners>` for more information.

func (*Listeners) Descriptor

func (*Listeners) Descriptor() ([]byte, []int)

func (*Listeners) GetListenerStatuses

func (m *Listeners) GetListenerStatuses() []*ListenerStatus

func (*Listeners) ProtoMessage

func (*Listeners) ProtoMessage()

func (*Listeners) Reset

func (m *Listeners) Reset()

func (*Listeners) String

func (m *Listeners) String() string

func (*Listeners) XXX_DiscardUnknown

func (m *Listeners) XXX_DiscardUnknown()

func (*Listeners) XXX_Marshal

func (m *Listeners) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Listeners) XXX_Merge

func (m *Listeners) XXX_Merge(src proto.Message)

func (*Listeners) XXX_Size

func (m *Listeners) XXX_Size() int

func (*Listeners) XXX_Unmarshal

func (m *Listeners) XXX_Unmarshal(b []byte) error

type ListenersConfigDump

type ListenersConfigDump struct {
	// This is the :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` in the
	// last processed LDS discovery response. If there are only static bootstrap listeners, this field
	// will be "".
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The statically loaded listener configs.
	StaticListeners []*ListenersConfigDump_StaticListener `protobuf:"bytes,2,rep,name=static_listeners,json=staticListeners,proto3" json:"static_listeners,omitempty"`
	// The dynamically loaded active listeners. These are listeners that are available to service
	// data plane traffic.
	DynamicActiveListeners []*ListenersConfigDump_DynamicListener `` /* 129-byte string literal not displayed */
	// The dynamically loaded warming listeners. These are listeners that are currently undergoing
	// warming in preparation to service data plane traffic. Note that if attempting to recreate an
	// Envoy configuration from a configuration dump, the warming listeners should generally be
	// discarded.
	DynamicWarmingListeners []*ListenersConfigDump_DynamicListener `` /* 132-byte string literal not displayed */
	// The dynamically loaded draining listeners. These are listeners that are currently undergoing
	// draining in preparation to stop servicing data plane traffic. Note that if attempting to
	// recreate an Envoy configuration from a configuration dump, the draining listeners should
	// generally be discarded.
	DynamicDrainingListeners []*ListenersConfigDump_DynamicListener `` /* 135-byte string literal not displayed */
	XXX_NoUnkeyedLiteral     struct{}                               `json:"-"`
	XXX_unrecognized         []byte                                 `json:"-"`
	XXX_sizecache            int32                                  `json:"-"`
}

Envoy's listener manager fills this message with all currently known listeners. Listener configuration information can be used to recreate an Envoy configuration by populating all listeners as static listeners or by returning them in a LDS response. [#next-free-field: 6]

func (*ListenersConfigDump) Descriptor

func (*ListenersConfigDump) Descriptor() ([]byte, []int)

func (*ListenersConfigDump) GetDynamicActiveListeners

func (m *ListenersConfigDump) GetDynamicActiveListeners() []*ListenersConfigDump_DynamicListener

func (*ListenersConfigDump) GetDynamicDrainingListeners

func (m *ListenersConfigDump) GetDynamicDrainingListeners() []*ListenersConfigDump_DynamicListener

func (*ListenersConfigDump) GetDynamicWarmingListeners

func (m *ListenersConfigDump) GetDynamicWarmingListeners() []*ListenersConfigDump_DynamicListener

func (*ListenersConfigDump) GetStaticListeners

func (m *ListenersConfigDump) GetStaticListeners() []*ListenersConfigDump_StaticListener

func (*ListenersConfigDump) GetVersionInfo

func (m *ListenersConfigDump) GetVersionInfo() string

func (*ListenersConfigDump) ProtoMessage

func (*ListenersConfigDump) ProtoMessage()

func (*ListenersConfigDump) Reset

func (m *ListenersConfigDump) Reset()

func (*ListenersConfigDump) String

func (m *ListenersConfigDump) String() string

func (*ListenersConfigDump) XXX_DiscardUnknown

func (m *ListenersConfigDump) XXX_DiscardUnknown()

func (*ListenersConfigDump) XXX_Marshal

func (m *ListenersConfigDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListenersConfigDump) XXX_Merge

func (m *ListenersConfigDump) XXX_Merge(src proto.Message)

func (*ListenersConfigDump) XXX_Size

func (m *ListenersConfigDump) XXX_Size() int

func (*ListenersConfigDump) XXX_Unmarshal

func (m *ListenersConfigDump) XXX_Unmarshal(b []byte) error

type ListenersConfigDump_DynamicListener

type ListenersConfigDump_DynamicListener struct {
	// This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` field at the time
	// that the listener was loaded. In the future, discrete per-listener versions may be supported
	// by the API.
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The listener config.
	Listener *v21.Listener `protobuf:"bytes,2,opt,name=listener,proto3" json:"listener,omitempty"`
	// The timestamp when the Listener was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

Describes a dynamically loaded cluster via the LDS API.

func (*ListenersConfigDump_DynamicListener) Descriptor

func (*ListenersConfigDump_DynamicListener) Descriptor() ([]byte, []int)

func (*ListenersConfigDump_DynamicListener) GetLastUpdated

func (*ListenersConfigDump_DynamicListener) GetListener

func (*ListenersConfigDump_DynamicListener) GetVersionInfo

func (m *ListenersConfigDump_DynamicListener) GetVersionInfo() string

func (*ListenersConfigDump_DynamicListener) ProtoMessage

func (*ListenersConfigDump_DynamicListener) ProtoMessage()

func (*ListenersConfigDump_DynamicListener) Reset

func (*ListenersConfigDump_DynamicListener) String

func (*ListenersConfigDump_DynamicListener) XXX_DiscardUnknown

func (m *ListenersConfigDump_DynamicListener) XXX_DiscardUnknown()

func (*ListenersConfigDump_DynamicListener) XXX_Marshal

func (m *ListenersConfigDump_DynamicListener) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListenersConfigDump_DynamicListener) XXX_Merge

func (*ListenersConfigDump_DynamicListener) XXX_Size

func (*ListenersConfigDump_DynamicListener) XXX_Unmarshal

func (m *ListenersConfigDump_DynamicListener) XXX_Unmarshal(b []byte) error

type ListenersConfigDump_StaticListener

type ListenersConfigDump_StaticListener struct {
	// The listener config.
	Listener *v21.Listener `protobuf:"bytes,1,opt,name=listener,proto3" json:"listener,omitempty"`
	// The timestamp when the Listener was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

Describes a statically loaded listener.

func (*ListenersConfigDump_StaticListener) Descriptor

func (*ListenersConfigDump_StaticListener) Descriptor() ([]byte, []int)

func (*ListenersConfigDump_StaticListener) GetLastUpdated

func (m *ListenersConfigDump_StaticListener) GetLastUpdated() *types.Timestamp

func (*ListenersConfigDump_StaticListener) GetListener

func (*ListenersConfigDump_StaticListener) ProtoMessage

func (*ListenersConfigDump_StaticListener) ProtoMessage()

func (*ListenersConfigDump_StaticListener) Reset

func (*ListenersConfigDump_StaticListener) String

func (*ListenersConfigDump_StaticListener) XXX_DiscardUnknown

func (m *ListenersConfigDump_StaticListener) XXX_DiscardUnknown()

func (*ListenersConfigDump_StaticListener) XXX_Marshal

func (m *ListenersConfigDump_StaticListener) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListenersConfigDump_StaticListener) XXX_Merge

func (*ListenersConfigDump_StaticListener) XXX_Size

func (*ListenersConfigDump_StaticListener) XXX_Unmarshal

func (m *ListenersConfigDump_StaticListener) XXX_Unmarshal(b []byte) error

type Memory

type Memory struct {
	// The number of bytes allocated by the heap for Envoy. This is an alias for
	// `generic.current_allocated_bytes`.
	Allocated uint64 `protobuf:"varint,1,opt,name=allocated,proto3" json:"allocated,omitempty"`
	// The number of bytes reserved by the heap but not necessarily allocated. This is an alias for
	// `generic.heap_size`.
	HeapSize uint64 `protobuf:"varint,2,opt,name=heap_size,json=heapSize,proto3" json:"heap_size,omitempty"`
	// The number of bytes in free, unmapped pages in the page heap. These bytes always count towards
	// virtual memory usage, and depending on the OS, typically do not count towards physical memory
	// usage. This is an alias for `tcmalloc.pageheap_unmapped_bytes`.
	PageheapUnmapped uint64 `protobuf:"varint,3,opt,name=pageheap_unmapped,json=pageheapUnmapped,proto3" json:"pageheap_unmapped,omitempty"`
	// The number of bytes in free, mapped pages in the page heap. These bytes always count towards
	// virtual memory usage, and unless the underlying memory is swapped out by the OS, they also
	// count towards physical memory usage. This is an alias for `tcmalloc.pageheap_free_bytes`.
	PageheapFree uint64 `protobuf:"varint,4,opt,name=pageheap_free,json=pageheapFree,proto3" json:"pageheap_free,omitempty"`
	// The amount of memory used by the TCMalloc thread caches (for small objects). This is an alias
	// for `tcmalloc.current_total_thread_cache_bytes`.
	TotalThreadCache     uint64   `protobuf:"varint,5,opt,name=total_thread_cache,json=totalThreadCache,proto3" json:"total_thread_cache,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Proto representation of the internal memory consumption of an Envoy instance. These represent values extracted from an internal TCMalloc instance. For more information, see the section of the docs entitled ["Generic Tcmalloc Status"](https://gperftools.github.io/gperftools/tcmalloc.html). [#next-free-field: 6]

func (*Memory) Descriptor

func (*Memory) Descriptor() ([]byte, []int)

func (*Memory) GetAllocated

func (m *Memory) GetAllocated() uint64

func (*Memory) GetHeapSize

func (m *Memory) GetHeapSize() uint64

func (*Memory) GetPageheapFree

func (m *Memory) GetPageheapFree() uint64

func (*Memory) GetPageheapUnmapped

func (m *Memory) GetPageheapUnmapped() uint64

func (*Memory) GetTotalThreadCache

func (m *Memory) GetTotalThreadCache() uint64

func (*Memory) ProtoMessage

func (*Memory) ProtoMessage()

func (*Memory) Reset

func (m *Memory) Reset()

func (*Memory) String

func (m *Memory) String() string

func (*Memory) XXX_DiscardUnknown

func (m *Memory) XXX_DiscardUnknown()

func (*Memory) XXX_Marshal

func (m *Memory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Memory) XXX_Merge

func (m *Memory) XXX_Merge(src proto.Message)

func (*Memory) XXX_Size

func (m *Memory) XXX_Size() int

func (*Memory) XXX_Unmarshal

func (m *Memory) XXX_Unmarshal(b []byte) error

type MutexStats

type MutexStats struct {
	// The number of individual mutex contentions which have occurred since startup.
	NumContentions uint64 `protobuf:"varint,1,opt,name=num_contentions,json=numContentions,proto3" json:"num_contentions,omitempty"`
	// The length of the current contention wait cycle.
	CurrentWaitCycles uint64 `protobuf:"varint,2,opt,name=current_wait_cycles,json=currentWaitCycles,proto3" json:"current_wait_cycles,omitempty"`
	// The lifetime total of all contention wait cycles.
	LifetimeWaitCycles   uint64   `protobuf:"varint,3,opt,name=lifetime_wait_cycles,json=lifetimeWaitCycles,proto3" json:"lifetime_wait_cycles,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Proto representation of the statistics collected upon absl::Mutex contention, if Envoy is run under :option:`--enable-mutex-tracing`. For more information, see the `absl::Mutex` [docs](https://abseil.io/about/design/mutex#extra-features).

*NB*: The wait cycles below are measured by `absl::base_internal::CycleClock`, and may not correspond to core clock frequency. For more information, see the `CycleClock` [docs](https://github.com/abseil/abseil-cpp/blob/master/absl/base/internal/cycleclock.h).

func (*MutexStats) Descriptor

func (*MutexStats) Descriptor() ([]byte, []int)

func (*MutexStats) GetCurrentWaitCycles

func (m *MutexStats) GetCurrentWaitCycles() uint64

func (*MutexStats) GetLifetimeWaitCycles

func (m *MutexStats) GetLifetimeWaitCycles() uint64

func (*MutexStats) GetNumContentions

func (m *MutexStats) GetNumContentions() uint64

func (*MutexStats) ProtoMessage

func (*MutexStats) ProtoMessage()

func (*MutexStats) Reset

func (m *MutexStats) Reset()

func (*MutexStats) String

func (m *MutexStats) String() string

func (*MutexStats) XXX_DiscardUnknown

func (m *MutexStats) XXX_DiscardUnknown()

func (*MutexStats) XXX_Marshal

func (m *MutexStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MutexStats) XXX_Merge

func (m *MutexStats) XXX_Merge(src proto.Message)

func (*MutexStats) XXX_Size

func (m *MutexStats) XXX_Size() int

func (*MutexStats) XXX_Unmarshal

func (m *MutexStats) XXX_Unmarshal(b []byte) error

type RoutesConfigDump

type RoutesConfigDump struct {
	// The statically loaded route configs.
	StaticRouteConfigs []*RoutesConfigDump_StaticRouteConfig `protobuf:"bytes,2,rep,name=static_route_configs,json=staticRouteConfigs,proto3" json:"static_route_configs,omitempty"`
	// The dynamically loaded route configs.
	DynamicRouteConfigs  []*RoutesConfigDump_DynamicRouteConfig `protobuf:"bytes,3,rep,name=dynamic_route_configs,json=dynamicRouteConfigs,proto3" json:"dynamic_route_configs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                               `json:"-"`
	XXX_unrecognized     []byte                                 `json:"-"`
	XXX_sizecache        int32                                  `json:"-"`
}

Envoy's RDS implementation fills this message with all currently loaded routes, as described by their RouteConfiguration objects. Static routes configured in the bootstrap configuration are separated from those configured dynamically via RDS. Route configuration information can be used to recreate an Envoy configuration by populating all routes as static routes or by returning them in RDS responses.

func (*RoutesConfigDump) Descriptor

func (*RoutesConfigDump) Descriptor() ([]byte, []int)

func (*RoutesConfigDump) GetDynamicRouteConfigs

func (m *RoutesConfigDump) GetDynamicRouteConfigs() []*RoutesConfigDump_DynamicRouteConfig

func (*RoutesConfigDump) GetStaticRouteConfigs

func (m *RoutesConfigDump) GetStaticRouteConfigs() []*RoutesConfigDump_StaticRouteConfig

func (*RoutesConfigDump) ProtoMessage

func (*RoutesConfigDump) ProtoMessage()

func (*RoutesConfigDump) Reset

func (m *RoutesConfigDump) Reset()

func (*RoutesConfigDump) String

func (m *RoutesConfigDump) String() string

func (*RoutesConfigDump) XXX_DiscardUnknown

func (m *RoutesConfigDump) XXX_DiscardUnknown()

func (*RoutesConfigDump) XXX_Marshal

func (m *RoutesConfigDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoutesConfigDump) XXX_Merge

func (m *RoutesConfigDump) XXX_Merge(src proto.Message)

func (*RoutesConfigDump) XXX_Size

func (m *RoutesConfigDump) XXX_Size() int

func (*RoutesConfigDump) XXX_Unmarshal

func (m *RoutesConfigDump) XXX_Unmarshal(b []byte) error

type RoutesConfigDump_DynamicRouteConfig

type RoutesConfigDump_DynamicRouteConfig struct {
	// This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` field at the time that
	// the route configuration was loaded.
	VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The route config.
	RouteConfig *v21.RouteConfiguration `protobuf:"bytes,2,opt,name=route_config,json=routeConfig,proto3" json:"route_config,omitempty"`
	// The timestamp when the Route was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*RoutesConfigDump_DynamicRouteConfig) Descriptor

func (*RoutesConfigDump_DynamicRouteConfig) Descriptor() ([]byte, []int)

func (*RoutesConfigDump_DynamicRouteConfig) GetLastUpdated

func (*RoutesConfigDump_DynamicRouteConfig) GetRouteConfig

func (*RoutesConfigDump_DynamicRouteConfig) GetVersionInfo

func (m *RoutesConfigDump_DynamicRouteConfig) GetVersionInfo() string

func (*RoutesConfigDump_DynamicRouteConfig) ProtoMessage

func (*RoutesConfigDump_DynamicRouteConfig) ProtoMessage()

func (*RoutesConfigDump_DynamicRouteConfig) Reset

func (*RoutesConfigDump_DynamicRouteConfig) String

func (*RoutesConfigDump_DynamicRouteConfig) XXX_DiscardUnknown

func (m *RoutesConfigDump_DynamicRouteConfig) XXX_DiscardUnknown()

func (*RoutesConfigDump_DynamicRouteConfig) XXX_Marshal

func (m *RoutesConfigDump_DynamicRouteConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoutesConfigDump_DynamicRouteConfig) XXX_Merge

func (*RoutesConfigDump_DynamicRouteConfig) XXX_Size

func (*RoutesConfigDump_DynamicRouteConfig) XXX_Unmarshal

func (m *RoutesConfigDump_DynamicRouteConfig) XXX_Unmarshal(b []byte) error

type RoutesConfigDump_StaticRouteConfig

type RoutesConfigDump_StaticRouteConfig struct {
	// The route config.
	RouteConfig *v21.RouteConfiguration `protobuf:"bytes,1,opt,name=route_config,json=routeConfig,proto3" json:"route_config,omitempty"`
	// The timestamp when the Route was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*RoutesConfigDump_StaticRouteConfig) Descriptor

func (*RoutesConfigDump_StaticRouteConfig) Descriptor() ([]byte, []int)

func (*RoutesConfigDump_StaticRouteConfig) GetLastUpdated

func (m *RoutesConfigDump_StaticRouteConfig) GetLastUpdated() *types.Timestamp

func (*RoutesConfigDump_StaticRouteConfig) GetRouteConfig

func (*RoutesConfigDump_StaticRouteConfig) ProtoMessage

func (*RoutesConfigDump_StaticRouteConfig) ProtoMessage()

func (*RoutesConfigDump_StaticRouteConfig) Reset

func (*RoutesConfigDump_StaticRouteConfig) String

func (*RoutesConfigDump_StaticRouteConfig) XXX_DiscardUnknown

func (m *RoutesConfigDump_StaticRouteConfig) XXX_DiscardUnknown()

func (*RoutesConfigDump_StaticRouteConfig) XXX_Marshal

func (m *RoutesConfigDump_StaticRouteConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoutesConfigDump_StaticRouteConfig) XXX_Merge

func (*RoutesConfigDump_StaticRouteConfig) XXX_Size

func (*RoutesConfigDump_StaticRouteConfig) XXX_Unmarshal

func (m *RoutesConfigDump_StaticRouteConfig) XXX_Unmarshal(b []byte) error

type ScopedRoutesConfigDump

type ScopedRoutesConfigDump struct {
	// The statically loaded scoped route configs.
	InlineScopedRouteConfigs []*ScopedRoutesConfigDump_InlineScopedRouteConfigs `` /* 137-byte string literal not displayed */
	// The dynamically loaded scoped route configs.
	DynamicScopedRouteConfigs []*ScopedRoutesConfigDump_DynamicScopedRouteConfigs `` /* 140-byte string literal not displayed */
	XXX_NoUnkeyedLiteral      struct{}                                            `json:"-"`
	XXX_unrecognized          []byte                                              `json:"-"`
	XXX_sizecache             int32                                               `json:"-"`
}

Envoy's scoped RDS implementation fills this message with all currently loaded route configuration scopes (defined via ScopedRouteConfigurationsSet protos). This message lists both the scopes defined inline with the higher order object (i.e., the HttpConnectionManager) and the dynamically obtained scopes via the SRDS API.

func (*ScopedRoutesConfigDump) Descriptor

func (*ScopedRoutesConfigDump) Descriptor() ([]byte, []int)

func (*ScopedRoutesConfigDump) GetDynamicScopedRouteConfigs

func (m *ScopedRoutesConfigDump) GetDynamicScopedRouteConfigs() []*ScopedRoutesConfigDump_DynamicScopedRouteConfigs

func (*ScopedRoutesConfigDump) GetInlineScopedRouteConfigs

func (m *ScopedRoutesConfigDump) GetInlineScopedRouteConfigs() []*ScopedRoutesConfigDump_InlineScopedRouteConfigs

func (*ScopedRoutesConfigDump) ProtoMessage

func (*ScopedRoutesConfigDump) ProtoMessage()

func (*ScopedRoutesConfigDump) Reset

func (m *ScopedRoutesConfigDump) Reset()

func (*ScopedRoutesConfigDump) String

func (m *ScopedRoutesConfigDump) String() string

func (*ScopedRoutesConfigDump) XXX_DiscardUnknown

func (m *ScopedRoutesConfigDump) XXX_DiscardUnknown()

func (*ScopedRoutesConfigDump) XXX_Marshal

func (m *ScopedRoutesConfigDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ScopedRoutesConfigDump) XXX_Merge

func (m *ScopedRoutesConfigDump) XXX_Merge(src proto.Message)

func (*ScopedRoutesConfigDump) XXX_Size

func (m *ScopedRoutesConfigDump) XXX_Size() int

func (*ScopedRoutesConfigDump) XXX_Unmarshal

func (m *ScopedRoutesConfigDump) XXX_Unmarshal(b []byte) error

type ScopedRoutesConfigDump_DynamicScopedRouteConfigs

type ScopedRoutesConfigDump_DynamicScopedRouteConfigs struct {
	// The name assigned to the scoped route configurations.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// This is the per-resource version information. This version is currently taken from the
	// :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` field at the time that
	// the scoped routes configuration was loaded.
	VersionInfo string `protobuf:"bytes,2,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The scoped route configurations.
	ScopedRouteConfigs []*v21.ScopedRouteConfiguration `protobuf:"bytes,3,rep,name=scoped_route_configs,json=scopedRouteConfigs,proto3" json:"scoped_route_configs,omitempty"`
	// The timestamp when the scoped route config set was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,4,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Descriptor

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetLastUpdated

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetName

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetScopedRouteConfigs

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) GetVersionInfo

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) ProtoMessage

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) Reset

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) String

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) XXX_DiscardUnknown

func (m *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) XXX_DiscardUnknown()

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) XXX_Marshal

func (m *ScopedRoutesConfigDump_DynamicScopedRouteConfigs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) XXX_Merge

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) XXX_Size

func (*ScopedRoutesConfigDump_DynamicScopedRouteConfigs) XXX_Unmarshal

type ScopedRoutesConfigDump_InlineScopedRouteConfigs

type ScopedRoutesConfigDump_InlineScopedRouteConfigs struct {
	// The name assigned to the scoped route configurations.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The scoped route configurations.
	ScopedRouteConfigs []*v21.ScopedRouteConfiguration `protobuf:"bytes,2,rep,name=scoped_route_configs,json=scopedRouteConfigs,proto3" json:"scoped_route_configs,omitempty"`
	// The timestamp when the scoped route config set was last updated.
	LastUpdated          *types.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) Descriptor

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetLastUpdated

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetName

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) GetScopedRouteConfigs

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) ProtoMessage

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) Reset

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) String

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) XXX_DiscardUnknown

func (m *ScopedRoutesConfigDump_InlineScopedRouteConfigs) XXX_DiscardUnknown()

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) XXX_Marshal

func (m *ScopedRoutesConfigDump_InlineScopedRouteConfigs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) XXX_Merge

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) XXX_Size

func (*ScopedRoutesConfigDump_InlineScopedRouteConfigs) XXX_Unmarshal

type SecretsConfigDump

type SecretsConfigDump struct {
	// The statically loaded secrets.
	StaticSecrets []*SecretsConfigDump_StaticSecret `protobuf:"bytes,1,rep,name=static_secrets,json=staticSecrets,proto3" json:"static_secrets,omitempty"`
	// The dynamically loaded active secrets. These are secrets that are available to service
	// clusters or listeners.
	DynamicActiveSecrets []*SecretsConfigDump_DynamicSecret `protobuf:"bytes,2,rep,name=dynamic_active_secrets,json=dynamicActiveSecrets,proto3" json:"dynamic_active_secrets,omitempty"`
	// The dynamically loaded warming secrets. These are secrets that are currently undergoing
	// warming in preparation to service clusters or listeners.
	DynamicWarmingSecrets []*SecretsConfigDump_DynamicSecret `` /* 126-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{}                           `json:"-"`
	XXX_unrecognized      []byte                             `json:"-"`
	XXX_sizecache         int32                              `json:"-"`
}

Envoys SDS implementation fills this message with all secrets fetched dynamically via SDS.

func (*SecretsConfigDump) Descriptor

func (*SecretsConfigDump) Descriptor() ([]byte, []int)

func (*SecretsConfigDump) GetDynamicActiveSecrets

func (m *SecretsConfigDump) GetDynamicActiveSecrets() []*SecretsConfigDump_DynamicSecret

func (*SecretsConfigDump) GetDynamicWarmingSecrets

func (m *SecretsConfigDump) GetDynamicWarmingSecrets() []*SecretsConfigDump_DynamicSecret

func (*SecretsConfigDump) GetStaticSecrets

func (m *SecretsConfigDump) GetStaticSecrets() []*SecretsConfigDump_StaticSecret

func (*SecretsConfigDump) ProtoMessage

func (*SecretsConfigDump) ProtoMessage()

func (*SecretsConfigDump) Reset

func (m *SecretsConfigDump) Reset()

func (*SecretsConfigDump) String

func (m *SecretsConfigDump) String() string

func (*SecretsConfigDump) XXX_DiscardUnknown

func (m *SecretsConfigDump) XXX_DiscardUnknown()

func (*SecretsConfigDump) XXX_Marshal

func (m *SecretsConfigDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SecretsConfigDump) XXX_Merge

func (m *SecretsConfigDump) XXX_Merge(src proto.Message)

func (*SecretsConfigDump) XXX_Size

func (m *SecretsConfigDump) XXX_Size() int

func (*SecretsConfigDump) XXX_Unmarshal

func (m *SecretsConfigDump) XXX_Unmarshal(b []byte) error

type SecretsConfigDump_DynamicSecret

type SecretsConfigDump_DynamicSecret struct {
	// The name assigned to the secret.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// This is the per-resource version information.
	VersionInfo string `protobuf:"bytes,2,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
	// The timestamp when the secret was last updated.
	LastUpdated *types.Timestamp `protobuf:"bytes,3,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// The actual secret information.
	// Security sensitive information is redacted (replaced with "[redacted]") for
	// private keys and passwords in TLS certificates.
	Secret               *auth.Secret `protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

DynamicSecret contains secret information fetched via SDS.

func (*SecretsConfigDump_DynamicSecret) Descriptor

func (*SecretsConfigDump_DynamicSecret) Descriptor() ([]byte, []int)

func (*SecretsConfigDump_DynamicSecret) GetLastUpdated

func (m *SecretsConfigDump_DynamicSecret) GetLastUpdated() *types.Timestamp

func (*SecretsConfigDump_DynamicSecret) GetName

func (*SecretsConfigDump_DynamicSecret) GetSecret

func (*SecretsConfigDump_DynamicSecret) GetVersionInfo

func (m *SecretsConfigDump_DynamicSecret) GetVersionInfo() string

func (*SecretsConfigDump_DynamicSecret) ProtoMessage

func (*SecretsConfigDump_DynamicSecret) ProtoMessage()

func (*SecretsConfigDump_DynamicSecret) Reset

func (*SecretsConfigDump_DynamicSecret) String

func (*SecretsConfigDump_DynamicSecret) XXX_DiscardUnknown

func (m *SecretsConfigDump_DynamicSecret) XXX_DiscardUnknown()

func (*SecretsConfigDump_DynamicSecret) XXX_Marshal

func (m *SecretsConfigDump_DynamicSecret) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SecretsConfigDump_DynamicSecret) XXX_Merge

func (m *SecretsConfigDump_DynamicSecret) XXX_Merge(src proto.Message)

func (*SecretsConfigDump_DynamicSecret) XXX_Size

func (m *SecretsConfigDump_DynamicSecret) XXX_Size() int

func (*SecretsConfigDump_DynamicSecret) XXX_Unmarshal

func (m *SecretsConfigDump_DynamicSecret) XXX_Unmarshal(b []byte) error

type SecretsConfigDump_StaticSecret

type SecretsConfigDump_StaticSecret struct {
	// The name assigned to the secret.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The timestamp when the secret was last updated.
	LastUpdated *types.Timestamp `protobuf:"bytes,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	// The actual secret information.
	// Security sensitive information is redacted (replaced with "[redacted]") for
	// private keys and passwords in TLS certificates.
	Secret               *auth.Secret `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

StaticSecret specifies statically loaded secret in bootstrap.

func (*SecretsConfigDump_StaticSecret) Descriptor

func (*SecretsConfigDump_StaticSecret) Descriptor() ([]byte, []int)

func (*SecretsConfigDump_StaticSecret) GetLastUpdated

func (m *SecretsConfigDump_StaticSecret) GetLastUpdated() *types.Timestamp

func (*SecretsConfigDump_StaticSecret) GetName

func (*SecretsConfigDump_StaticSecret) GetSecret

func (m *SecretsConfigDump_StaticSecret) GetSecret() *auth.Secret

func (*SecretsConfigDump_StaticSecret) ProtoMessage

func (*SecretsConfigDump_StaticSecret) ProtoMessage()

func (*SecretsConfigDump_StaticSecret) Reset

func (m *SecretsConfigDump_StaticSecret) Reset()

func (*SecretsConfigDump_StaticSecret) String

func (*SecretsConfigDump_StaticSecret) XXX_DiscardUnknown

func (m *SecretsConfigDump_StaticSecret) XXX_DiscardUnknown()

func (*SecretsConfigDump_StaticSecret) XXX_Marshal

func (m *SecretsConfigDump_StaticSecret) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SecretsConfigDump_StaticSecret) XXX_Merge

func (m *SecretsConfigDump_StaticSecret) XXX_Merge(src proto.Message)

func (*SecretsConfigDump_StaticSecret) XXX_Size

func (m *SecretsConfigDump_StaticSecret) XXX_Size() int

func (*SecretsConfigDump_StaticSecret) XXX_Unmarshal

func (m *SecretsConfigDump_StaticSecret) XXX_Unmarshal(b []byte) error

type ServerInfo

type ServerInfo struct {
	// Server version.
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// State of the server.
	State ServerInfo_State `protobuf:"varint,2,opt,name=state,proto3,enum=envoy.admin.v2alpha.ServerInfo_State" json:"state,omitempty"`
	// Uptime since current epoch was started.
	UptimeCurrentEpoch *types.Duration `protobuf:"bytes,3,opt,name=uptime_current_epoch,json=uptimeCurrentEpoch,proto3" json:"uptime_current_epoch,omitempty"`
	// Uptime since the start of the first epoch.
	UptimeAllEpochs *types.Duration `protobuf:"bytes,4,opt,name=uptime_all_epochs,json=uptimeAllEpochs,proto3" json:"uptime_all_epochs,omitempty"`
	// Hot restart version.
	HotRestartVersion string `protobuf:"bytes,5,opt,name=hot_restart_version,json=hotRestartVersion,proto3" json:"hot_restart_version,omitempty"`
	// Command line options the server is currently running with.
	CommandLineOptions   *CommandLineOptions `protobuf:"bytes,6,opt,name=command_line_options,json=commandLineOptions,proto3" json:"command_line_options,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

Proto representation of the value returned by /server_info, containing server version/server status information. [#next-free-field: 7]

func (*ServerInfo) Descriptor

func (*ServerInfo) Descriptor() ([]byte, []int)

func (*ServerInfo) GetCommandLineOptions

func (m *ServerInfo) GetCommandLineOptions() *CommandLineOptions

func (*ServerInfo) GetHotRestartVersion

func (m *ServerInfo) GetHotRestartVersion() string

func (*ServerInfo) GetState

func (m *ServerInfo) GetState() ServerInfo_State

func (*ServerInfo) GetUptimeAllEpochs

func (m *ServerInfo) GetUptimeAllEpochs() *types.Duration

func (*ServerInfo) GetUptimeCurrentEpoch

func (m *ServerInfo) GetUptimeCurrentEpoch() *types.Duration

func (*ServerInfo) GetVersion

func (m *ServerInfo) GetVersion() string

func (*ServerInfo) ProtoMessage

func (*ServerInfo) ProtoMessage()

func (*ServerInfo) Reset

func (m *ServerInfo) Reset()

func (*ServerInfo) String

func (m *ServerInfo) String() string

func (*ServerInfo) XXX_DiscardUnknown

func (m *ServerInfo) XXX_DiscardUnknown()

func (*ServerInfo) XXX_Marshal

func (m *ServerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ServerInfo) XXX_Merge

func (m *ServerInfo) XXX_Merge(src proto.Message)

func (*ServerInfo) XXX_Size

func (m *ServerInfo) XXX_Size() int

func (*ServerInfo) XXX_Unmarshal

func (m *ServerInfo) XXX_Unmarshal(b []byte) error

type ServerInfo_State

type ServerInfo_State int32
const (
	// Server is live and serving traffic.
	ServerInfo_LIVE ServerInfo_State = 0
	// Server is draining listeners in response to external health checks failing.
	ServerInfo_DRAINING ServerInfo_State = 1
	// Server has not yet completed cluster manager initialization.
	ServerInfo_PRE_INITIALIZING ServerInfo_State = 2
	// Server is running the cluster manager initialization callbacks (e.g., RDS).
	ServerInfo_INITIALIZING ServerInfo_State = 3
)

func (ServerInfo_State) EnumDescriptor

func (ServerInfo_State) EnumDescriptor() ([]byte, []int)

func (ServerInfo_State) String

func (x ServerInfo_State) String() string

type SimpleMetric

type SimpleMetric struct {
	// Type of the metric represented.
	Type SimpleMetric_Type `protobuf:"varint,1,opt,name=type,proto3,enum=envoy.admin.v2alpha.SimpleMetric_Type" json:"type,omitempty"`
	// Current metric value.
	Value uint64 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	// Name of the metric.
	Name                 string   `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Proto representation of an Envoy Counter or Gauge value.

func (*SimpleMetric) Descriptor

func (*SimpleMetric) Descriptor() ([]byte, []int)

func (*SimpleMetric) GetName

func (m *SimpleMetric) GetName() string

func (*SimpleMetric) GetType

func (m *SimpleMetric) GetType() SimpleMetric_Type

func (*SimpleMetric) GetValue

func (m *SimpleMetric) GetValue() uint64

func (*SimpleMetric) ProtoMessage

func (*SimpleMetric) ProtoMessage()

func (*SimpleMetric) Reset

func (m *SimpleMetric) Reset()

func (*SimpleMetric) String

func (m *SimpleMetric) String() string

func (*SimpleMetric) XXX_DiscardUnknown

func (m *SimpleMetric) XXX_DiscardUnknown()

func (*SimpleMetric) XXX_Marshal

func (m *SimpleMetric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SimpleMetric) XXX_Merge

func (m *SimpleMetric) XXX_Merge(src proto.Message)

func (*SimpleMetric) XXX_Size

func (m *SimpleMetric) XXX_Size() int

func (*SimpleMetric) XXX_Unmarshal

func (m *SimpleMetric) XXX_Unmarshal(b []byte) error

type SimpleMetric_Type

type SimpleMetric_Type int32
const (
	SimpleMetric_COUNTER SimpleMetric_Type = 0
	SimpleMetric_GAUGE   SimpleMetric_Type = 1
)

func (SimpleMetric_Type) EnumDescriptor

func (SimpleMetric_Type) EnumDescriptor() ([]byte, []int)

func (SimpleMetric_Type) String

func (x SimpleMetric_Type) String() string

type SubjectAlternateName

type SubjectAlternateName struct {
	// Subject Alternate Name.
	//
	// Types that are valid to be assigned to Name:
	//	*SubjectAlternateName_Dns
	//	*SubjectAlternateName_Uri
	Name                 isSubjectAlternateName_Name `protobuf_oneof:"name"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*SubjectAlternateName) Descriptor

func (*SubjectAlternateName) Descriptor() ([]byte, []int)

func (*SubjectAlternateName) GetDns

func (m *SubjectAlternateName) GetDns() string

func (*SubjectAlternateName) GetName

func (m *SubjectAlternateName) GetName() isSubjectAlternateName_Name

func (*SubjectAlternateName) GetUri

func (m *SubjectAlternateName) GetUri() string

func (*SubjectAlternateName) ProtoMessage

func (*SubjectAlternateName) ProtoMessage()

func (*SubjectAlternateName) Reset

func (m *SubjectAlternateName) Reset()

func (*SubjectAlternateName) String

func (m *SubjectAlternateName) String() string

func (*SubjectAlternateName) XXX_DiscardUnknown

func (m *SubjectAlternateName) XXX_DiscardUnknown()

func (*SubjectAlternateName) XXX_Marshal

func (m *SubjectAlternateName) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SubjectAlternateName) XXX_Merge

func (m *SubjectAlternateName) XXX_Merge(src proto.Message)

func (*SubjectAlternateName) XXX_OneofWrappers

func (*SubjectAlternateName) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*SubjectAlternateName) XXX_Size

func (m *SubjectAlternateName) XXX_Size() int

func (*SubjectAlternateName) XXX_Unmarshal

func (m *SubjectAlternateName) XXX_Unmarshal(b []byte) error

type SubjectAlternateName_Dns

type SubjectAlternateName_Dns struct {
	Dns string `protobuf:"bytes,1,opt,name=dns,proto3,oneof"`
}

type SubjectAlternateName_Uri

type SubjectAlternateName_Uri struct {
	Uri string `protobuf:"bytes,2,opt,name=uri,proto3,oneof"`
}

type TapRequest

type TapRequest struct {
	// The opaque configuration ID used to match the configuration to a loaded extension.
	// A tap extension configures a similar opaque ID that is used to match.
	ConfigId string `protobuf:"bytes,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
	// The tap configuration to load.
	TapConfig            *v2alpha.TapConfig `protobuf:"bytes,2,opt,name=tap_config,json=tapConfig,proto3" json:"tap_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

The /tap admin request body that is used to configure an active tap session.

func (*TapRequest) Descriptor

func (*TapRequest) Descriptor() ([]byte, []int)

func (*TapRequest) GetConfigId

func (m *TapRequest) GetConfigId() string

func (*TapRequest) GetTapConfig

func (m *TapRequest) GetTapConfig() *v2alpha.TapConfig

func (*TapRequest) ProtoMessage

func (*TapRequest) ProtoMessage()

func (*TapRequest) Reset

func (m *TapRequest) Reset()

func (*TapRequest) String

func (m *TapRequest) String() string

func (*TapRequest) XXX_DiscardUnknown

func (m *TapRequest) XXX_DiscardUnknown()

func (*TapRequest) XXX_Marshal

func (m *TapRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TapRequest) XXX_Merge

func (m *TapRequest) XXX_Merge(src proto.Message)

func (*TapRequest) XXX_Size

func (m *TapRequest) XXX_Size() int

func (*TapRequest) XXX_Unmarshal

func (m *TapRequest) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL