/usr/include/mongo/db/dur_stats.h is in mongodb-dev 1:2.4.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | // @file dur_stats.h
/**
* Copyright (C) 2012 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
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 _uncompressedBytes;
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;
}
}
|