2020-01-28 23:50:41 +00:00
|
|
|
package logging
|
|
|
|
|
|
|
|
const (
|
2020-04-10 18:06:08 +00:00
|
|
|
ACL string = "acl"
|
|
|
|
Agent string = "agent"
|
|
|
|
AntiEntropy string = "anti_entropy"
|
|
|
|
AutoEncrypt string = "auto_encrypt"
|
2020-06-10 20:47:35 +00:00
|
|
|
AutoConfig string = "auto_config"
|
2020-04-10 18:06:08 +00:00
|
|
|
Autopilot string = "autopilot"
|
|
|
|
AWS string = "aws"
|
|
|
|
Azure string = "azure"
|
|
|
|
CA string = "ca"
|
2020-06-12 02:05:07 +00:00
|
|
|
Catalog string = "catalog"
|
2020-04-10 18:06:08 +00:00
|
|
|
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"
|
2021-04-29 18:54:05 +00:00
|
|
|
IngressGateway string = "ingress_gateway"
|
2020-04-10 18:06:08 +00:00
|
|
|
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"
|
2020-04-30 20:12:17 +00:00
|
|
|
NetworkAreas string = "network_areas"
|
2020-04-10 18:06:08 +00:00
|
|
|
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"
|
2021-07-22 18:58:08 +00:00
|
|
|
Partition string = "partition"
|
peering: initial sync (#12842)
- 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>
2022-04-21 22:34:40 +00:00
|
|
|
Peering string = "peering"
|
2022-07-22 19:05:08 +00:00
|
|
|
PeeringMetrics string = "peering_metrics"
|
2020-04-10 18:06:08 +00:00
|
|
|
TerminatingGateway string = "terminating_gateway"
|
|
|
|
TLSUtil string = "tlsutil"
|
|
|
|
Transaction string = "txn"
|
2020-09-02 15:24:17 +00:00
|
|
|
UsageMetrics string = "usage_metrics"
|
2020-09-23 11:37:33 +00:00
|
|
|
UIServer string = "ui_server"
|
2020-09-24 10:13:14 +00:00
|
|
|
UIMetricsProxy string = "ui_metrics_proxy"
|
2020-04-10 18:06:08 +00:00
|
|
|
WAN string = "wan"
|
|
|
|
Watch string = "watch"
|
2021-02-02 19:26:38 +00:00
|
|
|
XDS string = "xds"
|
2020-08-25 17:34:49 +00:00
|
|
|
Vault string = "vault"
|
2022-05-25 20:20:17 +00:00
|
|
|
Health string = "health"
|
2020-01-28 23:50:41 +00:00
|
|
|
)
|