Skip to content

Instantly share code, notes, and snippets.

View ericbisme's full-sized avatar

Eric Bolinger ericbisme

View GitHub Profile
@ericbisme
ericbisme / psadmin_appq.sh
Created January 22, 2025 21:45
PeopleSoft psadmin APPQ count one line
sudo -i -u psadm2 psadmin -c qstatus -d APPDOM 2>/dev/null | awk '$2 == "APPQ" {print $5}'
@ericbisme
ericbisme / log_stats
Created January 29, 2025 21:25
Cloudwatch Lambda stats
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,