Skip to content
 
 

Latest commit

 

History

7 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Overview

SentryPowershell is a PowerShell client for sentry.io

Installation

Install-Module SentryPowershell

Usage

Import-Module SentryPowershell

$sentry = New-Sentry -SentryDsn 'https://mysentrydsn'

try {
    $null[5] = 0
} catch {
    $sentry.CaptureException($_)
}

AND/OR

Import-Module SentryPowershell

$client = New-Sentry -SentryDsn 'https://mysentrydsn'

trap {
    $client.CaptureException($_)
    break
}

$null[1000] = $true

About

PowerShell client for sentry.io

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages