2016-08-19 7 views
0

MongoDB가 지난 1 시간 동안 읽고 수행 한 횟수를 알아야합니다.MongDB 레벨 쓰기 카운트

알람을 생성하는 데 필요한 이러한 통계를 쉽게 찾을 수있는 방법이 있습니까? 솔루션이 명령 기반 또는 Java 기반 인 경우 정말 도움이 될 것입니다.

+0

어떤 종류의 문제를 해결할 예정입니까? – profesor79

+0

DB 통계를 반환하는 몇 가지 명령을 살펴 보겠습니다. https://docs.mongodb.com/manual/administration/monitoring/ – yellowB

+0

프로그래밍 문제보다 데이터베이스 관리 문제가 더 많습니까? http://dba.stackexchange.com/에서 원하는 답을 찾을 수 있습니다. –

답변

0

MongoDB jdbc 드라이버의 소스 코드를 파싱 한 후. 나는 마침내 필요한 것을 얻을 수있었습니다. 아래 코드는 해당 코드입니다

public class MongoJmxStat { 

    private MongoClient mongo; 

    public MongoJmxStat(MongoClient mongo) { 
     this.mongo = mongo; 
    } 

    public CommandResult getServerStatus() { 
     CommandResult result = getDb("mongoDB").command("serverStatus"); 
     if (!result.ok()) { 

      throw new MongoException("could not query for server status. Command Result = " + result); 
     } 

     return result; 
    } 

    public DB getDb(String databaseName) { 
     return MongoDbUtils.getDB(mongo, databaseName); 
    } 

    private int getOpCounter(String key) { 
     DBObject opCounters = (DBObject) getServerStatus().get("opcounters"); 
     return (Integer) opCounters.get(key); 
    } 

    @ManagedMetric(metricType = MetricType.COUNTER, displayName = "Write operation count") 
    public int getWriteCount() { 
     return getOpCounter("insert") + getOpCounter("update") + getOpCounter("delete"); 
    } 

    @ManagedMetric(metricType = MetricType.COUNTER, displayName = "Read operation count") 
    public int getReadCount() { 
     return getOpCounter("query") + getOpCounter("getmore"); 
    } 

}