Home > Net >  Is there any way to fetch the data from new relic and send it to API Gateway?
Is there any way to fetch the data from new relic and send it to API Gateway?

Time:10-19

Suppose some issues found in new relic. I want to create a JIRA ticket by calling lambda function through API Gateway. So is there any way to call API Gateway from new relic app?

CodePudding user response:

New Relic can be integrated with AWS EventBridge using Webhooks. So if something happens an event is triggered in EventBridge and from that point on the sky is the limit. You could simply trigger a Lambda with that event and then process the issue from there.

https://newrelic.com/blog/nerdlog/new-relic-connect-aws-event-bridge

  • Related