Monday, December 24, 2018

xterm: bad command line option "-eperl"

Issue: xterm: bad command line option

fix: 1) the adautostg.pl had a missing space in the xterm command - $cmd = "xterm "." -e". "perl ".$ENV{'TEMP'}.$dirsep."staging".$dirsep."adautostg.pl "; Changed this to: $cmd = "xterm "." -e". " perl ".$ENV{'TEMP'}.$dirsep."staging".$dirsep."adautostg.pl ";

Azure AKS - Diag Logs - KQL

AzureDiagnostics | where Category == "kube-audit" | summarize requests = count() by bin(TimeGenerated, 5m), userAgent_s | orde...