809344a6f5
- Add endpoints related to peering: read, list, generate token, initiate peering - Update node/service/check table indexing to account for peers - Foundational changes for pushing service updates to a peer - Plumb peer name through Health.ServiceNodes path see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679, ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663, ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634, ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555 Co-authored-by: R.B. Boyer <rb@hashicorp.com> Co-authored-by: freddygv <freddy@hashicorp.com> Co-authored-by: Chris S. Kim <ckim@hashicorp.com> Co-authored-by: Evan Culver <eculver@hashicorp.com> Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
65 lines
2.4 KiB
Go
65 lines
2.4 KiB
Go
package logging
|
|
|
|
const (
|
|
ACL string = "acl"
|
|
Agent string = "agent"
|
|
AntiEntropy string = "anti_entropy"
|
|
AutoEncrypt string = "auto_encrypt"
|
|
AutoConfig string = "auto_config"
|
|
Autopilot string = "autopilot"
|
|
AWS string = "aws"
|
|
Azure string = "azure"
|
|
CA string = "ca"
|
|
Catalog string = "catalog"
|
|
CentralConfig string = "central_config"
|
|
ConfigEntry string = "config_entry"
|
|
Connect string = "connect"
|
|
Consul string = "consul"
|
|
ConsulClient string = "client"
|
|
ConsulServer string = "server"
|
|
Coordinate string = "coordinate"
|
|
DNS string = "dns"
|
|
Envoy string = "envoy"
|
|
FederationState string = "federation_state"
|
|
FSM string = "fsm"
|
|
GatewayLocator string = "gateway_locator"
|
|
HTTP string = "http"
|
|
IngressGateway string = "ingress_gateway"
|
|
Intentions string = "intentions"
|
|
Internal string = "internal"
|
|
KV string = "kvs"
|
|
LAN string = "lan"
|
|
Leader string = "leader"
|
|
Legacy string = "legacy"
|
|
License string = "license"
|
|
Manager string = "manager"
|
|
Memberlist string = "memberlist"
|
|
MeshGateway string = "mesh_gateway"
|
|
Namespace string = "namespace"
|
|
NetworkAreas string = "network_areas"
|
|
Operator string = "operator"
|
|
PreparedQuery string = "prepared_query"
|
|
Proxy string = "proxy"
|
|
ProxyConfig string = "proxycfg"
|
|
Raft string = "raft"
|
|
Replication string = "replication"
|
|
Router string = "router"
|
|
RPC string = "rpc"
|
|
Serf string = "serf"
|
|
Session string = "session"
|
|
Sentinel string = "sentinel"
|
|
Snapshot string = "snapshot"
|
|
Partition string = "partition"
|
|
Peering string = "peering"
|
|
TerminatingGateway string = "terminating_gateway"
|
|
TLSUtil string = "tlsutil"
|
|
Transaction string = "txn"
|
|
UsageMetrics string = "usage_metrics"
|
|
UIServer string = "ui_server"
|
|
UIMetricsProxy string = "ui_metrics_proxy"
|
|
WAN string = "wan"
|
|
Watch string = "watch"
|
|
XDS string = "xds"
|
|
Vault string = "vault"
|
|
)
|