Fixed
Details
Assignee
Benjamin ReedBenjamin ReedReporter
David SchlenkDavid SchlenkLabels
Components
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Benjamin Reed
Benjamin ReedReporter
David Schlenk
David SchlenkLabels
Components
Fix versions
Affects versions
Priority
PagerDuty
PagerDuty
PagerDuty
Created March 5, 2015 at 4:22 PM
Updated April 4, 2015 at 2:21 AM
Resolved April 3, 2015 at 10:26 PM
In AbstractEventUtil, there's a bit of code that checks for whitespace in a potential replacement parameter. Unfortunately, the regex used does not enable the DOTALL flag, so if you've got something like a Cisco syslog message that often contains '%' signs in them it'll find something like
as a potential param. Clearly this isn't meant to be a parameter. Changing the regex to DOTALL mode seems to fix this.