I have an HTTP template that does not have some of the predefined variable completed when posts happen. Here is an example. Many of them work fine but others do not. Any advice or guides on how to do this? I have exhausted the documentation on this. One of them is {latestEvent.deepLink} which comes back as null all the time. In addition {latestEvent.node.name} seems to never be completed either. Thanks. Template (actual obfuscated data below it as integrated) { "incident_key": "${latestEvent.node.name} - ${latestEvent.application.name}", "description": "${latestEvent.displayName} on ${latestEvent.application.name}", "client": "AppDynamics", "client_url": "${controllerUrl}", "details": { "Event Name": "${latestEvent.displayName}", "Summary": "${latestEvent.summaryMessage}", "Event ID": ${latestEvent.id}, "GUID": "${latestEvent.guid}", "Event Time": "${latestEvent.eventTime}", "Event Type": "${latestEvent.eventType}", "Event Type Key": "${latestEvent.eventTypeKey}", "Application Name": "${latestEvent.application.name}", "Node Name": "${latestEvent.node.name}", "Message": "${latestEvent.eventMessage}", "Severity": "${latestEvent.severity}" }, "contexts":[ { "type": "image", "src": "${latestEvent.severityImage.deepLink}", "alt": "${latestEvent.severity}" }, { "type": "link", "href": "${latestEvent.deepLink}", "text": "View this transaction in AppDynamics" } ] } Here is an actual integrated sample of an actual POST { "incident_key": "${latestEvent.node.name} - xxx Company", "description": "Health Rule State changed from Critical to Warning on xxx Company", "client": "AppDynamics", "client_url": "https://abcd.saas.appdynamics.com", "details": { "Event Name": "Health Rule State changed from Critical to Warning", "Summary": "AppDynamics has detected a problem with Business Transaction abc downgraded in severity and is now <b>warning</b>.", "Event ID": "3399999093", "GUID": "4c2cb73f-1791-461d-9848-x78fa10d17a7", "Event Time": "Fri Sep 06 15:33:55 PDT 2019", "Event Type": "POLICY_DOWNGRADED", "Event Type Key": "Health Rule", "Application Name": "xxx Company", "Node Name": "${latestEvent.node.name}", "Message": "AppDynamics has detected a problem with Business Transaction abc downgraded in severity and is now <b>warning</b>.<br>All of the following conditions were found to be violating<br>For Application <b>xxx Company</b>:<br>1) Errors<br><b>Errors per Minute's</b> value <b>21.00</b> was <b>greater than</b> baseline-based calculated value <b>8.00</b> by <b>2.00</b> standard deviation(s) <b>4.94</b>. Baseline used here is '<b>Weekly Trend - Last 3 months</b>' for the last <b>9</b> minutes<br>2) Calls<br><b>Errors per Minute's</b> value <b>21.00</b> was <b>greater than</b> the threshold <b>1.00</b> for the last <b>9</b> minutes<br>3) Error Percentage<br><b>Error Percentage's</b> value <b>23.00</b> was <b>greater than</b> the threshold <b>10.00</b> for the last <b>9</b> minutes<br>", "Severity": "WARN" }, "contexts": [ { "type": "image", "src": "https://abcd.saas.appdynamics.com/images/PI_WARNING_small.png", "alt": "WARN" }, { "type": "link", "src": null, "alt": null } ] }
... View more