Hi,
I’m integrating AWS GuardDuty with Jira Service Management. My Lambda function maps GuardDuty severity (1–8) to Jira priority codes (P1–P4) and sends an SNS message with a payload that includes a “Priority” field. However, Jira doesn’t seem to pick up or display this priority. Everything else works fine, creates alerts with description etc.
Here’s my simplified mapping function:
function mapSeverityToPriority(severity: number): string {
if (severity < 4) return "P4";
else if (severity < 6) return "P3";
else if (severity < 8) return "P2";
else return "P1";
}
Payload: {
"Priority": jiraPriority,
// ...other fields...
}
Could it be a configuration issue on the Jira side, or is there something else I’m missing in the payload format?
Thanks in advance for your help!
Welcome to the community.
What are you trying to create in the Jira side a work item (issue) or an alert?
An alert in jira service management.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.