I want to do just that, create a report that will show all the nodes that are assigned to a specific application template. Any help would be great, I just cannot figure it out.
Thanks,
Alex
If you just need to spot check you can see it from SAM setting and looking at the 'assigned to' field, which can display all the nodes.
A quick query can display them as well (just replace with the desired application name).
SELECT NodeName, N.Applications.DisplayNameFROM Orion.Nodes NWHERE N.Applications.DisplayName like '%Application%'
Thanks, I will try the query. I'm aware of the display in SAM settings, but was hoping for a way to export the list to an excel sheet or something.
If you remove the WHERE and GROUP BY the application name in the query above you basically get what you want I think.
Technically to reference the template you're probably joining to another table, but it'll report the same unless people are messing with names a bunch.
If you've not used queries much you can export them to excel
You can modify the above query and it will show all applications
SELECT NodeName, N.Applications.DisplayNameFROM Orion.Nodes N--WHERE N.Applications.DisplayName like '%Application%'Where N.Applications.DisplayName IS NOT NULLOrder by DisplayName ASC