Hi, i am trying to create a bar graph using data from a log line
Here are the sample log lines
[22/Sep/2023:10:21:21 +0530] | 200 | 1 ms | 2 B | 172.31.0.88 | - | - | - | "GET /3dnotification/healthcheck HTTP/1.1"
[22/Sep/2023:10:21:12 +0530] | 404 | 1 ms | 807 B | 172.31.0.88 | - | - | - | "GET /3dcomment/monitoring/healthcheck HTTP/1.1"
[22/Sep/2023:10:21:15 +0530] | 200 | 2 ms | 35 B | 172.31.0.88 | - | - | - | "GET /3dspace/servlet/fcs/ping HTTP/1.1"
I have used pattern operation to parse the logs as following
I want to create a stacked bar graph having only the time on x axis, sum of bytes on y axis, and service name to be vertically stacked based on the color. i mean different colors for different services, representing the sum of bytes transferred by each service at that moment of time. on the x axis i am able to select the datetime as parsed by pattern
but i am not able to set the sum of bytes on y axis. i am completely new to grafana. how can i create a graph similar to this one