fix: advertise correct flag to enable remote write receiver

Signed-off-by: pbudner <mail@pascalbudner.de>
This commit is contained in:
pbudner 2023-03-11 13:50:52 +01:00
parent 001ee2620e
commit 46683eadf7
1 changed files with 1 additions and 1 deletions

View File

@ -1494,7 +1494,7 @@ func (api *API) remoteWrite(w http.ResponseWriter, r *http.Request) {
if api.remoteWriteHandler != nil {
api.remoteWriteHandler.ServeHTTP(w, r)
} else {
http.Error(w, "remote write receiver needs to be enabled with --enable-feature=remote-write-receiver", http.StatusNotFound)
http.Error(w, "remote write receiver needs to be enabled with --web.enable-remote-write-receiver", http.StatusNotFound)
}
}