forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Get-DbaAgentAlert.ps1
110 lines (97 loc) · 3.62 KB
/
Get-DbaAgentAlert.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
FUNCTION Get-DbaAgentAlert
{
<#
.SYNOPSIS
Returns all SQL Agent alerts on a SQL Server Agent.
.DESCRIPTION
This function returns SQL Agent alerts.
.PARAMETER SqlInstance
SqlInstance name or SMO object representing the SQL Server to connect to.
This can be a collection and receive pipeline input.
.PARAMETER SqlCredential
PSCredential object to connect as. If not specified, currend Windows login will be used.
.NOTES
Author: Klaas Vandenberghe ( @PowerDBAKlaas )
Date: 2017-01-19
dbatools PowerShell module (https://dbatools.io, clemaire@gmail.com)
Copyright (C) 2016 Chrissy LeMaire
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.LINK
https://dbatools.io/Get-DbaAgentAlert
.EXAMPLE
Get-DbaAgentAlert -SqlInstance ServerA,ServerB\instanceB
Returns all SQL Agent alerts on serverA and serverB\instanceB
.EXAMPLE
'serverA','serverB\instanceB' | Get-DbaAgentAlert
Returns all SQL Agent alerts on serverA and serverB\instanceB
#>
[CmdletBinding()]
Param (
[parameter(Position = 0, Mandatory = $true, ValueFromPipeline = $True)]
[Alias("ServerInstance", "Instance", "SqlServer")]
[string[]]$SqlInstance,
[PSCredential] [System.Management.Automation.CredentialAttribute()]$SqlCredential
)
BEGIN {}
PROCESS
{
foreach ($instance in $SqlInstance)
{
try
{
Write-Verbose "Connecting to $instance"
$server = Connect-SqlServer -SqlServer $instance -SqlCredential $sqlcredential
}
catch
{
Write-Warning "Failed to connect to $instance"
continue
}
Write-Verbose "Getting Edition from $server"
Write-Verbose "$server is a $($server.Edition)"
if ( $server.Edition -like 'Express*' )
{
Write-Warning "There is no SQL Agent on $server, it's a $($server.Edition)"
continue
}
$alerts = $server.Jobserver.Alerts
if ( $alerts.count -lt 1)
{
Write-Verbose "No alerts on $server"
}
else
{
Write-Verbose "Getting SQL Agent Alerts on $server"
foreach ($alert in $alerts)
{
$LastOccurenceDate = $alert.LastOccurrenceDate
if (((Get-Date) - $LastOccurenceDate).TotalDays -gt 36500)
{
$LastOccurenceDate = $null
}
[pscustomobject]@{
ComputerName = $server.NetName
SqlInstance = $server.Name
InstanceName = $server.ServiceName
AlertName = $alert.Name
AlertID = $alert.ID
JobName = $alert.JobName
AlertType = $alert.AlertType
CategoryName = $alert.CategoryName
Severity = $alert.Severity
IsEnabled = $alert.IsEnabled
Notifications = $alert.EnumNotifications()
DelayBetweenResponses = $alert.delaybetweenresponses
LastOccurenceDate = $alert.LastOccurrenceDate
OccurrenceCount = $alert.OccurrenceCount
}
}
}
}
}
END {}
}