I want to filter requests on a google http loadbalancer by hostname. The http loadbalancer produces stackdriver logs that can be searched. I'd imagine that I can search for the start of httpRequest.requestUrl like this:
resource.type="http_load_balancer"
httpRequest.requestUrl=starts_with("https://example.com")
I assumed this would work after reading https://cloud.google.com/monitoring/api/v3/filters . Unfortunately this returns Invalid request: Non-Global functions are currently unsupported
I don't mind if I have to perform separate searches for http and https.