AppDynamics & ServiceNow Event Management Integration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2023 07:23 AM
Hello,
Can I integrate AppDynamics in ServiceNow only for the Event Management portion? (or) Do I have to make the full integration CMDB & Events since one cannot go with the other?
If I can integrate AppDynamics in ServiceNow only for Event Management, please share the payload information.
- Labels:
-
Discovery
-
Event Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2023 09:53 PM - edited ‎08-01-2023 09:55 PM
Hi Sathya
It Seems that using App/Connectors both CMDB and Event data will be consumed.
You can use Plain REST APis to Integrate events coming from APPD to Service Now Event Management.
Details are here
https://www.rapdev.io/blog/send-test-events-to-servicenow-event-management-with-postman
Also one sample Payload is in the above docs.
A sample Payload which i use for some basic testing
{
"source":"Postman",
"node":"App1",
"type":"application down",
"resource":"application down",
"metric_name":"Application Unavailablity",
"ci_type":"cmdb_ci_appl",
"severity":"Critical",
"description":"Application App1 down on host linuxserver2 command is aaa parameter is bbb"
}
Regards
RP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2023 12:08 AM
Thank you for your reply @Rahul Priyadars.
In my case, just I need to understand whether AppDynamics & ServiceNow Event Management Integration is possible.
If It is possible, I need the payload with the AppDynamics Field details.
For example,
{
"source":"AppDynamics",
"node":"${title}",
"type":"${appd_event_type}",
"resource":"${appdynamics_url}",
"metric_name":"${appd_event_type}",
"mesaage_key":"${event_guid}",
"severity":"Critical",
"description":"${notes}"
}
Could you please help on this.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2023 04:32 AM
U have to make the payload which AppD will POST on Service Now. You have sample payload and from this you can make the PAYLOAD for APP D data posting to Service Now.
Regards
RP