mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-14 18:47:01 +02:00
* VAULT-6368 Metrics-only listener for Agent * VAULT-6368 changelog * VAULT-6368 Update config to use string instead of bool * VAULT-6368 Fix leftover code * VAULT-6368 Fix changelog * VAULT-6368 fix typo * VAULT-6368 recommended doc update * VAULT-6368 use != over !(==)
13 lines
408 B
Go
13 lines
408 B
Go
package consts
|
|
|
|
// AgentPathCacheClear is the path that the agent will use as its cache-clear
|
|
// endpoint.
|
|
const AgentPathCacheClear = "/agent/v1/cache-clear"
|
|
|
|
// AgentPathMetrics is the path the agent will use to expose its internal
|
|
// metrics.
|
|
const AgentPathMetrics = "/agent/v1/metrics"
|
|
|
|
// AgentPathQuit is the path that the agent will use to trigger stopping it.
|
|
const AgentPathQuit = "/agent/v1/quit"
|