forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExport-DbaXECsv.ps1
154 lines (128 loc) · 5.33 KB
/
Export-DbaXECsv.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#ValidationTags#Messaging,FlowControl,Pipeline,CodeStyle#
function Export-DbaXECsv {
<#
.SYNOPSIS
Exports Extended Events to a CSV file.
.DESCRIPTION
Exports Extended Events to a CSV file.
.PARAMETER Path
Specifies the InputObject to the output CSV file
.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.
.PARAMETER InputObject
Allows Piping
.NOTES
Tags: ExtendedEvent, XE, XEvent
Author: Gianluca Sartori (@spaghettidba)
Website: https://dbatools.io
Copyright: (c) 2018 by dbatools, licensed under MIT
License: MIT https://opensource.org/licenses/MIT
.LINK
https://dbatools.io/Export-DbaXECsv
.EXAMPLE
PS C:\> Get-ChildItem -Path C:\temp\sample.xel | Export-DbaXECsv -Path c:\temp\sample.csv
Writes Extended Events data to the file "C:\temp\events.csv".
.EXAMPLE
PS C:\> Get-DbaXESession -SqlInstance sql2014 -Session deadlocks | Export-DbaXECsv -Path c:\temp\events.csv
Writes Extended Events data to the file "C:\temp\events.csv".
#>
[CmdletBinding()]
param (
[parameter(Mandatory, ValueFromPipeline)]
[Alias('FullName')]
[object[]]$InputObject,
[parameter(Mandatory)]
[string]$Path,
[switch]$EnableException
)
begin {
try {
Add-Type -Path "$script:PSModuleRoot\bin\XESmartTarget\XESmartTarget.Core.dll" -ErrorAction Stop
} catch {
Stop-Function -Message "Could not load XESmartTarget.Core.dll" -ErrorRecord $_ -Target "XESmartTarget"
return
}
function Get-FileFromXE ($InputObject) {
if ($InputObject.TargetFile) {
if ($InputObject.TargetFile.Length -eq 0) {
Stop-Function -Message "This session does not have an associated Target File."
return
}
$instance = [dbainstance]$InputObject.ComputerName
if ($instance.IsLocalHost) {
$xelpath = $InputObject.TargetFile
} else {
$xelpath = $InputObject.RemoteTargetFile
}
if ($xelpath -notmatch ".xel") {
$xelpath = "$xelpath*.xel"
}
try {
Get-ChildItem -Path $xelpath -ErrorAction Stop
} catch {
Stop-Function -Message "Failure" -ErrorRecord $_
}
}
}
}
process {
if (Test-FunctionInterrupt) { return }
$getfiles = Get-FileFromXE $InputObject
if ($getfiles) {
$InputObject += $getfiles
}
foreach ($file in $InputObject) {
if ($file -is [System.String]) {
$currentfile = $file
} elseif ($file -is [System.IO.FileInfo]) {
$currentfile = $file.FullName
} elseif ($file -is [Microsoft.SqlServer.Management.XEvent.Session]) {
# it was taken care of above
continue
} else {
Stop-Function -Message "Unsupported file type."
return
}
$accessible = Test-Path -Path $currentfile
$whoami = whoami
if (-not $accessible) {
if ($file.Status -eq "Stopped") { continue }
Stop-Function -Continue -Message "$currentfile cannot be accessed from $($env:COMPUTERNAME). Does $whoami have access?"
}
if (-not (Test-Path $Path)) {
if ([String]::IsNullOrEmpty([IO.Path]::GetExtension($Path))) {
New-Item $Path -ItemType directory | Out-Null
$outDir = $Path
$outFile = [IO.Path]::GetFileNameWithoutExtension($currentfile) + ".csv"
} else {
$outDir = [IO.Path]::GetDirectoryName($Path)
$outFile = [IO.Path]::GetFileName($Path)
}
} else {
if ((Get-Item $Path) -is [System.IO.DirectoryInfo]) {
$outDir = $Path
$outFile = [IO.Path]::GetFileNameWithoutExtension($currentfile) + ".csv"
} else {
$outDir = [IO.Path]::GetDirectoryName($Path)
$outFile = [IO.Path]::GetFileName($Path)
}
}
$adapter = New-Object XESmartTarget.Core.Utils.XELFileCSVAdapter
$adapter.InputFile = $currentfile
$adapter.OutputFile = (Join-Path $outDir $outFile)
try {
$adapter.Convert()
$file = Get-ChildItem -Path $adapter.OutputFile
if ($file.Length -eq 0) {
Remove-Item -Path $adapter.OutputFile
} else {
$file
}
} catch {
Stop-Function -Message "Failure" -ErrorRecord $_ -Target "XESmartTarget" -Continue
}
}
}
}