We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prometheus as remote-write-receiver url: http://localhost:9090/api/v1/write Return success code "204 No Content"
but it will be considered as an error for (pusher, err := cortex.InstallNewPipeline)
https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/exporters/metric/cortex/example
docker run -u root -d -p 9090:9090 \ -v $PWD/prometheus.yml:/etc/prometheus/prometheus.yml \ --name prometheus \ prom/prometheus --config.file=/etc/prometheus/prometheus.yml --enable-feature=remote-write-receiver --enable-feature=exemplar-storage
fmt.Println("Encountered error: ", err.Error())
it will return: Encountered error 204 No Content
The text was updated successfully, but these errors were encountered:
to reproduce the problem: https://www.katacoda.com/va/scenarios/opentelemetry-cortex
Sorry, something went wrong.
Merge pull request #790 from vmingchen/otlp-example
a43367a
Add example that uses OTLP and the collector
Closing, stale. The cortex exporter and example were remove in https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.5.0
No branches or pull requests
Description
Prometheus as remote-write-receiver
url: http://localhost:9090/api/v1/write
Return success code "204 No Content"
but it will be considered as an error for (pusher, err := cortex.InstallNewPipeline)
Environment
Steps To Reproduce
https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/exporters/metric/cortex/example
docker run -u root -d -p 9090:9090 \ -v $PWD/prometheus.yml:/etc/prometheus/prometheus.yml \ --name prometheus \ prom/prometheus --config.file=/etc/prometheus/prometheus.yml --enable-feature=remote-write-receiver --enable-feature=exemplar-storage
Expected behavior
fmt.Println("Encountered error: ", err.Error())
it will return: Encountered error 204 No Content
The text was updated successfully, but these errors were encountered: