solidDB Help : Configuring and administering : Monitoring solidDB : Using performance counters (perfmon) : Producing a continuous performance monitoring report
  
Producing a continuous performance monitoring report
The command ADMIN COMMAND 'perfmon diff' allows you to start and stop sending continuous performance counter reports to a file.
Starting continuous performance reporting
To start collecting performance counter information, run the following command:
ADMIN COMMAND 'perfmon diff start filename interval'
where:
filename is the name of the output file. The performance data is output in comma-separated value format; the first row contains the counter names, and each subsequent row contains the performance data for each sampling period. The default file name is pmondiff.out.
interval is the interval in milliseconds at which performance data is collected. The default interval is 1000 ms.
For example, to start logging performance counters to the file counter_log.csv at 2 second intervals, run the following command:
ADMIN COMMAND 'pmon diff start counter_log.csv 2000'
Stopping continuous performance reporting
To stop the collection of performance data, run the following command:
ADMIN COMMAND 'pmon diff stop'
Go up to
Using performance counters (perfmon)