This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo -i -u psadm2 psadmin -c qstatus -d APPDOM 2>/dev/null | awk '$2 == "APPQ" {print $5}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fields @timestamp, @initDuration, @message, @logStream, @log | |
| | sort @timestamp desc | |
| | limit 1000 | |
| | filter @type = "REPORT" | |
| | stats | |
| count(@type) as countInvocations , | |
| count(@initDuration) as countColdStarts , (count(@initDuration)/count(@type))*100 as percentageColdStarts, | |
| max(@initDuration) as maxColdStartTime, | |
| avg(@duration) as averageDuration, | |
| max(@duration) as maxDuration, |
OlderNewer