I would like to compare specific response status stats vertically and not horizontally so that the values line up and do not rely on the appendcols command.
My search:
| multisearch [search NOT status IN ( 200, 203, 204, 302, 201, 202, 206, 301, 304, 404, 500, 400, 401, 403, 502, 504 ) earliest=-4h@m latest=@m | eval date="Today"] [search NOT status IN (200, 203, 204, 302, 201, 202, 206, 301, 304, 404, 500, 400, 401, 403, 502, 504 ) earliest=-4h@m-1w latest=@m-1w | eval date="LastWeek"] | timechart span=1d count by status
Example display of current results
Desired results
Status
Today
LastWeek
412
1
0
413
1
0
415
0
1
418
0
2
422
6
7
... View more