2010-01-16 06:50:02 +01:00
|
|
|
// dbstats.h
|
|
|
|
|
|
|
|
#include "../stdafx.h"
|
|
|
|
#include "jsobj.h"
|
|
|
|
#include "../util/message.h"
|
2010-01-28 20:14:47 +01:00
|
|
|
#include "../util/processinfo.h"
|
2010-01-16 06:50:02 +01:00
|
|
|
|
|
|
|
namespace mongo {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* for storing operation counters
|
|
|
|
* note: not thread safe. ok with that for speed
|
|
|
|
*/
|
|
|
|
class OpCounters {
|
|
|
|
public:
|
|
|
|
|
|
|
|
OpCounters();
|
|
|
|
|
|
|
|
int * getInsert(){ return _insert; }
|
|
|
|
int * getQuery(){ return _query; }
|
|
|
|
int * getUpdate(){ return _update; }
|
|
|
|
int * getDelete(){ return _delete; }
|
|
|
|
int * getGetGore(){ return _getmore; }
|
|
|
|
|
|
|
|
void gotInsert(){ _insert[0]++; }
|
|
|
|
void gotQuery(){ _query[0]++; }
|
|
|
|
void gotUpdate(){ _update[0]++; }
|
|
|
|
void gotDelete(){ _delete[0]++; }
|
|
|
|
void gotGetMore(){ _getmore[0]++; }
|
|
|
|
|
2010-01-16 14:00:42 +01:00
|
|
|
void gotOp( int op );
|
2010-01-16 06:50:02 +01:00
|
|
|
|
|
|
|
BSONObj& getObj(){ return _obj; }
|
|
|
|
private:
|
|
|
|
BSONObj _obj;
|
|
|
|
int * _insert;
|
|
|
|
int * _query;
|
|
|
|
int * _update;
|
|
|
|
int * _delete;
|
|
|
|
int * _getmore;
|
|
|
|
};
|
2010-01-28 20:14:47 +01:00
|
|
|
|
2010-01-16 06:50:02 +01:00
|
|
|
extern OpCounters globalOpCounters;
|
|
|
|
|
2010-01-28 20:14:47 +01:00
|
|
|
class IndexCounters {
|
|
|
|
public:
|
|
|
|
IndexCounters();
|
|
|
|
|
|
|
|
void btree( char * node ){
|
|
|
|
if ( ! _memSupported )
|
|
|
|
return;
|
|
|
|
if ( _sampling++ % _samplingrate )
|
|
|
|
return;
|
|
|
|
btree( _pi.blockInMemory( node ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void btree( bool memHit ){
|
|
|
|
if ( memHit )
|
|
|
|
_btreeMemHits++;
|
|
|
|
else
|
|
|
|
_btreeMemMisses++;
|
|
|
|
_btreeAccesses++;
|
|
|
|
}
|
|
|
|
void btreeHit(){ _btreeMemHits++; _btreeAccesses++; }
|
|
|
|
void btreeMiss(){ _btreeMemMisses++; _btreeAccesses++; }
|
|
|
|
|
|
|
|
void append( BSONObjBuilder& b );
|
|
|
|
|
|
|
|
private:
|
|
|
|
ProcessInfo _pi;
|
|
|
|
bool _memSupported;
|
|
|
|
|
|
|
|
int _sampling;
|
|
|
|
int _samplingrate;
|
|
|
|
|
|
|
|
int _resets;
|
|
|
|
long long _maxAllowed;
|
|
|
|
|
|
|
|
long long _btreeMemMisses;
|
|
|
|
long long _btreeMemHits;
|
|
|
|
long long _btreeAccesses;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern IndexCounters globalIndexCounters;
|
|
|
|
|
2010-01-16 06:50:02 +01:00
|
|
|
}
|