Retrieve Statistics

Use SelectStat methods to retrieve statistics from the stats database. Statistics are returned in the StatsList property of the Node class.

The following SelectStat method retrieves all statistic records.

Note: The list could be large depending on how many days of records are kept in the database.
void SelectStat()

The following SelectStat method retrieves all statistic records for a specific Process. pProcess is the Process object to retrieve the stats for.

void SelectStat(Process^ pProcess)

The following SelectStat method retrieves all statistic records within a specified time range. dtBegin identifies the beginning time and dtEnd is the ending time. The time is in the format MM/DD/YYYY hh:mm:ss AM|PM.

void SelectStat(String^ dtBegin, String^ dtEnd)