Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 573 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 573 Bytes

Overview

RavenPowerShell is a PowerShell client for sentry.io

Installation

Install-Module RavenPowerShell

Usage

Import-Module RavenPowerShell

$ravenClient = New-RavenClient -SentryDsn 'https://mysentrydsn'

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

AND/OR

Import-Module RavenPowerShell

$ravenClient = New-RavenClient -SentryDsn 'https://mysentrydsn'

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

$null[1000] = $true