So, I want to create a dashboard for a particular team in my company and they want to add notes to dashboard for everyone on their team to view. Is that possible, and if yes, can you refer me to something?
Thank you!
There is no out-of-the-box component that gives you this functionality. With classic dashboards you can add your own javascript code that will take care of storing the "notes" into kvstore so that it can be shared and updated but it is something you'd need to write yourself. And there are several possible issues with that (including of course permissions management, concurrent access and so on). So it's not that straightforward.
Hi @sumarri ,
Splunk isn't a database wre you can manually write notes.
The only way it to add to your dashboard a link to a lookup to open using Splunk App for Lookup Editor,
or use a workaround that I described in one past answer: https://community.splunk.com/t5/Dashboards-Visualizations/Dynamically-Update-a-lookup-file-on-click-...
Ciao.
Giuseppe
So, they want to add notes and have them on live for them to view.
So on the dashboard, I will have tables and a notes section and they want to add note to the table/section on the dashboard view. Is that possible???
I can make a lookup maybe or something, but I think I did not communicate what I wanted.
Hi @sumarri ,
no, as @PickleRick said, it isn't possible.
My solution permits to add a note to a record in a lookup, but it isn't your requirement.
Ciao and happy splunking
Giuseppe
P.S.: Karma Points are appreciated by all the contributors 😉
There is no out-of-the-box component that gives you this functionality. With classic dashboards you can add your own javascript code that will take care of storing the "notes" into kvstore so that it can be shared and updated but it is something you'd need to write yourself. And there are several possible issues with that (including of course permissions management, concurrent access and so on). So it's not that straightforward.
So there is no way I cold do it on Dashboard Studio... but I can do it on Classic because I can edit the java script?
Thank you so much for the idea!
Yes. Dashboard Studio doesn't allow as much customizations as classic dashboards - no custom visualizations, no custom code. But still in classic you'd have to implement it all by yourself (but hey, that's how half of Enterprise Security is written ;-))