Not a customer? Click the 'Start a free trial' link to begin a 30-day SaaS trial of our product and to join our community.
Existing Cisco AppDynamics customers should click the 'Sign In' button to authenticate to access the community
08-25-2022 05:54 AM - edited 08-26-2022 12:29 AM
Hi,
We are in a situation in which the client doesn't use Microsoft teams. Hence we need a way to integrate AppDynamics with google.
I tried through google space, created a webhook, copied the URL generated, and pasted it in under RAW URL under HTTP request template on the AppDynamics controller. Configurations are mentioned below:
Solved! Go to Solution.
01-10-2023 04:31 AM
We also need to know if this is possible..
01-23-2023 11:21 PM - edited 01-24-2023 01:14 AM
Hi Mohammed and Joel,
Sorry the late follow up here, but I verified this integration myself in cooperation with support. The problem is that Google have encoded the URL and when you add it as raw URL and have that encoded again in our controller you will have a mismatch causing authorization failure on the Google end.
Specifically in this case we have "=" encoded as "%3d" in the Google request token and as you paste this as Raw URL in a HTTP Request Template it will be encoded as "%253d" (as the encoded version of the percent sign is %25). You could say that you get "double encoding".
If you replace the encoding (%3d) at the end of the URL with "=" you will have a working integration.
Hope this helps.
03-22-2023 02:33 AM
Hi @Christoffer.Laxvik ,
This worked!
Thanks a lot for your help.
Could you also please help me with the payload part?
Currently I am using the below payload which simply prints the severity on my google space.
{
'text': '$latestEvent.severity'
}
I was wondering if we could have some payload similar to what we have for teams integration which sends the detailed events on teams
Thanking you in advance
Once again thank you for helping me out in RAW URL part
03-22-2023 05:12 AM
No worries, glad it worked!
For payload you could try;
{
"text": "${latestEvent.displayName} - ${latestEvent.eventTime} :
${latestEvent.eventMessage} ",
}
More details on predefined templating variables here: https://docs.appdynamics.com/appd/23.x/latest/en/appdynamics-essentials/alert-and-respond/actions/pr...
Thank you! Your submission has been received!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form