Skip to content

Instantly share code, notes, and snippets.

@rmoff
Last active September 21, 2015 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmoff/643cc77f5e8d8e475361 to your computer and use it in GitHub Desktop.
Save rmoff/643cc77f5e8d8e475361 to your computer and use it in GitHub Desktop.
Track BI Server (nqsserver) temp usage over time
!#/usr/bin/bash
export FMW_HOME=/u01/BI_FMW/
export OUTBASE=/tmp/nqstmp_usage
while [ 1 -eq 1 ]; do echo -n $(date) >> $OUTBASE.du;echo -n ',' >> $OUTBASE.du;du $FMW_HOME/instances/instance1/tmp/OracleBIServerComponent/coreapplication_obis1/obis_temp >> $OUTBASE.du;sleep 5; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment