Github user rmetzger commented on the pull request: https://github.com/apache/flink/pull/553#issuecomment-99753925 The code looks much better now. The only thing that makes me still unhappy is the following method ```diff + override def getValue: Double = { + try{ + val osMXBean = ManagementFactory.getOperatingSystemMXBean(). + asInstanceOf[com.sun.management.OperatingSystemMXBean] + fetchCPULoad.map(_.invoke(osMXBean).asInstanceOf[Double]).getOrElse(-1) + } catch { + case t: Throwable => { + LOG.warn("Error retrieving CPU Load through OperatingSystemMXBean", t) + -1 + } + } + } ``` This `getValue()` method is called every 5 seconds to get the metrics from each machine. Users using Java 6 will get the WARN in their log + the exception because the cast to `com.sun.management.OperatingSystemMXBean` will fail every time. I would do the following: If you detect that fetchCpuLoad is null, register a gauge which is always returning -1. Otherwise, register the gauge which is calling fetchCpuLoad.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---