mirror of https://gitee.com/bigwinds/arangodb
don't keep the memory stats in the collections to save disk space (#9582)
This commit is contained in:
parent
ef99c43c93
commit
8d2accac7c
|
@ -937,6 +937,7 @@ void StatisticsWorker::generateRawStatistics(VPackBuilder& builder, double const
|
|||
builder.add("dirty", VPackValue(v8Counters.dirty));
|
||||
builder.add("free", VPackValue(v8Counters.free));
|
||||
builder.add("max", VPackValue(v8Counters.max));
|
||||
/* at the time being we don't want to write this into the database so the data volume doesn't increase.
|
||||
{
|
||||
builder.add("memory", VPackValue(VPackValueType::Array));
|
||||
for (auto memStatistic : memoryStatistics) {
|
||||
|
@ -950,6 +951,7 @@ void StatisticsWorker::generateRawStatistics(VPackBuilder& builder, double const
|
|||
}
|
||||
builder.close();
|
||||
}
|
||||
*/
|
||||
builder.close();
|
||||
|
||||
// export threads statistics
|
||||
|
|
Loading…
Reference in New Issue