Splunk AppDynamics

Escaping control codes in HTTP Request Templates

Douglas_McGibbo
New Member

Hi.

I'm trying to pass Appdynamics error data to Opsgenie using the HTTP Request Templates to format it in JSON.

My simplest template is :

{
"event_name": "${latestEvent.displayName}",
"event_Message":"${latestEvent.eventMessage}",
}

But this is erroring at Opsgenie because there's a Line Feed in the event message :

The content is not a valid json. Reason: Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included in string value at [Source: (String)"{ "event_name": "Business Transaction Error", "event_Message":"

Is there an easy way to escape/replace this in the template?

Thanks

Doug McGibbon

Labels (3)
0 Karma

iamryan
Community Manager
Community Manager

Hi @Douglas.McGibbon,

An existing Community post, Escaped double quotes in HTTP template links to this reference guide: https://velocity.apache.org/tools/2.0/apidocs/org/apache/velocity/tools/generic/EscapeTool.html

Please do let me know if you find the post or the reference guide helpful. Since this is a peer-to-peer community, if you happen to find a solution, please come back and share it as a reply to your post. This helps keep the knowledge sharing going forward.

0 Karma

Douglas_McGibbo
New Member

Yes, I found that post and the guide, but it's not at all clear. And replacing one character with another is much easier than trying to get rid of a control character.  I've already spent several hours trying to do this in various ways, to no avail.

0 Karma

Morelz
Builder

Hi There

We have done the following in one of our templates, to ensure that the Quotes and line breaks etc. are replaced by other characters. We used *. You can modify and replace it with whatever you require.

You can then add as many processing steps as needed at the start of the template, and then use the final processed message that is left over into your template.

#set ($em = ${latestEvent.eventMessage.replace('"','*')})
#set ( $em = $em.replace('<b>', '*') )
#set ( $em = $em.replace('</b>', '*') )
#set ( $em = $em.replace('<br>', ' ') )


{
"event_name": "${latestEvent.displayName}",
"event_Message":"$em",
}

Otherwise you can remove the values completed as below

#set ($em = ${latestEvent.eventMessage.replace('"','')})
#set ( $em = $em.replace('<b>', '') )
#set ( $em = $em.replace('</b>', '') )
#set ( $em = $em.replace('<br>', '') )


{
"event_name": "${latestEvent.displayName}",
"event_Message":"$em",
}

Get Updates on the Splunk Community!

Fueling your curiosity with new Splunk ILT and eLearning courses

At Splunk Education, we’re driven by curiosity—both ours and yours! That’s why we’re committed to delivering ...

Splunk AI Assistant for SPL 1.1.0 | Now Personalized to Your Environment for Greater ...

Splunk AI Assistant for SPL has transformed how users interact with Splunk, making it easier than ever to ...

Unleash Unified Security and Observability with Splunk Cloud Platform

     Now Available on Microsoft AzureOn Demand Now Step boldly into the AI revolution with enhanced security ...