forked from rawatsudhir/CaptureASALogScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASALogRecorder
261 lines (224 loc) · 11.8 KB
/
ASALogRecorder
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
## This Powershell (.ps1) script is used to collect Microsoft Azure Stream Analytics job definitions and operation logs for a given account,
## For the intent of sharing this information with the Microsoft CSS Azure Support Team engineers for troubleshooting purposes.
## 1. Please set the output folder below if C:\Temp is not sufficient. At the end, the output will be zipped into that location.
## 2. The script will prompt you for your Azure credential if you do not have it actively configured.
## 3. The script will prompt you on which job to collect data for, or all jobs as needed.
## 4. The script will prompt you to choose between 1 to 14 days worth of Operation Log events to collect.
## Last Change on 30-04-2015
## Version:-2
# Pick an Output folder before you run the code if needed to change.
$folder ="C:\temp\"
## No Edits below here required
## ======================================
$folder = $folder + "StreamAnalytics\"
Switch-AzureMode AzureResourceManager
If ( !(Get-module AzureResourceManager )) {
Write-Host "The Azure PowerShell SDK may not be installed. This script requires it." -ForegroundColor Red
Write-Host "Get the download at http://azure.microsoft.com/en-us/downloads/ and click Install under the _Windows PowerShell_ heading." -ForegroundColor Cyan
Write-Host "Check the browser now... "
$IE=new-object -com internetexplorer.application
$IE.navigate2("http://azure.microsoft.com/en-us/downloads/")
$IE.visible=$true
Import-Module AzureResourceManager
Return
}
# See if any User is logged in
$Accounts = Get-AzureAccount
$Accounts = $Accounts | Where-Object { $_.Type -eq 'User' }
If ($Accounts.Count -ne 0)
{
Write-Host "Current user account in this PowerShell window is" -ForegroundColor Yellow
$Accounts | ConvertTo-JSON | Out-Host
}
Else #Need to prompt for the User name
{
Add-AzureAccount
}
## Helper Function to do the output prints
function PrintJobAndLog
(
[Microsoft.Azure.Commands.StreamAnalytics.Models.PSJob] $PrintJob,
[System.Int32] $JobNumber,
[System.DateTime] $BeginDate,
[System.DateTime] $EndDate,
[System.String] $FileFolder
)
{
Try
{
# Build the file paths
$FilePath = $FileFolder + 'StreamAnalytics_Job' + $JobNumber.ToString() + "_" + $BeginDate.ToString("yyyyMMdd") + "_" + $EndDate.ToString("yyyyMMdd") + '.txt'
$FilePathJSON = $FileFolder + 'StreamAnalytics_Job' + $JobNumber.ToString() + "_" + $BeginDate.ToString("yyyyMMdd") + "_" + $EndDate.ToString("yyyyMMdd") + '.json'
$FilePathCSV = $FileFolder + 'StreamAnalytics_Job' + $JobNumber.ToString() + "_" + $BeginDate.ToString("yyyyMMdd") + "_" + $EndDate.ToString("yyyyMMdd") + '.csv'
# Remove old files if any exists
If (Test-Path $FilePath)
{
Write-Host 'Removing existing file' $FilePath -ForegroundColor Red
Remove-Item $FilePath
}
If (Test-Path $FilePathJSON)
{
Write-Host 'Removing existing file' $FilePathJSON -ForegroundColor Red
Remove-Item $FilePathJSON
}
If (Test-Path $FilePathCSV)
{
Write-Host 'Removing existing file' $FilePathCSV -ForegroundColor Red
Remove-Item $FilePathCSV
}
Write-Host 'Writing log files.... at ' $FilePath ' and ' $FilePathJSON -ForegroundColor Yellow
#Write out the information to files
"The current user account in this PowerShell output is" | Out-File $FilePath -Append
$Accounts | ConvertTo-JSON | Out-File $FilePath -Append
'Resource Name:- ' + $PrintJob.ResourceGroupName | Out-File $FilePath -Append
'*****************************Log Report******************************' | Out-File $FilePath -Append
"`r`n" + 'Job Name:- ' + $PrintJob.JobName | Out-File $FilePath -Append
'Resource Name:- ' + $PrintJob.ResourceGroupName | Out-File $FilePath -Append
'Log Starts From:- ' + $BeginDate.ToString("yyyyMMdd") + ' To ' + $EndDate.ToString("yyyyMMdd") `
| Out-File $FilePath -Append
'=====================================================================' | Out-File $FilePath -Append
"`r`n" + 'Azure Stream Analytic Input Job Definition.... ' | Out-File $FilePath -Append
Get-AzureStreamAnalyticsInput -ResourceGroupName $PrintJob.ResourceGroupName -JobName $PrintJob.JobName `
| Out-File $FilePath -Append
'End of Azure Stream Analytic Input Job Definition.... ' | Out-File $FilePath -Append
'=====================================================================' | Out-File $FilePath -Append
"`r`n" + 'Azure Stream Analytic Transformation Job Definition.... ' | Out-File $FilePath -Append
Get-AzureStreamAnalyticsTransformation -ResourceGroupName $PrintJob.ResourceGroupName -JobName $PrintJob.JobName -Name $PrintJob.JobName `
| Out-File $FilePath -Append
'End of Azure Stream Analytic Transformation Job Definition.... ' | Out-File $FilePath -Append
'=====================================================================' | Out-File $FilePath -Append
"`r`n" + 'Azure Stream Analytic Output Job Definition.... ' | Out-File $FilePath -Append
Get-AzureStreamAnalyticsOutput -ResourceGroupName $PrintJob.ResourceGroupName -JobName $PrintJob.JobName `
| Out-File $FilePath -Append
'End of Azure Stream Analytic Output Job Definition.... ' | Out-File $FilePath -Append
'=====================================================================' | Out-File $FilePath -Append
# Print the Operation Logs - may take a while
"`r`n" + 'LOGS START FROM DATE :- ' + $BeginDate | Out-File $FilePath -Append
Get-AzureResourceProviderLog -ResourceProvider Microsoft.StreamAnalytics -DetailedOutput -StartTime $BeginDate `
| Out-File $FilePath -Append
Get-AzureResourceProviderLog -ResourceProvider Microsoft.StreamAnalytics -DetailedOutput -StartTime $BeginDate | ConvertTo-Json `
| Out-File $FilePathJSON
'===================================================================== ' | Out-File $FilePath -Append
Write-Host 'Finished Writing log files.... at ' $FilePath ' and ' $FilePathJSON -ForegroundColor Yellow
Write-Host '==========================================================='-ForegroundColor Yellow
}
Catch
{
Write-Host "Error in PrintJobAndLog:", $_ -BackgroundColor Red
}
}
## Main
#Put all jobs into a collection
Write-Host "Enumerating your Stream Analytics jobs" -ForegroundColor Cyan
$AllJobs = Get-AzureStreamAnalyticsJob -NoExpand
#Number the jobs 0 to ... then print the table to the screen
[System.Int32] $i = 0
ForEach($Job in $AllJobs)
{
Add-Member -NotePropertyName JobNum -NotePropertyValue $i -InputObject $Job
$i++
}
$AllJobs | Format-Table -AutoSize -Property *
Write-Host " -1 ALL *"
#Let the user pick a number from the list of jobs
Write-Host "==============================================="
Do{
Write-Host 'Please enter the job number from the list above. Or -1 for ALL jobs.' -ForegroundColor Cyan
[System.Int32] $getJobNumber = Read-Host 'JobNum'
}
Until (($getJobNumber -lt $AllJobs.Count) -and ($getJobNumber -ge -1) )
If ($getJobNumber -eq -1 ) { Write-Host "You picked ALL Jobs" }
Else {
$PickedJob = $AllJobs[$getJobNumber]
Write-Host "You picked Job ", $PickedJob.JobName, $PickedJob.ResourceGroupName, $PickedJob.JobID
}
#Make the folder if it does not exist.
If ((Test-Path $folder))
{
Write-Host "The output folder", $folder, " already exists. Would you like to delete it?" -ForegroundColor Red
$getYN = Read-Host 'Y/N'
If($getYN -eq "Y" -or $getYN -eq "y" -or $getYN -eq "Yes" -or $getYN -eq "yes")
{
Write-Host 'Removing existing folder...' $folder -ForegroundColor Red
Remove-Item -path $folder -Recurse
Write-Host "Making a fresh folder to hold the output:", $folder -ForegroundColor Yellow
New-Item -Path $folder -ItemType directory
}
Else
{
Write-Host 'Leaving folder in tact, but overwriting individual files if needed.' $folder
}
}
Else
{
Write-Host "Making a folder to hold the output:", $folder
New-Item -Path $folder -ItemType directory
}
# Save the list of all jobs to a text file.
$FileAllJobsPath = $folder + "StreamAnalytics_JobsListing.txt"
If (Test-Path $FileAllJobsPath)
{
Write-Host 'Removing existing file' $FileAllJobsPath -ForegroundColor Red
Remove-Item $FileAllJobsPath
}
Write-Host "Writing list of jobs... at ", $FileAllJobsPath -ForegroundColor Yellow
$AllJobs | Format-Table -Property * -AutoSize | Out-String -Width 4096 | Out-File $FileAllJobsPath
$AllJobs | ConvertTo-Json | Out-File $FileAllJobsPath -Append
#Get input from the user to specify a number of days of log data to collect between 1 and 14 (15 max may cause errors)
Do{
Write-Host 'How many past days worth of logs do you want to gather? 14 days maximum.' -ForegroundColor Cyan
[System.Int32] $LogDays = Read-Host 'Days'
}
Until ($LogDays -gt 0 -and $LogDays -lt 15)
$CurrentDate= Get-Date
$StartDate = $CurrentDate.AddDays($LogDays * -1)
Write-Host "These logs will include data from ", $StartDate.ToString("yyyyMMdd"), " until today ", $CurrentDate.ToString("yyyyMMdd"), "."
# If -1 Then Loop Over ALL jobs to print
If ($getJobNumber -eq -1)
{
Write-Host "Collecting logs for ALL jobs" -ForegroundColor Yellow
Write-Host '==========================================================='-ForegroundColor Yellow
[System.Int32] $i=0
ForEach($Job in $AllJobs)
{
Write-Host "Working on logs for Job #" $i, $Job.JobName, $Job.ResourceGroupName, $Job.JobID
PrintJobAndLog -PrintJob $Job -JobNumber $i -BeginDate $StartDate -EndDate $CurrentDate -FileFolder $folder
$i++
}
}
# Else Print one job only
Else
{
PrintJobAndLog -PrintJob $AllJobs[$getJobNumber] -JobNumber $getJobNumber -BeginDate $StartDate -EndDate $CurrentDate -FileFolder $folder
}
# Zip the folder
Try
{
$Directory = Get-Item $folder
$parentfolder = $folder + ".."
$ParentDirectory = Get-Item ($parentfolder)
$ZipFileName = $ParentDirectory.FullName + "\" + $Directory.Name + ".zip"
if (test-path $ZipFileName) {
Write-Host "Zip file already exists at $ZipFileName. Would you like to delete it?" -ForegroundColor Cyan
$getYN = Read-Host 'Y/N'
If($getYN -eq "Y" -or $getYN -eq "y" -or $getYN -eq "Yes" -or $getYN -eq "yes")
{
Write-Host 'Removing existing file' $ZipFileName -ForegroundColor Red
Remove-Item $ZipFileName
}
Else
{
Write-Host "Done. Could not generate Zip file. Please zip the folder ", $folder, "and send to Microsoft Support." -BackgroundColor Red
return
}
}
set-content $ZipFileName ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
#(dir $ZipFileName).IsReadOnly = $false
$ZipFile = (new-object -com shell.application).NameSpace($ZipFileName)
$ZipFile.CopyHere($Directory.FullName)
Write-Host "Done. Please send the .zip file ", $ZipFileName, "to Microsoft Support." -BackgroundColor Green -ForegroundColor Black
}
Catch
{
Write-Host "Done. Could not generate Zip file. Please zip the folder ", $folder, "and send to Microsoft Support." -BackgroundColor Red
}