Click the Start a free trial link to start a 15-day SaaS trial of our product and join our community as a trial user. If you are an existing customer do not start a free trial.
AppDynamics customers and established members should click the sign in button to authenticate.
04-02-2023
09:42 AM
- last edited on
04-03-2023
10:51 AM
by
Claudia.Landiva
It's important to ensure that the severity levels of custom events are properly communicated to Incident management apps (like ServiceNow) for effective incident management.
Here is the Code Snippet to send Severity of custom events in http request.
#if($event.eventType == "CUSTOM")
#if($latestEvent.severity == "INFO")
,"severity": "0"
#elseif($latestEvent.severity =="WARN" )
,"severity": "1"
#elseif($latestEvent.severity == "ERROR" )
,"severity": "3"
#end
Note: Use the Severity Level number based on severity level defined in destination Incident Management App.
Thank you! Your submission has been received!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form