Skip to content

Commit

Permalink
influx: fix endpoint path to match existing proxy (#10505)
Browse files Browse the repository at this point in the history
Signed-off-by: alexgreenbank <[email protected]>
  • Loading branch information
alexgreenbank authored Jan 23, 2025
1 parent 098ed84 commit bc12a33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/sources/mimir/configure/about-versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ The following features are currently experimental:
- `-ruler-storage.cache.rule-group-enabled`
- Distributor
- Influx ingestion
- `/api/v1/influx/push` endpoint
- `/api/v1/push/influx/write` endpoint
- `-distributor.influx-endpoint-enabled`
- `-distributor.max-influx-request-size`
- Metrics relabeling
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ func (a *API) RegisterRuntimeConfig(runtimeConfigHandler http.HandlerFunc, userL

const PrometheusPushEndpoint = "/api/v1/push"
const OTLPPushEndpoint = "/otlp/v1/metrics"
const InfluxPushEndpoint = "/api/v1/influx/push"
const InfluxPushEndpoint = "/api/v1/push/influx/write"

// RegisterDistributor registers the endpoints associated with the distributor.
func (a *API) RegisterDistributor(d *distributor.Distributor, pushConfig distributor.Config, reg prometheus.Registerer, limits *validation.Overrides) {
Expand Down

0 comments on commit bc12a33

Please sign in to comment.