I am not sure if this is really possible at this point of time , but I am here looking for ideas on how to solve an issue which I face on a daily basis.
Lets say I have a dashboard which gives me information about the hosts and sourcetypes for those hosts which aren't sending any data for the past 24 hours. I am using table module to do that. Now if I have 40 hosts having an issue I try to troubleshoot them. What I am trying to add to the dashboard is to be able to keep a note of which server we already troubleshooted. Is it possible to have a text box/or a radio button with 3 options like "solved" "checked" "working" . I am trying to do this so that other team members too can know whats the progress on that server.
Any suggestions would be helpful.
Adding sideview tag as the dashboard is in Sideview.
Hi theouhuios,
one thing I often use with costumers, are lookup tables containing some additional information like in error
, Ops are checking
or what ever you want and use this as auto lookup. You also can use the Lookup editor App to edit your lookup on the fly.
hope this helps to get you started ...
cheers, MuS
Hi theouhuios,
one thing I often use with costumers, are lookup tables containing some additional information like in error
, Ops are checking
or what ever you want and use this as auto lookup. You also can use the Lookup editor App to edit your lookup on the fly.
hope this helps to get you started ...
cheers, MuS
@Mus
I was able to get it working. Thanks for the idea. Now the only concern is that I have to make sure that the lookup is not overwritten.
Sorry missed one question: I don't know if you can do this from a dashboard directly, maybe using some fancy js hack? Usually I just open the lookup editor and write stuff in there.
It's certainly possible with a little JS magic in the background. Roughly like this:
SearchManager
that roughly does this | inputlookup notes | append [stats count | eval note="your note goes here" | eval event_id = "the id of the event you clicked" | table event_id note] | outputlookup notes
in the background"search:done"
IIRC) you refresh the main table to include the new note or exclude the host that now has a note or whateverThanks for the idea martin. I will try it. The issue is I am not good with the JS. 🙂 Will poke around and see if I can do something like this. Will be amazing to be able to do that.
Thanks for taking the time MuS. I have some questions though. How would I be able to edit it in the dashboard? Lookup editor edits only that file right? Do I need to place this dashboard in the Lookup App to be able to use that functionality. Sorry about the questions. Kinda confused on how to make it work on the fly for users.
And I need to maintain a lookup file for each host and then integrate it with the dashboard so that a user can change right? this part is simple. I am just confused on how to make the lookup editing part to the user in the dashboard itself.
The easiest thing to do, is clone the lookup editor app into a new app and create your dashboards in this new app. Also, setup the auto lookup in this app.
The lookup editor can edit any lookup file the user has permission, I'm not sure if you can limit it only to use lookups in the current app context .....
As I said, create a new app and play around it this app, this way you would only break stuff in this app 😉