Prometheus remote write to cortex returns 405 #4191
Answered
by
santoshpatil-pix
santoshpatil-pix
asked this question in
Q&A
|
I have just recently adopted cortex so apologies if the question comes across as a very basic one. I have deployed the cortex helm chart (https://github.com/cortexproject/cortex-helm-chart) to our EKS cluster with some changes to the values file. To summarise,
Am I missing something here? I would be really grateful If someone would provide some pointers on how to proceed from here. Thanks. |
Answered by
santoshpatil-pix
May 18, 2021
Replies: 1 comment 1 reply
|
I figured out that the issue was caused by using |
1 reply
Answer selected by
pracucci
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I figured out that the issue was caused by using
httpURL instead ofhttps. As a result nginx was converting the POST request to a GET request and was hence returning 405. Usinghttpsin the remote write URL fixed it for me. Apologies for the false alarm