Ignore:
Timestamp:
04/28/12 07:32:00 (13 months ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
fa11893
Parents:
308ae18
Message:
  • Fixed issue with check-cpu sampling interval being 10seconds and not 1/10 second.
  • Some git file transformations
File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/CheckSystem/CheckSystem.cpp

    r308ae18 rd9cdcb3  
    7171bool CheckSystem::loadModuleEx(std::wstring alias, NSCAPI::moduleLoadMode mode) { 
    7272  PDHCollector::system_counter_data *data = new PDHCollector::system_counter_data; 
    73   data->check_intervall = 100; 
     73  data->check_intervall = 1; 
    7474  try { 
    7575    typedef std::map<std::wstring,std::wstring> counter_map_type; 
     
    9999      _T("DEFAULT LENGTH"), _T("Used to define the default intervall for range buffer checks (ie. CPU).")) 
    100100 
    101       (_T("default intervall"), sh::uint_key(&data->check_intervall, 10), 
    102       _T("DEFAULT INTERVALL"), _T("Used to define the default intervall for range buffer checks (ie. CPU).")) 
     101      (_T("default intervall"), sh::uint_key(&data->check_intervall, 1), 
     102      _T("DEFAULT INTERVALL"), _T("Used to define the default intervall for range buffer checks (ie. CPU)."), true) 
    103103 
    104104      ; 
Note: See TracChangeset for help on using the changeset viewer.