I have two queries: both have similar results. I just want to draw both on one time chart in azure log analytics.
customEvents | where name startswith "USER_LOGIN" | extend responseTime_in_sec = todouble(customMeasurements.responseTime)/1000 | summarize avg(responseTime_in_sec) by responseTime_in_sec, bin(timestamp, 1h) | render timechart
customEvents | where name startswith "DEPENDENT_SERVICE" | extend responseTime_in_sec = todouble(customMeasurements.responseTime)/1000 | summarize avg(responseTime_in_sec) by responseTime_in_sec, bin(timestamp, 1h) | render timechart
customEvents | where name startswith "DEPENDENT_SERVICE" or name startswith "USER_LOGIN" | extend responseTime_in_sec = todouble(customMeasurements.responseTime)/1000 | summarize avg(responseTime_in_sec) by name, responseTime_in_sec, bin(timestamp, 1h) | render timechart
– silent