Need a little help. Made a custom application monitor to monitor keep alive pages on our web servers. I am setting up a alert and need some help creating a custom variable to pull the URL from the HTTP component in this monitor. Thanks everyone
How about an SWQL variable?
${N=SWQL;M=select cts.value from Orion.APM.ComponentTemplateSetting cts
inner join orion.APM.ComponentTemplate ct on cts.componenttemplateid=ct.id
inner join orion.APM.ApplicationTemplate at on ct.applicationtemplateid=at.applicationtemplateid
where at.name ='<insert application template name>' and cts.key='url'
}