2020-11-30 09:31:37 +00:00
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
Set-StrictMode -Version 3
|
|
|
|
|
|
|
|
if (-not (Test-Path -Path '.\windows_exporter.exe')) {
|
|
|
|
Write-Output ".\windows_exporter.exe not found. Consider running \`go build\` first"
|
|
|
|
}
|
|
|
|
|
|
|
|
# cd to location of script
|
|
|
|
$script_path = $MyInvocation.MyCommand.Path
|
|
|
|
$working_dir = Split-Path $script_path
|
|
|
|
Push-Location $working_dir
|
|
|
|
|
|
|
|
$temp_dir = Join-Path $env:TEMP $(New-Guid) | ForEach-Object { mkdir $_ }
|
|
|
|
|
2020-12-02 05:10:49 +00:00
|
|
|
# Create temporary directory for textfile collector
|
|
|
|
$textfile_dir = "$($temp_dir)/textfile"
|
|
|
|
mkdir $textfile_dir | Out-Null
|
|
|
|
Copy-Item 'e2e-textfile.prom' -Destination "$($textfile_dir)/e2e-textfile.prom"
|
|
|
|
|
2020-11-30 09:31:37 +00:00
|
|
|
# Omit dynamic collector information that will change after each run
|
2023-09-22 06:45:22 +00:00
|
|
|
$skip_re = "^(go_|windows_exporter_build_info|windows_exporter_collector_duration_seconds|windows_exporter_perflib_snapshot_duration_seconds|process_|windows_textfile_mtime_seconds|windows_cpu|windows_cs|windows_logical_disk|windows_physical_disk|windows_net|windows_os|windows_service|windows_system|windows_textfile_mtime_seconds)"
|
2020-11-30 09:31:37 +00:00
|
|
|
|
|
|
|
# Start process in background, awaiting HTTP requests.
|
|
|
|
# Use default collectors, port and address: http://localhost:9182/metrics
|
|
|
|
$exporter_proc = Start-Process `
|
|
|
|
-PassThru `
|
2022-02-26 08:40:05 +00:00
|
|
|
-FilePath ..\windows_exporter.exe `
|
2024-08-11 10:57:14 +00:00
|
|
|
-ArgumentList "--log.level=debug --web.disable-exporter-metrics --collectors.enabled=[defaults],textfile --collector.textfile.directories=$($textfile_dir)" `
|
2020-11-30 09:31:37 +00:00
|
|
|
-WindowStyle Hidden `
|
|
|
|
-RedirectStandardOutput "$($temp_dir)/windows_exporter.log" `
|
|
|
|
-RedirectStandardError "$($temp_dir)/windows_exporter_error.log"
|
|
|
|
|
2022-02-26 21:34:50 +00:00
|
|
|
# Exporter can take some time to start
|
|
|
|
for ($i=1; $i -le 5; $i++) {
|
|
|
|
Start-Sleep 10
|
|
|
|
|
|
|
|
$netstat_output = netstat -anp tcp | Select-String 'listening'
|
|
|
|
if ($netstat_output -like '*:9182*') {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
Write-Host "Waiting for exporter to start"
|
|
|
|
}
|
2020-11-30 09:31:37 +00:00
|
|
|
|
2024-08-05 13:50:41 +00:00
|
|
|
try {
|
|
|
|
$response = Invoke-WebRequest -UseBasicParsing -URI http://127.0.0.1:9182/metrics
|
|
|
|
} catch {
|
|
|
|
Write-Host "STDOUT"
|
|
|
|
Get-Content "$($temp_dir)/windows_exporter.log"
|
|
|
|
Write-Host "STDERR"
|
|
|
|
Get-Content "$($temp_dir)/windows_exporter_error.log"
|
|
|
|
|
|
|
|
throw $_
|
|
|
|
}
|
2020-11-30 09:31:37 +00:00
|
|
|
# Response output must be split and saved as UTF-8.
|
|
|
|
$response.content -split "[`r`n]"| Select-String -NotMatch $skip_re | Set-Content -Encoding utf8 "$($temp_dir)/e2e-output.txt"
|
2022-02-26 08:40:05 +00:00
|
|
|
Stop-Process -Id $exporter_proc.Id
|
2020-11-30 09:31:37 +00:00
|
|
|
$output_diff = Compare-Object (Get-Content 'e2e-output.txt') (Get-Content "$($temp_dir)/e2e-output.txt")
|
|
|
|
|
|
|
|
# Fail if differences in output are detected
|
|
|
|
if (-not ($null -eq $output_diff)) {
|
|
|
|
$output_diff | Format-Table
|
2023-11-04 19:51:35 +00:00
|
|
|
|
|
|
|
Write-Host "STDOUT"
|
|
|
|
Get-Content "$($temp_dir)/windows_exporter.log"
|
|
|
|
Write-Host "STDERR"
|
|
|
|
Get-Content "$($temp_dir)/windows_exporter_error.log"
|
2020-11-30 09:31:37 +00:00
|
|
|
exit 1
|
|
|
|
}
|