Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,637,749
Community Members
 
Community Events
196
Community Groups

OEC (Windows Service) action with PowerShell - how do I see (grab) the alert parameters or payload?

Can someone provide an example of the OEC json configuration and the powershell method to capture the globalargs passed?

1 answer

0 votes
Connor Eyles
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 26, 2021

Hi @tolkien_leung 

Here are some instructions on how to handle OEC payload in Powershell:

The environment this was tested in is Windows 2012 and above… Powershell 3 and above.

Starting at linerps 1 of your PowerShell script you should define the parameters that PowerShell is expected to receive from OEC, these are payload, apiKey, opsgenieUrl, and logLevel.

param([string]$payload,
[string]$apiKey,
[string]$opsgenieUrl,
[string]$logLevel)

Once the parameters have been defined you need to convert the payload from JSON to a Powershell object.

$payloadPsObj = $payload | ConvertFrom-Json

Now you can call your data like this, to get the payload data you can use $payloadPsObj.<Namespace or array index>, for example, the below will get you the alertId from the payload:

$alertDetails = $payloadPsObj.alert
$alertId = $alertDetails.alertId

echo $alertId

The full final script should look like this:

param([string]$payload,
[string]$apiKey,
[string]$opsgenieUrl,
[string]$logLevel)

$payloadPsObj = $payload | ConvertFrom-Json

$alertDetails = $payloadPsObj.alert
$alertId = $alertDetails.alertId

echo $alertId

Thanks,

Connor

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events