I am trying to find a way to see if a look is part of dashboard or not.
I am mainly after the list of looks who do not happen to be a part of any dashboard and exist as individual looks.
I tried using i_looker but dint get any help.
Please advice.
Thinking about another way to do this that doesn’t rely on the past 90 days, you could flip your proposed order, since the Dashboard explore includes Look, and use Merge Results to get the list you’re after.
Base Query: List of all the Looks in your instance (replace your_host with your looker hostname)
Then you can merge the existing queries (shameless plug for Merge Monster) and either sort by Dashboard ID to see the rows where it’s null, or add a quick table calculation is_null(${dashboard.id}) and Hide No’s from Visualization on that. Should give you a list of all Looks that are not present on a Dashboard.
It sounds a little convoluted, but it only took about 1 minute to build. Note this will only work reliably if you have 5000 or less look/dashboard combinations in your instance.