Package com.sleepycat.je.utilint

Examples of com.sleepycat.je.utilint.IntegralRateStat


            ReplicaStatDefinition.GROUP_NAME,
            VLSNIndexStatDefinition.GROUP_NAME};
    }

    private void addMessageRateStats() {
        @SuppressWarnings("unused")
        IntegralRateStat msgReadRate =
            new IntegralRateStat(protocolStats, MESSAGE_READ_RATE,
                                 protocolStats.getLongStat(N_MESSAGES_READ),
                                 protocolStats.getLongStat(N_READ_NANOS),
                                 1000000000);

        @SuppressWarnings("unused")
        IntegralRateStat msgWriteRate =
            new IntegralRateStat(protocolStats,
                                 MESSAGE_WRITE_RATE,
                                 protocolStats.getLongStat(N_MESSAGES_WRITTEN),
                                 protocolStats.getLongStat(N_WRITE_NANOS),
                                 1000000000);
    }
View Full Code Here


                                 protocolStats.getLongStat(N_WRITE_NANOS),
                                 1000000000);
    }

    private void addBytesRateStats() {
        @SuppressWarnings("unused")
        IntegralRateStat bytesReadRate =
            new IntegralRateStat(protocolStats,
                                 BYTES_READ_RATE,
                                 protocolStats.getLongStat(N_BYTES_READ),
                                 protocolStats.getLongStat(N_READ_NANOS),
                                 1000000000);

        @SuppressWarnings("unused")
        IntegralRateStat bytesWriteRate =
            new IntegralRateStat(protocolStats,
                                 BYTES_WRITE_RATE,
                                 protocolStats.getLongStat(N_BYTES_WRITTEN),
                                 protocolStats.getLongStat(N_WRITE_NANOS),
                                 1000000000);
    }
View Full Code Here

            ReplayStatDefinition.GROUP_NAME,
            ReplicaStatDefinition.GROUP_NAME};
    }

    private void addMessageRateStats() {
        IntegralRateStat msgReadRate =
            new IntegralRateStat(protocolStats, MESSAGE_READ_RATE,
                                 protocolStats.getLongStat(N_MESSAGES_READ),
                                 protocolStats.getLongStat(N_READ_NANOS),
                                 1000000000);

        IntegralRateStat msgWriteRate =
            new IntegralRateStat(protocolStats,
                                 MESSAGE_WRITE_RATE,
                                 protocolStats.getLongStat(N_MESSAGES_WRITTEN),
                                 protocolStats.getLongStat(N_WRITE_NANOS),
                                 1000000000);
    }
View Full Code Here

                                 protocolStats.getLongStat(N_WRITE_NANOS),
                                 1000000000);
    }

    private void addBytesRateStats() {
        IntegralRateStat bytesReadRate =
            new IntegralRateStat(protocolStats,
                                 BYTES_READ_RATE,
                                 protocolStats.getLongStat(N_BYTES_READ),
                                 protocolStats.getLongStat(N_READ_NANOS),
                                 1000000000);

        IntegralRateStat bytesWriteRate =
            new IntegralRateStat(protocolStats,
                                 BYTES_WRITE_RATE,
                                 protocolStats.getLongStat(N_BYTES_WRITTEN),
                                 protocolStats.getLongStat(N_WRITE_NANOS),
                                 1000000000);
    }
View Full Code Here

TOP

Related Classes of com.sleepycat.je.utilint.IntegralRateStat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.