[Ganglia-general] 64bit metrics with modpython

2014-02-18 Thread Chris Burroughs
I'm trying to write a gmond python module that needs to measure values greater than 2^32 (bytes of memory/storage). I'm having trouble getting that to work as there either isn't a uint64 type or the python module is turning all ints into 32bit [1]. What's the right way to pass 64 bit numbers

Re: [Ganglia-general] UC 64bit metrics with modpython

2014-02-18 Thread Rushton Martin
Could you simply divide the value by 2^20 (or 10^6) and send MiB (or MB)? -Original Message- From: Chris Burroughs [mailto:chris.burrou...@gmail.com] Sent: 18 February 2014 14:25 To: ganglia-general@lists.sourceforge.net. Subject: [Ganglia-general] 64bit metrics with modpython I'm trying

[Ganglia-general] Drop-down metrics missing

2014-02-18 Thread Adam Huffman
For a while now the drop-down list of metrics on our Ganglia has been empty. The RRDs are fine and the graphs are showing, but it's impossible to select a particular graph from that list via the button. The versions in use are: ganglia-3.6.0-4.fc20.x86_64 ganglia-web-3.5.12-4.fc20.x86_64 Best

Re: [Ganglia-general] UC 64bit metrics with modpython

2014-02-18 Thread Chris Burroughs
On 2014-02-18 09:39, Rushton Martin wrote: Could you simply divide the value by 2^20 (or 10^6) and send MiB (or MB)? This is actually similar to what the built in memory metrics do. They report KiB and then the fancy report converts that to something nice. The work around that I am currently