Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* 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
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.system.stats.mongo;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.auto.value.AutoValue;
import org.graylog.autovalue.WithBeanGetter;
import javax.annotation.Nullable;
/**
* @see Diagnostic Commands > dbStats
*/
@JsonAutoDetect
@AutoValue
@WithBeanGetter
public abstract class DatabaseStats {
@JsonProperty
public abstract String db();
@JsonProperty
public abstract long collections();
@JsonProperty
public abstract long objects();
@JsonProperty
public abstract double avgObjSize();
@JsonProperty
public abstract long dataSize();
@JsonProperty
public abstract long storageSize();
@JsonProperty
@Nullable
public abstract Long numExtents();
@JsonProperty
public abstract long indexes();
@JsonProperty
public abstract long indexSize();
@JsonProperty
@Nullable
public abstract Long fileSize();
@JsonProperty
@Nullable
public abstract Long nsSizeMB();
@JsonProperty
@Nullable
public abstract ExtentFreeList extentFreeList();
@JsonProperty
@Nullable
public abstract DataFileVersion dataFileVersion();
public static DatabaseStats create(String db,
long collections,
long objects,
double avgObjSize,
long dataSize,
long storageSize,
@Nullable Long numExtents,
long indexes,
long indexSize,
@Nullable Long fileSize,
@Nullable Long nsSizeMB,
@Nullable ExtentFreeList extentFreeList,
@Nullable DataFileVersion dataFileVersion) {
return new AutoValue_DatabaseStats(db, collections, objects, avgObjSize, dataSize, storageSize, numExtents,
indexes, indexSize, fileSize, nsSizeMB, extentFreeList, dataFileVersion);
}
@JsonAutoDetect
@AutoValue
@WithBeanGetter
public abstract static class ExtentFreeList {
@JsonProperty
public abstract int num();
@JsonProperty
public abstract int totalSize();
public static ExtentFreeList create(int num,
int totalSize) {
return new AutoValue_DatabaseStats_ExtentFreeList(num, totalSize);
}
}
@JsonAutoDetect
@AutoValue
@WithBeanGetter
public abstract static class DataFileVersion {
@JsonProperty
public abstract int major();
@JsonProperty
public abstract int minor();
public static DataFileVersion create(int major,
int minor) {
return new AutoValue_DatabaseStats_DataFileVersion(major, minor);
}
}
}