2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2019-02-21 22:53:34 +00:00
|
|
|
package consts
|
|
|
|
|
|
|
|
// AgentPathCacheClear is the path that the agent will use as its cache-clear
|
|
|
|
// endpoint.
|
|
|
|
const AgentPathCacheClear = "/agent/v1/cache-clear"
|
2022-02-18 01:10:26 +00:00
|
|
|
|
2022-11-25 21:00:56 +00:00
|
|
|
// AgentPathMetrics is the path the agent will use to expose its internal
|
2022-02-18 01:10:26 +00:00
|
|
|
// metrics.
|
|
|
|
const AgentPathMetrics = "/agent/v1/metrics"
|
2022-02-25 10:29:05 +00:00
|
|
|
|
|
|
|
// AgentPathQuit is the path that the agent will use to trigger stopping it.
|
|
|
|
const AgentPathQuit = "/agent/v1/quit"
|