Dahsboard pannel with log entires
I would like to add a panel with the log messages related to all the other stuff I have on the dashboard, but i am unable to find a way to create a simple table with messages.
Ideally I'd like something like
| Date/Time | type | message
| 1/1/19 01:23 | info | app started
thanks
-
Official comment
Hi Justin,
Sorry for the delay, hope this is still useful. Dashboard panels can only be made from queries that use aggregate operators.
Below would I think do what you require:// your query scope goes here
// presuming too you parsed out type and message| formatDate(_messagetime, "MM/dd/yy HH:mm") as %"date/time"
| count %"date/time", type, message
| fields - _count
Note that if you really meant to show the entire message in that column, add this code below scoping portion:
| _raw as message
Regards,Matt
Comment actions
Please sign in to leave a comment.
Comments
1 comment