17 Nov 2025
04:26 PM
- last edited on
18 Nov 2025
07:44 AM
by
MaciejNeumann
timeseries { sum(cloud.gcp.apigee_googleapis_com.proxyv2.response_count),
value.A = sum(cloud.gcp.apigee_googleapis_com.proxyv2.response_count, scalar: true) },
by: { response_code },
filter: { matchesValue(env, $environment) AND
in(response_code, { "200", "201", "400", "401", "404", "429", "500", "501", "502", "503", "504" } )}
Which breaks down based on response codes . Attached image.
i would like to see the total number of 200s, 201s , 400s etc displayed as label or the count on the bar to avoid the user hovering to see the actual value.
Can you please suggest.
Solved! Go to Solution.
18 Nov 2025 06:36 PM
What if you change the visualization to pie... you will get the value for each code more visible, and the slices names in the legend.
19 Nov 2025 03:28 PM
I have managed to display the count with data mapping , not as a label though. Thanks for your suggestion