I'm trying to create a different dashboard to the default. I understand that you can create saved searches and then simply add them to the dashboard but I'm looking at the module called:
All indexed data that is configured in prefs.conf:
The following line seems to configure most of what appears in that module/pane:
dashboard_customList_All_indexed_data_searches = ['| metadata type=sources count=15 order=total | eval termkey="source" | eval term=source | rename source AS name totalCount as rowCount | fields name,term,termkey,rowCount,fullCount,tags | sort rowCount d','| metadata type=sourcetypes count=15 order=total | eval termkey="sourcetype" | eval term=sourcetype | rename sourcetype AS name totalCount as rowCount | fields name,term,termkey,rowCount,fullCount,tags | sort rowCount d','| metadata type=hosts count=15 order=total | eval termkey="host" | eval term=host | rename host AS name totalCount AS rowCount | fields name,term,termkey,rowCount,fullCount,tags | sort rowCount d']
What I don't get however is how this list of files is actually configured. The value of dashboard_customList_All_indexed_data_searches doesn't appear to be an actual search request so I wouldn't know where to start to change it...
Basically, I would like to create a dashboard for a group of users so they only see THEIR data. I understand the functionality of granular access control but this dashboard is more for presentation purposes than confidentiality: I want users to see a list of files from their area and that's it.
Any suggestions?