forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-DbaAgentLog.ps1
108 lines (90 loc) · 4.67 KB
/
Get-DbaAgentLog.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
function Get-DbaAgentLog {
<#
.SYNOPSIS
Gets the "SQL Agent Error Log" of an instance
.DESCRIPTION
Gets the "SQL Agent Error Log" of an instance. Returns all 10 error logs by default.
.PARAMETER SqlInstance
The SQL Server instance, or instances.
.PARAMETER SqlCredential
Allows you to login to servers using SQL Logins as opposed to Windows Auth/Integrated/Trusted.
.PARAMETER LogNumber
An Int32 value that specifies the index number of the error log required. Error logs are listed 0 through 9 where 0 is the current error log and 9 is the oldest.
.PARAMETER EnableException
By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.
.NOTES
Tags: Logging
Website: https://dbatools.io
Copyright: (C) Chrissy LeMaire, clemaire@gmail.com
License: GNU GPL v3 https://opensource.org/licenses/GPL-3.0
.LINK
https://dbatools.io/Get-DbaAgentLog
.EXAMPLE
Get-DbaAgentLog -SqlInstance sql01\sharepoint
Returns the entire error log for the SQL Agent on sql01\sharepoint
.EXAMPLE
Get-DbaAgentLog -SqlInstance sql01\sharepoint -LogNumber 3, 6
Returns log numbers 3 and 6 for the SQL Agent on sql01\sharepoint
.EXAMPLE
$servers = "sql2014","sql2016", "sqlcluster\sharepoint"
$servers | Get-DbaAgentLog -LogNumber 0
Returns the most recent SQL Agent error logs for "sql2014","sql2016" and "sqlcluster\sharepoint"
#>
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline = $true)]
[Alias("ServerInstance", "SqlServer")]
[DbaInstanceParameter[]]$SqlInstance,
[Alias("Credential")]
[PSCredential]
$SqlCredential,
[ValidateRange(0, 9)]
[int[]]$LogNumber,
[switch][Alias('Silent')]$EnableException
)
process {
foreach ($instance in $SqlInstance) {
Write-Message -Level Verbose -Message "Attempting to connect to $instance"
try {
$server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $SqlCredential
}
catch {
Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue
}
if ($LogNumber) {
foreach ($number in $lognumber) {
try {
foreach ($object in $server.JobServer.ReadErrorLog($number)) {
Write-Message -Level Verbose -Message "Processing $object"
Add-Member -Force -InputObject $object -MemberType NoteProperty ComputerName -value $server.NetName
Add-Member -Force -InputObject $object -MemberType NoteProperty InstanceName -value $server.ServiceName
Add-Member -Force -InputObject $object -MemberType NoteProperty SqlInstance -value $server.DomainInstanceName
# Select all of the columns you'd like to show
Select-DefaultView -InputObject $object -Property ComputerName, InstanceName, SqlInstance, LogDate, ProcessInfo, Text
}
}
catch {
Stop-Function -Continue -Target $server -Message "Could not read from SQL Server Agent"
}
}
}
else {
try {
foreach ($object in $server.JobServer.ReadErrorLog()) {
Write-Message -Level Verbose -Message "Processing $object"
Add-Member -Force -InputObject $object -MemberType NoteProperty ComputerName -value $server.NetName
Add-Member -Force -InputObject $object -MemberType NoteProperty InstanceName -value $server.ServiceName
Add-Member -Force -InputObject $object -MemberType NoteProperty SqlInstance -value $server.DomainInstanceName
# Select all of the columns you'd like to show
Select-DefaultView -InputObject $object -Property ComputerName, InstanceName, SqlInstance, LogDate, ProcessInfo, Text
}
}
catch {
Stop-Function -Continue -Target $server -Message "Could not read from SQL Server Agent"
}
}
}
}
}