Prometheus remote write to cortex returns 405 #4191
-
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. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I figured out that the issue was caused by using |
Beta Was this translation helpful? Give feedback.
I figured out that the issue was caused by using
http
URL instead ofhttps
. As a result nginx was converting the POST request to a GET request and was hence returning 405. Usinghttps
in the remote write URL fixed it for me. Apologies for the false alarm