Examples of LongMetric


Examples of com.foundationdb.server.service.metrics.LongMetric

    @Override
    public void run() {
        logger.info("Postgres server listening on {}:{}", host, port);
        Random rand = new Random();
        LongMetric bytesInMetric = null, bytesOutMetric = null;
        try {
            bytesInMetric = reqs.metricsService().addLongMetric(BYTES_IN_METRIC_NAME);
            bytesOutMetric = reqs.metricsService().addLongMetric(BYTES_OUT_METRIC_NAME);
            reqs.monitor().registerServerMonitor(this);
            synchronized(this) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.