Hi,
Is there a way to find out which processes use particular dll and eventually also its version (.NET)?
Kind regards,
Martin Kulov
Solved! Go to Solution.
Sure it is! Unfortunately it cannot be seen in the UI, but when you use the Monitored entities API and look up your process group instances, you can see relations to other entities of SOFTWARE_COMPONENT, which represent the loaded library (.net, java, ...).
For example use this simple entitySelector to query software list of components of a process group instance - just replace <entityId> with the ID of your process group instance:
type(SOFTWARE_COMPONENT),fromRelationships.isSoftwareComponentOfPgi(entityId(<entityid>))