Hello,
How do I create a Query for SSL on specific server?
I need :
1.Display name of Node
2. SSL cert name
3. Expiration date
4. Days till Expiration
Here is a good starting point. You may need to adjust the component name to match your component.
SELECT Caption, ErrorMessage, NodeID, ComponentName, ComponentType, ComponentAvailability, ComponentPortNumber, ComponentStatisticData FROM Orion.APM.CurrentStatistics cpINNER JOIN Orion.nodes nd on cp.NodeID = nd.NodeIDWhere ComponentName LIKE 'SSL Certificate Expiration Date Monitor' Order BY ComponentStatisticData, ErrorMessage ASC
Thanks how would i pick a server to check ?
Example:
Select Displayname from Orion.Nodes
Where ( display name = XXX ) not sure of the syntax
The syntax woudl look similar to this