Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Jira Service Management Compass provides string processing methods to parse incoming emails in email to alert rules, automation, etc.

Jira Service Management Compass email rules allow processing these emails, extracting information from email data, assign to appropriate alert fields, and take the appropriate action (create, acknowledge, close, etc.) To extract data from incoming emails, Jira Service Management Compass provides string processing methods. The following methods are currently supported:

...

extract(regular expression): returns part of the string that matches the parenthesized section of the regular expression.
{{ message.extract(/Host: (\S+)/) }}Learn more about the extract method.

Info

Regex match operations has 10 seconds timeout limit. If it takes more than 10 seconds, it returns "null"string.

...