Re: [akka-user] Cluster Metrics on Windows

2016-08-21 Thread Chris Van Vranken
I've created the issue here: https://github.com/akka/akka/issues/21240 Chris On Sun, Aug 21, 2016 at 3:28 AM, Endre Varga wrote: > Hi Chris, > > Thank you for all this, very valuable information! Can you please file a > ticket on the repo for further discussions to

Re: [akka-user] Cluster Metrics on Windows

2016-08-21 Thread Endre Varga
Hi Chris, Thank you for all this, very valuable information! Can you please file a ticket on the repo for further discussions to not have this accidentally lost? -Endre On Sun, Aug 21, 2016 at 1:06 AM, Chris Van Vranken < cessationoft...@gmail.com> wrote: > Someone responded to me in the

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Chris Van Vranken
Someone responded to me in the hyperic sigar issue. Apparently this is implemented in the Boundary fork of sigar: https://github.com/boundary/sigar On Sat, Aug 20, 2016 at 4:29 PM, Chris Van Vranken < cessationoft...@gmail.com> wrote: > In the Sigar repository there is a comment in file: >

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Chris Van Vranken
In the Sigar repository there is a comment in file: src/os/win32/win32_sigar.c, for function sigar_loadavg_get which says "there is no api for this info. closest i've seen is enumerating the entire process table and calculating an average based on process times." Based on this comment it seems

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Chris Van Vranken
I found an issue for this listed in the hyperic/sigar github repo. On Sat, Aug 20, 2016 at 3:12 PM, Chris Van Vranken < cessationoft...@gmail.com> wrote: > I found the problem: > > In file: akka-cluster-metrics/src/main/scala/akka/cluster/ >

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Chris Van Vranken
I bet akka.cluster.metrics.native-library-extract-folder isn't configured properly. On Sat, Aug 20, 2016 at 1:00 PM, Chris Van Vranken < cessationoft...@gmail.com> wrote: > One thing that I've noticed is it seems to startup as JMX. But then it > subsequently provisions Sigar. Though the

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Chris Van Vranken
One thing that I've noticed is it seems to startup as JMX. But then it subsequently provisions Sigar. Though the provision is logged as an error message. The log output looks like this: > runMain sample.cluster.factorial.FactorialApp [warn] Scala version was updated by one of library

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Patrik Nordwall
It can sometimes be difficult to setup loading of the native sigar library. Several alternatives are listed in docs http://doc.akka.io/docs/akka/2.4/java/cluster-metrics.html#Hyperic_Sigar_Provisioning You should see warnings/errors in the log. /Patrik lör 20 aug. 2016 kl. 17:10 skrev Chris Van

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Chris Van Vranken
Though sigar is the collector I would like to be able to use. On Aug 20, 2016 11:09 AM, "Chris Van Vranken" wrote: > I have tried both of them with the same result on Windows. On Ubuntu I > have only tried sigar. > > On Aug 20, 2016 4:26 AM, "Endre Varga"

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Chris Van Vranken
I have tried both of them with the same result on Windows. On Ubuntu I have only tried sigar. On Aug 20, 2016 4:26 AM, "Endre Varga" wrote: > > Hi, > > Which metric collector are you using, the JMX or the SIGAR collector? > > -Endre > > On Sat, Aug 20, 2016 at 1:31 AM,

Re: [akka-user] Cluster Metrics on Windows

2016-08-20 Thread Endre Varga
Hi, Which metric collector are you using, the JMX or the SIGAR collector? -Endre On Sat, Aug 20, 2016 at 1:31 AM, cessationoftime wrote: > Using Akka 2.4.9 and Windows 10 I am unable to get CPU cluster metrics, I > can only get HeapMemory metrics. Running the same

[akka-user] Cluster Metrics on Windows

2016-08-19 Thread cessationoftime
Using Akka 2.4.9 and Windows 10 I am unable to get CPU cluster metrics, I can only get HeapMemory metrics. Running the same code on a Ubuntu server I get both CPU metrics and Heap metrics. I am using the factorial example located at: