icinga-powershell-framework/lib/core/icingaagent/readers/Read-IcingaAgentLogFile.psm1
2020-02-13 10:12:57 +01:00

10 lines
309 B
PowerShell

function Read-IcingaAgentLogFile()
{
$Logfile = Join-Path -Path (Get-IcingaAgentLogDirectory) -ChildPath 'icinga2.log';
if ((Test-Path $Logfile) -eq $FALSE) {
Write-Host 'Icinga 2 logfile not present. Unable to load it';
return;
}
Get-Content -Path $Logfile -Tail 20 -Wait;
}