i am using SEARCH because i would like the equivalent of GET (idempotent) but with a request body. this is because i'd rather submit my request body as JSON instead of serializing to URL query parameters.
i'm making requests to a cloud run service, but i don't see my requests in my service logs. however, the requests are coming through a cloud load balancer, and there, i do see the requests, with statusDetails: "response_sent_by_backend"
which google says means the load balancer is not generating the response.
so, somewhere between the LB and my service, something else returns a 502, but I can't find any logs about it. anyone know how to trouble-shoot? alternatively, is there something else i can do to make GET-style requests with a JSON body?