mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
49 lines
1.7 KiB
C++
49 lines
1.7 KiB
C++
// @file dur_stats.h
|
|
|
|
namespace mongo {
|
|
namespace dur {
|
|
|
|
/** journaling stats. the model here is that the commit thread is the only writer, and that reads are
|
|
uncommon (from a serverStatus command and such). Thus, there should not be multicore chatter overhead.
|
|
*/
|
|
struct Stats {
|
|
Stats();
|
|
void rotate();
|
|
BSONObj asObj();
|
|
unsigned _intervalMicros;
|
|
struct S {
|
|
BSONObj _asObj();
|
|
string _asCSV();
|
|
string _CSVHeader();
|
|
void reset();
|
|
|
|
unsigned _commits;
|
|
unsigned _earlyCommits; // count of early commits from commitIfNeeded() or from getDur().commitNow()
|
|
unsigned long long _journaledBytes;
|
|
unsigned long long _writeToDataFilesBytes;
|
|
|
|
unsigned long long _prepLogBufferMicros;
|
|
unsigned long long _writeToJournalMicros;
|
|
unsigned long long _writeToDataFilesMicros;
|
|
unsigned long long _remapPrivateViewMicros;
|
|
|
|
// undesirable to be in write lock for the group commit (it can be done in a read lock), so good if we
|
|
// have visibility when this happens. can happen for a couple reasons
|
|
// - read lock starvation
|
|
// - file being closed
|
|
// - data being written faster than the normal group commit interval
|
|
unsigned _commitsInWriteLock;
|
|
|
|
unsigned _dtMillis;
|
|
};
|
|
S *curr;
|
|
private:
|
|
S _a,_b;
|
|
unsigned long long _lastRotate;
|
|
S* other();
|
|
};
|
|
extern Stats stats;
|
|
|
|
}
|
|
}
|