Package org.stagemonitor.os.metrics

Examples of org.stagemonitor.os.metrics.FileSystemMetricSet


    @SuppressWarnings("unchecked")
    final Set<Map.Entry<String, FileSystem>> entries = (Set<Map.Entry<String, FileSystem>>) sigar.getFileSystemMap().entrySet();
    for (Map.Entry<String, FileSystem> e : entries) {
      final FileSystem fs = e.getValue();
      if (fs.getType() == FileSystem.TYPE_LOCAL_DISK) {
        metricRegistry.registerAll(init(new FileSystemMetricSet(e.getKey(), sigar)));
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.stagemonitor.os.metrics.FileSystemMetricSet

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.