Re: [Ganglia-general] stacked graph not working

2024-02-15 Thread Vladimir Vuksan
Indeed htmlspecialchars will do that however it's not used in 
stacked.php at least not in the Github repo. You could try and comment 
out this line


https://github.com/ganglia/ganglia-web/blob/master/functions.php#L1416

Then look in /tmp for a ganglia-graph file with full invocation to make 
sure that output is somehow not getting encoded.


Vladimir

On 2/15/24 16:08, Sun, Zhongdong wrote:


Hi Vladimir,

Thanks for your quick response.

As I understand, the apostrophe or single quote will be converted to 
** with the PHP function htmlspecialchars because it’s considered 
as a special character. See this: PHP: htmlspecialchars - Manual 
<https://www.php.net/htmlspecialchars>. Later, we can convert it back 
with function htmlspecialchars_decode if needed. I search the folder 
/usr/share/ganglia and find a lot of instances of htmlspecialchars but 
don’t know which one cause this problem. I’m not familiar with Ganglia 
and don’t know how to debug further. This seems to happen in many 
Rocky 8.4 machines, all are fresh installed. The ganglia-web version 
is 3.7.5-40. Could you please provide more advice how to debug this?


Thanks.

Zhongdong

*From:*Vladimir Vuksan 
*Sent:* Thursday, February 15, 2024 10:56 AM
*To:* ganglia-general@lists.sourceforge.net
*Subject:* Re: [Ganglia-general] stacked graph not working

It looks like a command line arguments encoding issue somewhere around 
here


https://github.com/ganglia/ganglia-web/blob/master/functions.php#L1410

Not sure why apostrophe is being replaced with . That's breaking 
the rrdtool invocation. You will need to investigate how to change 
that behavior.


Vladimir

On 2/14/24 12:19, Sun, Zhongdong wrote:

Hi everyone,

We just installed a new instance of Ganglia on Rocky OS 8.4.
Everything works well except the stacked graph doesn’t show up. I
searched this forum and found a few similar cases. For example,
Janet reported this issue in 2021, but in a CentOS 7 system.
Vladimir provided some solution but didn’t work in Rocky 8 system.
I also following some instructions for debug. Copied the address
of the stacked graph and appended ‘=5’, which produced a
command like this.

/usr/bin/rrdtool graph -  -E --start \&\#039\;-3600s\&\#039\;
--end \&\#039\;N\&\#039\; --width 700 --height 300 --title
\&\#039\; aggregated load_one last hour\&\#039\; --upper-limit
\&\#039\;0\&\#039\; --lower-limit \&\#039\;0\&\#039\; CDEF:total=0
CDEF:mean=total,0,/ CDEF:last_total=total,POP,0
CDEF:last_mean=last_total,0,/ COMMENT:'\j'
GPRINT:'total':AVERAGE:'Avg Total\: %5.2lf'
GPRINT:'last_total':LAST:'Current Total\: %5.2lf\c'
GPRINT:'mean':AVERAGE:'Avg Average\: %5.2lf'
GPRINT:'last_mean':AVERAGE:'Current Average\: %5.2lf\c'

When I ran this command in the machine, I got this result.

ERROR: start time: unparsable time: &-3600s

Does anyone know what can cause this? It seems a bug in
stacked.php or relative program, but I’m not familiar with this
and cannot figure it out.

By the way, we have been using Ganglia for a long time. It works
perfectly in CentOS 7. But we have to upgrade CentOS 7 since it’s
near end-of-life.

Any help would be appreciated.

Zhongdong




___

Ganglia-general mailing list

Ganglia-general@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/ganglia-general
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] stacked graph not working

2024-02-15 Thread Vladimir Vuksan

It looks like a command line arguments encoding issue somewhere around here

https://github.com/ganglia/ganglia-web/blob/master/functions.php#L1410

Not sure why apostrophe is being replaced with . That's breaking 
the rrdtool invocation. You will need to investigate how to change that 
behavior.


Vladimir

On 2/14/24 12:19, Sun, Zhongdong wrote:


Hi everyone,

We just installed a new instance of Ganglia on Rocky OS 8.4. 
Everything works well except the stacked graph doesn’t show up. I 
searched this forum and found a few similar cases. For example, Janet 
reported this issue in 2021, but in a CentOS 7 system. Vladimir 
provided some solution but didn’t work in Rocky 8 system. I also 
following some instructions for debug. Copied the address of the 
stacked graph and appended ‘=5’, which produced a command like this.


/usr/bin/rrdtool graph -  -E --start \&\#039\;-3600s\&\#039\; --end 
\&\#039\;N\&\#039\; --width 700 --height 300 --title \&\#039\; 
aggregated load_one last hour\&\#039\; --upper-limit 
\&\#039\;0\&\#039\; --lower-limit \&\#039\;0\&\#039\; CDEF:total=0 
CDEF:mean=total,0,/ CDEF:last_total=total,POP,0 
CDEF:last_mean=last_total,0,/ COMMENT:'\j' GPRINT:'total':AVERAGE:'Avg 
Total\: %5.2lf' GPRINT:'last_total':LAST:'Current Total\: %5.2lf\c' 
GPRINT:'mean':AVERAGE:'Avg Average\: %5.2lf' 
GPRINT:'last_mean':AVERAGE:'Current Average\: %5.2lf\c'


When I ran this command in the machine, I got this result.

ERROR: start time: unparsable time: &-3600s

Does anyone know what can cause this? It seems a bug in stacked.php or 
relative program, but I’m not familiar with this and cannot figure it 
out.


By the way, we have been using Ganglia for a long time. It works 
perfectly in CentOS 7. But we have to upgrade CentOS 7 since it’s near 
end-of-life.


Any help would be appreciated.

Zhongdong



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Stacked Graphs not working

2021-01-19 Thread Vladimir Vuksan
I believe this is an unrelated issue to stacked.php however still a bug. 
I have fixed it in master. You can apply the change yourself if you wish 
or simply update from master


https://github.com/ganglia/ganglia-web/commit/f5bdfca75f9f5d701c8f8e9310f7801cd2e62799

Vladimir

1/19/21 u 4:49 PM, Janet Houser je napisao/la:

Hi Vladimir,

Thank you for the quick response.   I made the changes you suggested 
on the github.com page and now it seems to be complaining with a new 
error:


[Tue Jan 19 14:41:45.757662 2021] [:error] [pid 1120] [client 
xxx.xx.xx.xxx:57004] reports = Array\n(\n    [load_report] => 
load_one\n    [cpu_report] => 1\n    [mem_report] => 1\n 
[network_report] => 1\n    [packet_report] => 1\n)\n, referer: 
http://ganglia.domain.com/ganglia/?m=load_one=hour=by%20name=4=2

ERROR: Could not make sense out of '0'


I should mention that I've made one change to the conf_default.php 
file.    To make the smaller graphs more readable, I changed the 
following line:


FROM -

    $conf['strip_domainname'] = false;

TO

    $conf['strip_domainname'] = true;

I've also changed my clients gmond.conf file to use the line:

  override_hostname = "hostname of system"

I did this because for my larger clusters of systems having the full 
domain in the dropdown menus was looking messy.


I don't think this affects the stacked graphs, but I wanted to mention 
the changes.


Thanks for all your help.

Cheers,

janet


On 1/19/21 1:55 PM, Vladimir Vuksan wrote:


Hi Janet,

Can you please try this diff

https://github.com/ganglia/ganglia-web/commit/14e657ac8e63012309b25307478b562a348175ee

It should correct the issue.

Vladimir

1/19/21 u 1:21 PM, Janet Houser je napisao/la:

Hi Folks,

I just installed a new instance of Ganglia on a CentoOS 7 system and 
everything appears working except for the Stacked Graph.   The http 
logs shows the following

error:


[Tue Jan 19 11:15:42.176638 2021] [:error] [pid 8305] [client 
xxx.xx.xx.xxx:52348] reports = Array\n(\n    [load_report] => 
load_one\n    [cpu_report] => 1\n    [mem_report] => 1\n    
[network_report] => 1\n    [packet_report] => 1\n)\n, referer: 
http://ganglia.domain.com/ganglia/?r=custom=01%2F19%2F2021+00%3A00=01%2F19%2F2021+23%3A00=Servers==m===false=load_one=1=small=4_regex=_graphs=0=by+name

*ERROR: start time: unparsable time: &-3600s

*
I think the error is in the /usr/share/ganglia/stacked.php file but 
I'm not sure.


Has anyone run into this issue and is there a fix?   My old instance 
had the stacked graph and it was very useful.


Cheers,



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


--
J.L. Houser
Senior Systems Administrator
National Solar Observatory
3665 Discovery Drive
Boulder, CO 80303
Office Phone:  (303) 7357357

"Never give me root access."

IT Motto:   "Do or do not, there is no try"
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Stacked Graphs not working

2021-01-19 Thread Vladimir Vuksan

Hi Janet,

Can you please try this diff

https://github.com/ganglia/ganglia-web/commit/14e657ac8e63012309b25307478b562a348175ee

It should correct the issue.

Vladimir

1/19/21 u 1:21 PM, Janet Houser je napisao/la:

Hi Folks,

I just installed a new instance of Ganglia on a CentoOS 7 system and 
everything appears working except for the Stacked Graph.   The http 
logs shows the following

error:


[Tue Jan 19 11:15:42.176638 2021] [:error] [pid 8305] [client 
xxx.xx.xx.xxx:52348] reports = Array\n(\n    [load_report] => 
load_one\n    [cpu_report] => 1\n    [mem_report] => 1\n 
[network_report] => 1\n    [packet_report] => 1\n)\n, referer: 
http://ganglia.domain.com/ganglia/?r=custom=01%2F19%2F2021+00%3A00=01%2F19%2F2021+23%3A00=Servers==m===false=load_one=1=small=4_regex=_graphs=0=by+name

*ERROR: start time: unparsable time: &-3600s

*
I think the error is in the /usr/share/ganglia/stacked.php file but 
I'm not sure.


Has anyone run into this issue and is there a fix?   My old instance 
had the stacked graph and it was very useful.


Cheers,



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Seeking Resource for Creating New Charts

2020-09-01 Thread Vladimir Vuksan

Hi Gregory,

Inside the Ganglia Web archive there is a templates/default directory 
where the view templates are stored. You would need to modify those. 
Specifically look at cluster_view and meta_view templates.


Vladimir

9/1/20 u 10:05 AM, Beyer, Gregory L je napisao/la:


Hello, I would like to add charts to our cluster summary and grid 
summary.  Can anyone direct me to resources on how one creates and 
adds charts from scratch?


Thanks.

__
*Gregory Beyer*
/Sr. Systems Support Engineer/
Partnership for Advanced Computing Environment (PACE)
*Georgia Institute of Technology*
gbey...@gatech.edu 



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] ganglia alert

2020-03-25 Thread Vladimir Vuksan

Hi Valerio,

Unfortunately last couple weeks have been pretty rough for many people. 
I don't really have much input on the init script. You are probably best 
off trying to adapt the init script to systemd on your own.


Sincerely,

Vladimir


3/25/20 u 5:50 AM, Valerio Bellizzomi je napisao/la:

Is it normal to not get a reply for so long time on this list?


On Fri, 2020-03-13 at 05:50 +0100, Valerio Bellizzomi wrote:

Greetings,
I would like to setup ganglia-alert on Debian, but the init script is
very old and does not fit with the new systemd setup.

suggestions?







___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia Development

2019-10-29 Thread Vladimir Vuksan

Hi Doug,

I have been meaning to write about this before but I haven't had the 
time to work on much Ganglia related. At this time I do not believe we 
have any active maintainers. We need new maintainers so if you or anyone 
else is interested please let me know.


Vladimir

10/28/19 u 11:28 PM, Doug Meyer je napisao/la:

Hi,

What happened to ganglia development?  Has this project been dropped?  
3.7.2 was the last release (I believe) and t is hard to believe 
nothing has needed to be updated.


Thank you,
Doug




___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Unusual load percentage reported by ganglia

2017-08-29 Thread Vladimir Vuksan

  
  
Scroll through the machines. Pick
  cpu_report when viewing and see if any machine is reporting weird
  CPU numbers.
  
  08/29/2017 u 01:08 PM, Imam Toufique je napisao/la:


  Hi, 


Please give me a hand here, how do I check for that?  If I
  understand your question correctly, did you ask me to check
  the total number of machines reporting correctly?


Thanks.
  
  
On Tue, Aug 29, 2017 at 5:48 AM,
  Vladimir Vuksan <vli...@veus.hr>
  wrote:
  

  Can you
check if any particular machine is misreporting it's
metrics ?

Vladimir


08/28/2017 u 08:34 PM, Imam Toufique je napisao/la:
  
  

  
Hello, 


I have been using ganglia for about 2 months
  now.  version 3.7.2 (for core and web).   I have
  noticed that average load is in millions. Please
  see below: 


CPUs Total:	9860
Hosts up:	268
Hosts down:	1
 
Current Load Avg (15, 5, 1m):
  43559570%, 43559570%, 43559570%
Avg Utilization (last hour):
  43559570%
Localtime:
  2017-08-25 21:30


I am not sure what's causing these abnormal
  numbers.  


Please help!  thanks.
  




--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general

  
  
  


--
Check out the vibrant tech community on one of the world's
most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general

  





-- 
Regards,
  Imam Toufique
  213-700-5485

  



  


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Unusual load percentage reported by ganglia

2017-08-29 Thread Vladimir Vuksan

  
  
Can you check if any particular machine
  is misreporting it's metrics ?
  
  Vladimir
  
  
  08/28/2017 u 08:34 PM, Imam Toufique je napisao/la:


  

  Hello, 
  
  
  I have been using ganglia for about 2 months now.
 version 3.7.2 (for core and web).   I have noticed that
average load is in millions. Please see below: 
  
  
  CPUs Total:	9860
  Hosts up:	268
  Hosts down:	1
   
  Current Load Avg (15, 5, 1m):
    43559570%, 43559570%, 43559570%
  Avg Utilization (last hour):
    43559570%
  Localtime:
    2017-08-25 21:30
  
  
  I am not sure what's causing these abnormal numbers.  
  
  
  Please help!  thanks.

  
  
  
  
  --
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general




  


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia web UI tab rendering

2017-03-27 Thread Vladimir Vuksan
Can you look in the developer tools whether Javascript and CSS is being 
loaded correctly ?

Vladimir

03/27/2017 u 03:25 PM, Tom Wallace je napisao/la:
> Hello,
>
> I am using Ganglia web frontend 3.7.1 on a cluster of RHEL 7 machines.
>
> My one problem is that tabs are not rendering correctly - they show up 
> as unformatted HTML rather than as dynamic tab objects. Here is a 
> screenshot for what I mean: http://imgur.com/a/3aF5w
>
> How might I fix this?


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Problem with the inspect button on Ganglia 3.7.2

2017-03-17 Thread Vladimir Vuksan

  
  
How did you install Ganglia Web ?
  
  Vladimir
  
  03/17/2017 u 09:54 AM, BALLAUD Sylvain (Prestataire) je
  napisao/la:


  
  
  
  
Hi,
 
I have a problem on
Ganglia 3.7.2. When I click on the button Inspect, the new
window is blank. I see the data on the graph but no data on
the Inspect field.

 
I use firebug to see
sometime wrong. On the console errors, I see this when I
click on the button Inspect :
 
TypeError: $.plot is undefined
     
    jquery > eval (ligne 571,
  col. 5)
TypeError: s.plot is
  undefined 
   jquery8573826 (ligne 1, col.
  1240)
TypeError: o.plot is
undefined
    jquery8573825 (ligne 1, col. 1400)
 
Maybe a problem with _javascript_. I test on
  Internet Explorer and Firefox but the window is always
  blank.
  
 
Do you have an issue about that ?
 
  


  


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] ganglia working properly but metrics not graphing

2017-02-06 Thread Vladimir Vuksan

  
  
Can you inspect the resulting HTML that
  shows no graphs. You should find HTML image references for
  anything graph.php. Pick any and try to open those in a browser.
  See what the output is then append
  
  =5
  
  Also what version of Ganglia Web is this ?
  
  Vladimir
  
  02/06/2017 u 11:02 AM, Huckleby, Barbara A je napisao/la:


  
  
  
  
  
[Mon Feb 06
10:07:28 2017] [error] [client 10.254.17.137] PHP Warning: 
date(): It is not safe to rely on the system's timezone
settings. You are *required* to use the date.timezone
setting or the date_default_timezone_set() function. In case
you used any of those methods and you are still getting this
warning, you most likely misspelled the timezone identifier.
We selected 'America/New_York' for 'EST/-5.0/no DST' instead
in /var/www/html/ganglia/header.php on line 5, referer:
http://u060bdsa14a.kroger.com/ganglia/
[Mon Feb 06
10:12:29 2017] [error] [client 10.254.17.137] PHP Warning: 
date(): It is not safe to rely on the system's timezone
settings. You are *required* to use the date.timezone
setting or the date_default_timezone_set() function. In case
you used any of those methods and you are still getting this
warning, you most likely misspelled the timezone identifier.
We selected 'America/New_York' for 'EST/-5.0/no DST' instead
in /var/www/html/ganglia/header.php on line 5, referer:
http://u060bdsa14a.kroger.com/ganglia/
ERROR: start
time: There should be number after '-'
[Mon Feb 06
10:20:32 2017] [error] [client 10.254.17.137] File does not
exist: /var/www/html/favicon.ico, referer:
http://u060bdsa14a.kroger.com/ganglia/
ERROR: start
time: There should be number after '-'
ERROR: start
time: There should be number after '-'
[Mon Feb 06
10:22:49 2017] [error] [client 10.254.17.137] File does not
exist: /var/www/html/favicon.ico, referer:
http://u060bdsa14a.kroger.com/ganglia/
ERROR: start
time: There should be number after '-'
ERROR: start
time: There should be number after '-'
ERROR: start
time: There should be number after '-'
 
I noticed I had
not copied the /var/www/html/ganglia/ directory from the old
server.   I’ve done that, and it still did not fix the
problem.  A co-worker also found an article regarding
changing:
  send_metadata_interval = 0 to
send_metadata_interval = 30.   This didn’t make any
difference either.   After I copied the html stuff, I am
still seeing the date error in the httpd log.
  


  


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] ganglia working properly but metrics not graphing

2017-02-06 Thread Vladimir Vuksan

  
  
If you look in the Apache error logs is
  there anything in there about it ?
  
  Vladimir
  
  02/06/2017 u 10:31 AM, Huckleby, Barbara A je napisao/la:


  
  
  
  
Altogether
missing.   
 

  Thanks,
   
  Barb Huckleby
  Big Data
  Architect
  Monday (Home
  Office) 513-941-2741
  Tuesday-Friday
  (513) 387-8583
   
  The
  Kroger Company
  Blue
  Ash Technical Center BN313
  11450
  Grooms Road
  Cincinnati,
  OH 45242

 

  
From:
Vladimir Vuksan [mailto:vli...@veus.hr]

Sent: Monday, February 06, 2017 10:12 AM
To: ganglia-general@lists.sourceforge.net
Subject: Re: [Ganglia-general] ganglia working
properly but metrics not graphing
  

 

  Does it show metrics as broken images or
are they altogether missing ?

Are you using rrdcached ?

Vladimir

02/06/2017 u 07:56 AM, Huckleby, Barbara A je napisao/la:


  I move gmetad from one server to another. I can see in the
rrds directory that all of the metrics are being accumulated
properly. However, when I try to view them in the web ui,
the metrics are not being graphed. The web ui launches, load
values are being updated, the heat map is being updated,
boxes for all of the servers show up and are color coded
based on the load, the metrics titles show up in the drop
down, but no metrics are being graphed. Any help would be
appreciated.

 
  
  
  
  
This e-mail message, including any attachments, is for the sole
use of the intended recipient(s) and may contain information
that is confidential and protected by law from unauthorized
disclosure. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended
recipient, please contact the sender by reply e-mail and destroy
all copies of the original message.
  



  


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] ganglia working properly but metrics not graphing

2017-02-06 Thread Vladimir Vuksan

  
  
Does it show metrics as broken images
  or are they altogether missing ?
  
  Are you using rrdcached ?
  
  Vladimir
  
  02/06/2017 u 07:56 AM, Huckleby, Barbara A je napisao/la:


  
  
  
  
I move gmetad from one server to another. I can see in the
  rrds directory that all of the metrics are being accumulated
  properly. However, when I try to view them in the web ui, the
  metrics are not being graphed. The web ui launches, load
  values are being updated, the heat map is being updated, boxes
  for all of the servers show up and are color coded based on
  the load, the metrics titles show up in the drop down, but no
  metrics are being graphed. Any help would be appreciated.
  



  


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia setup with 100 nodes

2016-12-07 Thread Vladimir Vuksan

  
  
I don't believe that should be an issue
  but it's puzzling that it just stop working.
  
  Can you try switching to unicast to see if that makes a
  difference. Here is the quickstart document.
  
  https://github.com/ganglia/monitor-core/wiki/Ganglia-Quick-Start
  
  Vladimir
  
  12/07/2016 u 05:59 AM, Vc, Sarathchandran (Nokia - IN/Bangalore)
  je napisao/la:


  
  
   
  We have a 100 node cluster and
which is monitored by Ganglia .We are facing some issue
on the setup as below.
   
  Here is the details
   
  Three group cluster group created
which is monitored by three multicast IP
   
  APP_CLUS  239.2.11.71  
  10 NODES
  DB_CLUS   239.2.11.72  
  80 NODES
  SUP_CLUS   239.2.11.73   10 NODES
   
  Once I have started the gmond
service in all the 100 nodes ganglia web page will show
all the node status properly .
  After exact 5 mins from DB_CLUS
70 nodes will say dead and critical .But node is up and
runningL .Changed all the
configuration multicast IP everything but result is same
.
   
  If I restarted the gmond in all
the nodes again same issue will come after 5 mins.
   
  Is there any
  limitation in multicast IP or ganglia ? We have a 20 node
  cluster which is working fine without any issues .Only one
  difference between these two setup is 100 node cluster is
  running in DNS and 20 node cluster is with local host
  names.


  


--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today.http://sdm.link/xeonphi___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Fwd: Ganglia-general Digest, Vol 124, Issue 1

2016-09-27 Thread Vladimir Vuksan

  
  
Hi Ravi,
  
  Can you provide some more details on your set up e.g. what
  versions are you using, what and how was IP changed ?
  
  Please review the Ganglia Quickstart document to compare it with
  your own config
  
  https://github.com/ganglia/monitor-core/wiki/Ganglia-Quick-Start
  
  Vladimir
  
  09/27/2016 u 09:14 AM, Ravi Sankar je napisao/la:


  

  Dear Team,

  




Would seek your help on
  following,we recently,did IP change in one of our
  ganglia clients,since then that particular not able to
  monitor by Ganglia,getting following message,also some
  of the nodes doesn't appear in the pop-up list,getting
  "This host is not found".Kindly help to share if
  anyone came across the similar issue,appreciate your
  help,await for your reply.Thanks


Version:3.0.7
Platform:RHEL 4.
  

  

  


  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Show graph in a specific cluster view

2016-06-30 Thread Vladimir Vuksan
Hi Gustavo,

you should be able to do this by using Edit Optional Reports in the 
cluster view.

Vladimir

06/30/2016 u 10:12 AM, Gustavo Berman je napisao/la:
> Hello!
>
> We have many clusters and we collect all the information in just one 
> gmetad/ganglia-web
> I created a json graph and I'm able to see it alright. I just put it 
> on graph.d/ directory
>
> But I see it on every cluster that we have.
>
> Some of this clusters shows no information on the graph since that 
> cluster doesn't produce that information (in my case is environmental 
> temperature of a room)
>
> How do I specify that I want to show that graph in just one specific 
> cluster?
>


--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] [PYTHON] Can't find the metric_init function in the python module [varnish].

2016-04-25 Thread Vladimir Vuksan

  
  
Sorry for the delay. I assume
  varnish.py is in /usr/lib/ganglia/python directory ? Also which
  varnish metrics script are you using ?
  
  Vladimir
  
  04/18/2016 u 10:46 AM, Ayman Al-Shorman je napisao/la:


  
  Hi Vladimir,


Any suggestions ?



  
  
From: ayman_shor...@hotmail.com
To: vli...@veus.hr; ganglia-general@lists.sourceforge.net
Date: Sun, 17 Apr 2016 17:27:46 +0300
Subject: Re: [Ganglia-general] [PYTHON] Can't find the
metric_init function in the python module [varnish].


OS: centos 6.6   Ganglia: 3.7.2
  


Ayman
  
  
Subject: Re:
[Ganglia-general] [PYTHON] Can't find the
metric_init function in the python module [varnish].
To: ayman_shor...@hotmail.com;
ganglia-general@lists.sourceforge.net
From: vli...@veus.hr
Date: Sun, 17 Apr 2016 10:16:05 -0400

What OS and Ganglia
  version is this running on ?
  
  Vladimir
  
  04/17/2016 u 08:37 AM, Ayman Al-Shorman je
  napisao/la:


  
  Hi Vladimir,


yes i can see the output of the plugin.





  varnish_MAIN.fetch_1xx = 0.00
  varnish_MAIN.fetch_204 = 0.00
  varnish_MAIN.fetch_304 = 0.00
  varnish_MAIN.bans = 1.00
  varnish_MAIN.bans_added = 0.00
  varnish_MAIN.bans_dups = 0.00
  varnish_MAIN.bans_tested = 0.00
  varnish_MAIN.bans_deleted = 0.00
  varnish_MAIN.n_gunzip = 0.00
  varnish_MAIN.n_gzip = 0.00
  varnish_MAIN.n_waitinglist = 0.00
  varnish_MAIN.vmods = 2.00
  varnish_SMA.s0.c_bytes =
241777981447.00
  varnish_SMA.s0.c_freed =
240704265477.00
  varnish_SMA.s0.g_bytes =
1073715970.00
  varnish_SMA.s0.g_space = 25854.00
  Sleeping 15 seconds
  
  
  
  
  Thanks
  

  Ayman
  
  
To: ganglia-general@lists.sourceforge.net
From: vli...@veus.hr
Date: Sun, 17 Apr 2016 08:14:08 -0400
Subject: Re: [Ganglia-general] [PYTHON]
Can't find the metric_init function in the
python module [varnish].

Can you try
  to run the varnishstat.py by hand to see
  if outputs the metrics values.
  
  Vladimir
  
  04/16/2016 u 02:33 PM, Ayman Al-Shorman je
  napisao/la:


  
  Hi,


I'm trying to plot varnish stats by
  the varnish python module but when i
  run gmond -d 5 i get :



  [PYTHON]
  Can't find the metric_init
  function in the python module
  [varnish].
  


Unable to find any metric
  information for 

Re: [Ganglia-general] [PYTHON] Can't find the metric_init function in the python module [varnish].

2016-04-17 Thread Vladimir Vuksan

  
  
What OS and Ganglia version is this
  running on ?
  
  Vladimir
  
  04/17/2016 u 08:37 AM, Ayman Al-Shorman je napisao/la:


  
  Hi Vladimir,


yes i can see the output of the plugin.





  varnish_MAIN.fetch_1xx = 0.00
  varnish_MAIN.fetch_204 = 0.00
  varnish_MAIN.fetch_304 = 0.00
  varnish_MAIN.bans = 1.00
  varnish_MAIN.bans_added = 0.00
  varnish_MAIN.bans_dups = 0.00
  varnish_MAIN.bans_tested = 0.00
  varnish_MAIN.bans_deleted = 0.00
  varnish_MAIN.n_gunzip = 0.00
  varnish_MAIN.n_gzip = 0.00
  varnish_MAIN.n_waitinglist = 0.00
  varnish_MAIN.vmods = 2.00
  varnish_SMA.s0.c_bytes = 241777981447.00
  varnish_SMA.s0.c_freed = 240704265477.00
  varnish_SMA.s0.g_bytes = 1073715970.00
  varnish_SMA.s0.g_space = 25854.00
  Sleeping 15 seconds
  
  
  
  
  Thanks
  

  Ayman
  
  
To:
ganglia-general@lists.sourceforge.net
From: vli...@veus.hr
Date: Sun, 17 Apr 2016 08:14:08 -0400
Subject: Re: [Ganglia-general] [PYTHON] Can't find the
metric_init function in the python module [varnish].

Can you try to run the
  varnishstat.py by hand to see if outputs the metrics
  values.
  
  Vladimir
  
  04/16/2016 u 02:33 PM, Ayman Al-Shorman je napisao/la:


  
  Hi,


I'm trying to plot varnish stats by the varnish
  python module but when i run gmond -d 5 i get :



  [PYTHON] Can't find
  the metric_init function in the python module
  [varnish].
  


Unable to find any metric information for
  'varnish_(.+)'. Possible that a module has not
  been loaded.
  



Everything is in place and all libraries are linked
  properly to modpython.so  any suggestion ?


Thanks


Ayman
  
  
  
  
  --
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general




--
Find
and fix application performance issues faster with
Applications Manager
Applications Manager provides deep performance insights into
multiple tiers of
your business applications. It resolves application problems
quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


  

  

This email
  is safe. www.avast.com

  

  

  


  


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] [PYTHON] Can't find the metric_init function in the python module [varnish].

2016-04-17 Thread Vladimir Vuksan

  
  
Can you try to run the varnishstat.py
  by hand to see if outputs the metrics values.
  
  Vladimir
  
  04/16/2016 u 02:33 PM, Ayman Al-Shorman je napisao/la:


  
  Hi,


I'm trying to plot varnish stats by the varnish python
  module but when i run gmond -d 5 i get :



  [PYTHON] Can't find the
  metric_init function in the python module [varnish].
  


Unable to find any metric information for
  'varnish_(.+)'. Possible that a module has not been
  loaded.
  



Everything is in place and all libraries are linked
  properly to modpython.so  any suggestion ?


Thanks


Ayman
  
  
  
  
  --
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Fine grained monitoring problem

2016-04-08 Thread Vladimir Vuksan

  
  
Hi Theofilos,
  
  by default gmetad polls gmonds every 15 seconds and inserts them
  into RRDs. You can attempt to change that by adding the polling
  interval e.g. 1-3 seconds in gmetad.conf. To do so you would add
  it after the grid name e.g.
  
  data_source "my grid" 50 1.3.4.7:8655
  
  sets polling period of 50.
  
  This all said polling period of 1 second may be a bit too
  aggressive depending on the size of your cluster. 
  
  Vladimir
  
  04/08/2016 u 05:47 AM, theofilos moyratidis je napisao/la:


  
  
  
  
I have a cluster and I
want to get metrics every 1-3 seconds, to benchmark some
algorithms on spark.
I’ve set the data_source
“my cluster name” 1 hosts…. (multicast).
The UI on the hours tab,
gives me the results in every 12 seconds, that’s too chunky
for what I want to accomplish.
I used the rrdtool
export –step 1 etc… and I don’t get the results every
second.
What did I wrong?
 

  


  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] 3.7.2 RPMs

2016-03-28 Thread Vladimir Vuksan
Unfortunately we don't have any but it should be pretty easy to build 
them ie. download the tarball and do

rpmbuild -tb ganglia-3.7.2.tar.gz

you may need to install some of the dependencies but it should be pretty 
easy.

Vladimir


03/28/2016 u 11:45 AM, Damir Krstic je napisao/la:
> Does anyone have gangalia 3.7.2 RPMs available? I want to upgrade my 
> stateless Redhat 6.6 cluster (450+ compute nodes) to this version of 
> ganglia and without RPMs the process is not as straightforward as I like.


--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785471=/4140
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] How stop to report a metric for a died java process.

2016-02-26 Thread Vladimir Vuksan
Hi Jose,

issue is that JMXAgent is not setting the dmax value which by default 
will be set to 0 aka infinity. I haven't looked at JMXAgent in years so 
I don't really remember if that is possible. See if that is possible.

Vladimir


02/26/2016 u 08:06 AM, José Alejandro Camiño Iglesias je napisao/la:
> Hi,
>
> i am working in a project in whose we use Ganglia and JMXAgent to report some 
> metric of the JMX to the
> gmetad to analyse the cluster status.
>
> We noticed that if the java process that is reporting that metrics died, for 
> example by a OutOfMemory due to the charge on that component,
> the metric is still live in the gmetad and with the last value that was 
> reported by the gmond.
>
> I understand that the JMXAgent report the MBean value to the gmond and where 
> the process die gmond is reporting the last value that
> was published by the JMXAgent to the gmetad.
>
> Exist a form to do that the metric isn't reported or the value be a 
> predefined value (void, 0, -1 or similar)?
>
> Thanks,
>


--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] rrdcached /gmetad permission problems after update.

2016-02-23 Thread Vladimir Vuksan

  
  
I don't think it depends on a version.
  I assume anything 1.4.x will work.
  
  Vladimir
  
  02/23/2016 u 10:50 AM, Grigory Shamov je napisao/la:


  
  Dear Adrian, Vladimir,
  
  
  Thank you very much for the answers! 
  
  
  Does it depend on rrdtools/rrdcached version? Which one are
you using ?
  
  
  

  
-- 
Grigory Shamov
  
  Westgrid/ComputeCanada Site Lead
  University of Manitoba
  E2-588 EITC Building, 
  (204) 474-9625
  
  
  
  

  
  
  
  

  From: Vladimir Vuksan
  <vli...@veus.hr>
  Date: Tuesday, 23
  February, 2016 8:57 AM
  To: Adrian Sevcenco
  <adrian.sevce...@cern.ch>,
  "ganglia-general@lists.sourceforge.net"
  <ganglia-general@lists.sourceforge.net>,

  Grigory Shamov <grigory.sha...@umanitoba.ca>
  Subject: Re:
  [Ganglia-general] rrdcached /gmetad permission problems after
  update.




  
Another thing to try is to
  switch over to using TCP for rrdcached connections since
  that avoids contention on the rrdcached socket and should
  avoid some of the permissions issues. For example I am
  using following options
  
  OPTS=" -t 60 -w 180 -z 180 -F -s ganglia -m 664 -l
  127.0.0.1:9998 -s ganglia -m 777 -P FLUSH,STATS,HELP -l
  unix:/tmp/rrdcached.limited.sock -b /var/lib/ganglia/rrds
  -B -p /var/lib/ganglia/rrdcached.pid
  
  In the gmetad.conf you can then add
  
  rrdcached_address 127.0.0.1:9998
  
  Vladimir
  
  02/23/2016 u 09:34 AM, Adrian Sevcenco je napisao/la:


  On 02/22/2016 10:32 PM, Grigory Shamov wrote:

  
Hi All,

I have updated Gmond/Gmetad to 3.7.2 on our Ganglia server that uses also
RRDCached. 
It used to work, and configuration didn't  change, but bow metrics do not
get into the graphs anymore.
In the logs there is a lot of messages about permissions, and a new kind
of message about imuxsock thing:

Feb 22 13:18:40 host /usr/sbin/gmetad[3554]: RRD_update
(/var/lib/ganglia/rrds/Grex/__SummaryInfo__/rx_bytes_ib0.rrd): rrdcached:
Permission denied.
Feb 22 13:18:40 host rsyslogd-2177: imuxsock begins to drop messages from
pid 3554 due to rate-limiting

Does anyone know how to fix it? Thank you very much in advance!

  
  I had the same problem (and partially i still have one) ..
So :
1. that "drop messages" message is because of the write errors .. you
can ignore that

2. the problem is with rrdcached .. i tried with making part of group
ganglia, change ownership of rrds to ganglia:rrdcached but had the same
errors ... in the end i had to make the rrds dir 777 and i get rid of errors

3. ganglia web does not function with the rrdcached limited socket so i
had to use the same full socket that gmetad use ... i hope that nothing
bad will happen but i have no other choice...

HTH,
Adrian


  
  
  
  --
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/ganglia-general


  

  


  


--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] rrdcached /gmetad permission problems after update.

2016-02-23 Thread Vladimir Vuksan

  
  
Another thing to try is to switch over
  to using TCP for rrdcached connections since that avoids
  contention on the rrdcached socket and should avoid some of the
  permissions issues. For example I am using following options
  
  OPTS=" -t 60 -w 180 -z 180 -F -s ganglia -m 664 -l 127.0.0.1:9998
  -s ganglia -m 777 -P FLUSH,STATS,HELP -l
  unix:/tmp/rrdcached.limited.sock -b /var/lib/ganglia/rrds -B -p
  /var/lib/ganglia/rrdcached.pid
  
  In the gmetad.conf you can then add
  
  rrdcached_address 127.0.0.1:9998
  
  Vladimir
  
  02/23/2016 u 09:34 AM, Adrian Sevcenco je napisao/la:


  On 02/22/2016 10:32 PM, Grigory Shamov wrote:

  
Hi All,

I have updated Gmond/Gmetad to 3.7.2 on our Ganglia server that uses also
RRDCached. 
It used to work, and configuration didn't  change, but bow metrics do not
get into the graphs anymore.
In the logs there is a lot of messages about permissions, and a new kind
of message about imuxsock thing:

Feb 22 13:18:40 host /usr/sbin/gmetad[3554]: RRD_update
(/var/lib/ganglia/rrds/Grex/__SummaryInfo__/rx_bytes_ib0.rrd): rrdcached:
Permission denied.
Feb 22 13:18:40 host rsyslogd-2177: imuxsock begins to drop messages from
pid 3554 due to rate-limiting

Does anyone know how to fix it? Thank you very much in advance!

  
  I had the same problem (and partially i still have one) ..
So :
1. that "drop messages" message is because of the write errors .. you
can ignore that

2. the problem is with rrdcached .. i tried with making part of group
ganglia, change ownership of rrds to ganglia:rrdcached but had the same
errors ... in the end i had to make the rrds dir 777 and i get rid of errors

3. ganglia web does not function with the rrdcached limited socket so i
had to use the same full socket that gmetad use ... i hope that nothing
bad will happen but i have no other choice...

HTH,
Adrian


  
  
  
  --
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] inspect graph and csv export gives 1970-01-01 as timestamp

2015-12-30 Thread Vladimir Vuksan
Can you append =5 to whatever url you use for CSV export. You may need to 
look in browser dev tools to capture it. 

On December 30, 2015 4:14:59 AM EST, Tobbe Westman  wrote:
>Hi
> 
>I wonder if someone could  give me a suggestion how to get correct time
>in the inspect graph and for the the csv export.
>The graphs in ganglia-web gives correct time but when I select inspect
>it only shows a thin bar with the date 1970-01-01.
>ntp is running and the server has correct time. The timezone in php.ini
>is set and if I run gstat it gives the correct date and time. I have no
>errors in the logs so I really don't know what´s wrong in my
>configuration.
> 
>I have installed 
>Ganglia Web Frontend version 3.7.1
>Ganglia Web Backend (gmetad) version 3.7.2
>RRDtool version 1.5.5
> 
> 
> 
> 
>
>
>
>--
>
>
>
>
>___
>Ganglia-general mailing list
>Ganglia-general@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/ganglia-general

Vladimir--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Gweb cluster page stopped working after adding 500 custom metrics per server

2015-12-19 Thread Vladimir Vuksan
What Ganglia gmetad version are you running? Are you using rrdcached? 

On December 18, 2015 8:09:09 PM EST, Sergey  wrote:
>Addition: Ganglia Web log shows 500 error.
>
>Sergey
>
>
>
>> On Dec 11, 2015, at 11:52 AM, Sergey  wrote:
>> 
>> Hi All!
>> 
>> We added ~500 custom metrics/server in one cluster and now this
>cluster page stopped working. 
>> All other clusters are working properly.
>> It looks like some timeout value should be updated in Gweb, because
>the data retrieving time was increased.
>> Do you know how to fix this?
>> 
>> The mobile page is still showing all data from this cluster.
>> 
>> Thanks!
>> Sergey
>
>
>--
>___
>Ganglia-general mailing list
>Ganglia-general@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/ganglia-general

Vladimir--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Missing source RPMs for Ganglia gmond and gmetad components

2015-11-25 Thread Vladimir Vuksan

  
  
Hi Mahendra,
  
  you should be able to take the Ganglia tarball and build from
  there e.g.
  
  rpmbuild -tb ganglia-3.7.2.tar.gz
  
  should do the trick.
  
  11/25/2015 u 06:20 AM, Mahendra Ladhe je napisao/la:


  Hi,

   I'm searching for source RPMs for Ganglia components.
I found only the following two from web.
ganglia-3.7.2-6.fc24.src.rpm
ganglia-web-3.5.4-1.src.rpm  (the latest version was not
found).

I also need the following.

ganglia-gmetad-3.7.2-6.fc24.src.rpm
ganglia-gmond-3.7.2-6.fc24.src.rpm

But above two src RPMs are nowhere on the web.
Could someone please point to the place where I could get it ?

Thank you.
Mahendra
  
  
  
  
  --
Go from Idea to Many App Stores Faster with Intel(R) XDK
Give your users amazing mobile app experiences with Intel(R) XDK.
Use one codebase in this all-in-one HTML5 development environment.
Design, debug & build mobile apps & 2D/3D high-impact games for multiple OSs.
http://pubads.g.doubleclick.net/gampad/clk?id=254741551=/4140
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Go from Idea to Many App Stores Faster with Intel(R) XDK
Give your users amazing mobile app experiences with Intel(R) XDK.
Use one codebase in this all-in-one HTML5 development environment.
Design, debug & build mobile apps & 2D/3D high-impact games for multiple OSs.
http://pubads.g.doubleclick.net/gampad/clk?id=254741551=/4140___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Window binary request

2015-11-17 Thread Vladimir Vuksan
Hi Keith,

Unfortunately it's unlikely we'll be able to provide it. I think the 
only realistic option is to use HSflowd on the clients and use a 
non-windows build to run the server components.

Sorry,

Vladimir

11/17/2015 u 07:27 AM, Keith Brown je napisao/la:
> Anyone? I am getting rather desperate.
>
>
> On Mon, Nov 16, 2015 at 8:18 PM, Keith Brown  wrote:
>> I would like to have the server and client. I don't want to mix and
>> match. Can someone please provide this to us? I tried to compile it
>> with cygwin64 but no luck.
>>
>>
>> On Mon, Nov 16, 2015 at 7:36 AM, Bostjan Skufca  wrote:
>>> If you need client only (not gmetad), maybe host_sflow is what you are
>>> looking for?
>>> http://www.sflow.net/
>>>
>>> b.
>>>
>>>
>>> On 16 November 2015 at 13:28, Keith Brown  wrote:
 Hello,

 I am having a hard time trying to compile windows binaries using
 cygwin. Can the developers please provide a Windows binary? This would
 be very helpful!

 --
 Presto, an open source distributed SQL query engine for big data, initially
 developed by Facebook, enables you to easily query your data on Hadoop in a
 more interactive manner. Teradata is also now providing full enterprise
 support for Presto. Download a free open source copy now.
 http://pubads.g.doubleclick.net/gampad/clk?id=250295911=/4140
 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general
> --
> ___
> Ganglia-general mailing list
> Ganglia-general@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ganglia-general


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] organizing graphs into groups

2015-10-16 Thread Vladimir Vuksan
Hi Aaron,

Metrics are added to metrics group if you send the proper metric group 
e.g. in gmetric this flag is available

   -g, --group=STRINGGroup(s) of the metric (comma-separated)


As far as adding mySQL summary graphs only to certain hosts you don't 
want to add it to default.json but in host specific override e.g. in 
/var/lib/ganglia-web/conf you would add host_myhostname.domain.com.json 
with following

{
   "excluded_reports": [
 "mem_report"
   ],
   "included_reports": [
 "mysql_report"
   ]
}

This would remove the memory report but include mysql report just for 
this host. You can also do it through the UI assuming you have 
reconfigured auth system not to be read-only and clicking the edit 
optional graphs button.

Vladimir


10/16/2015 u 10:41 AM, Aaron je napisao/la:
> Hi, I added a number of mysql graphs into the default.json file.   Now 
> they appear in every cluster summary area and every host.  How do make 
> it so the graphs only appears for a specific host?  Also how do I 
> group the metrics into groups?


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] High SystemCPU usage, low UserCPU usage

2015-10-13 Thread Vladimir Vuksan

  
  
System CPU is CPU time spent in kernel
  mode. Usually it indicates some type of an I/O issue whether it's
  lots of disk utilization, network utilization, network file
  systems hanging e.g. NFS. You would need to review other metrics.
  
  Vladimir
  
  10/13/2015 u 01:49 PM, Kamran Khan je napisao/la:


  
  
  
Hi All,


This isn't a problem with Ganglia, but I was hoping I might
  get a little advice on what I am seeing.  I have a customer
  who is running ls-dyna applications, and he is noticing
  something odd.  He is noticing his jobs being bogged down and
  not running at their full capacity.  He looked at the Ganglia
  web interface and saw that "System CPU" was at 100%, while
  "User CPU" was at like 20%.  What processes does the "System
  CPU" refer to?  What tools can I use to track what might be
  pushing the "System CPU" to 100%?  There are times when the
  "User CPU" goes up to 100%, which is what he wants, but then
  at times it spikes down to 20% ish and the "System CPU" stays
  up around 100%.


Any advice is greatly appreciated.  If you need me to send
  output, I certainly can.  Just let me know what to run.


Please let me know.

  Thanks.

  
--
  Kamran Khan
PSSC Labs
HPC Software / Technical Engineer
  

  
  
  
  
  --

  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] Ganglia Web 3.7.1 released

2015-10-01 Thread Vladimir Vuksan
Ganglia Web 3.7.1 has been released. It can be downloaded from

https://sourceforge.net/projects/ganglia/files/ganglia-web/3.7.1

Major changes

- Fix for auth bypass when using the authentication module
- Fix for a XSS in the view adding interface
- Update JQuery Mobile library to 1.4.5

Please update as soon as practicable.

Vladimir

--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] binding gmond to an interface?

2015-09-23 Thread Vladimir Vuksan
You can achieve sending metrics through a different interface by adding 
a route entry.

Vladimir

09/23/2015 u 01:39 PM, Grigory Shamov je napisao/la:
> Hi All,
>
> Is there a way to bind gmond not to hostname, but to another interface?
> For example, if you have hostname on eth0, but want to send your unicast
> metrics to eth1.
>


--
Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
Get real-time metrics from all of your servers, apps and tools
in one place.
SourceForge users - Click here to start your Free Trial of Datadog now!
http://pubads.g.doubleclick.net/gampad/clk?id=241902991=/4140
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] List of metrics

2015-09-01 Thread Vladimir Vuksan

  
  
 Hi Jeremy,
  
  it largely depends on how you configure the agent. By default and
  if you install the default ganglia python module set you will see
  ones below. You can add many more by adding additional modules
  from e.g.
  
  http://github.com/ganglia/gmond_python_modules/
  
  or
  
  http://github.com/ganglia/gmetric/
  
  NAME="boottime"
  NAME="bytes_in"
  NAME="bytes_out"
  NAME="cpu_aidle"
  NAME="cpu_ctxt"
  NAME="cpu_idle"
  NAME="cpu_intr"
  NAME="cpu_nice"
  NAME="cpu_num"
  NAME="cpu_sintr"
  NAME="cpu_speed"
  NAME="cpu_steal"
  NAME="cpu_system"
  NAME="cpu_user"
  NAME="cpu_wio"
  NAME="disk_free"
  NAME="disk_free_absolute_rootfs"
  NAME="disk_free_percent_rootfs"
  NAME="diskstat_vda_io_time"
  NAME="diskstat_vda_percent_io_time"
  NAME="diskstat_vda_read_bytes_per_sec"
  NAME="diskstat_vda_reads"
  NAME="diskstat_vda_reads_merged"
  NAME="diskstat_vda_read_time"
  NAME="diskstat_vda_weighted_io_time"
  NAME="diskstat_vda_write_bytes_per_sec"
  NAME="diskstat_vda_writes"
  NAME="diskstat_vda_writes_merged"
  NAME="diskstat_vda_write_time"
  NAME="diskstat_xvda_io_time"
  NAME="diskstat_xvda_percent_io_time"
  NAME="diskstat_xvda_read_bytes_per_sec"
  NAME="diskstat_xvda_reads"
  NAME="diskstat_xvda_reads_merged"
  NAME="diskstat_xvda_read_time"
  NAME="diskstat_xvda_weighted_io_time"
  NAME="diskstat_xvda_write_bytes_per_sec"
  NAME="diskstat_xvda_writes"
  NAME="diskstat_xvda_writes_merged"
  NAME="diskstat_xvda_write_time"
  NAME="disk_total"
  NAME="entropy_avail"
  NAME="gexec"
  NAME="icmp_inaddrmaskreps"
  NAME="icmp_inaddrmasks"
  NAME="icmp_incsumerrors"
  NAME="icmp_indestunreachs"
  NAME="icmp_inechoreps"
  NAME="icmp_inechos"
  NAME="icmp_inerrors"
  NAME="icmp_inmsgs"
  NAME="icmp_inparmprobs"
  NAME="icmp_inredirects"
  NAME="icmp_insrcquenchs"
  NAME="icmp_intimeexcds"
  NAME="icmp_intimestampreps"
  NAME="icmp_intimestamps"
  NAME="icmpmsg_intype0"
  NAME="icmpmsg_intype11"
  NAME="icmpmsg_intype3"
  NAME="icmpmsg_intype8"
  NAME="icmpmsg_outtype0"
  NAME="icmpmsg_outtype3"
  NAME="icmpmsg_outtype8"
  NAME="icmp_outaddrmaskreps"
  NAME="icmp_outaddrmasks"
  NAME="icmp_outdestunreachs"
  NAME="icmp_outechoreps"
  NAME="icmp_outechos"
  NAME="icmp_outerrors"
  NAME="icmp_outmsgs"
  NAME="icmp_outparmprobs"
  NAME="icmp_outredirects"
  NAME="icmp_outsrcquenchs"
  NAME="icmp_outtimeexcds"
  NAME="icmp_outtimestampreps"
  NAME="icmp_outtimestamps"
  NAME="ip_defaultttl"
  NAME="ip_forwarding"
  NAME="ip_forwdatagrams"
  NAME="ip_fragcreates"
  NAME="ip_fragfails"
  NAME="ip_fragoks"
  NAME="ip_inaddrerrors"
  NAME="ip_indelivers"
  NAME="ip_indiscards"
  NAME="ip_inhdrerrors"
  NAME="ip_inreceives"
  NAME="ip_inunknownprotos"
  NAME="ip_outdiscards"
  NAME="ip_outnoroutes"
  NAME="ip_outrequests"
  NAME="ip_reasmfails"
  NAME="ip_reasmoks"
  NAME="ip_reasmreqds"
  NAME="ip_reasmtimeout"
  NAME="load_fifteen"
  NAME="load_five"
  NAME="load_one"
  NAME="machine_type"
  NAME="mem_anonpages"
  NAME="mem_buffers"
  NAME="mem_cached"
  NAME="mem_dirty"
  NAME="mem_free"
  NAME="mem_hardware_corrupted"
  NAME="mem_mapped"
  NAME="mem_shared"
  NAME="mem_total"
  NAME="mem_writeback"
  NAME="os_name"
  NAME="os_release"
  NAME="part_max_used"
  NAME="pkts_in"
  NAME="pkts_out"
  NAME="proc_run"
  NAME="procs_blocked"
  NAME="procs_created"
  NAME="procstat_gmond_cpu"
  NAME="procstat_gmond_mem"
  NAME="proc_total"
  NAME="rx_bytes_eth0"
  NAME="rx_bytes_eth1"
  NAME="rx_bytes_lo"
  NAME="rx_drops_eth0"
  NAME="rx_drops_eth1"
  NAME="rx_drops_lo"
  NAME="rx_errs_eth0"
  NAME="rx_errs_eth1"
  NAME="rx_errs_lo"
  NAME="rx_pkts_eth0"
  NAME="rx_pkts_eth1"
  NAME="rx_pkts_lo"
  NAME="softirq_block"
  NAME="softirq_blockiopoll"
  NAME="softirq_hi"
  NAME="softirq_hrtimer"
  NAME="softirq_netrx"
  NAME="softirq_nettx"
  NAME="softirq_rcu"
  NAME="softirq_sched"
  NAME="softirq_tasklet"
  NAME="softirq_timer"
  NAME="swap_free"
  NAME="swap_total"
  NAME="tcp_activeopens"
  NAME="tcp_attemptfails"
  NAME="tcp_attemptfails_percentage"
  NAME="tcp_currestab"
  NAME="tcp_estabresets"
  NAME="tcpext_arpfilter"
  NAME="tcpext_busypollrxpackets"
  NAME="tcpext_delayedacklocked"
  NAME="tcpext_delayedacklost"
  NAME="tcpext_delayedacks"
  NAME="tcpext_embryonicrsts"
  NAME="tcpext_ipreversepathfilter"
  

Re: [Ganglia-general] ganglia - riemann interface broken?

2015-08-24 Thread Vladimir Vuksan

  
  
Hi Oleksandr,
  
  I suspect those files were removed because they are part of
  Riemann distribution. I have it building cleanly on Ubuntu 14.04
  system since the header files are found in libriemann-client-dev
  package
  
  # dpkg -S /usr/include/riemann/proto/riemann.pb-c.h
  libriemann-client-dev: /usr/include/riemann/proto/riemann.pb-c.h
  
  I am not sure what the comparable package is under Centos.
  
  Vladimir
  
  08/23/2015 u 12:57 PM, Oleksandr Yermolenko je napisao/la:


  
  is there someone who uses ganglia with riemann integration?
  ganglia version and OS?
  
  Oleksandr
  
  
  On 08/21/2015 02:36 PM, Oleksandr
Yermolenko wrote:
  
  

Hi, All,

as far I can understand, riemann files was removed from 3.7.1.
http://fossies.org/diffs/ganglia/3.7.0_vs_3.7.1/ 
. Why? :-)

Anyway, I need riemann support. I copied removed files from
collectd 5.5.0 src
(riemann.pb-c.h , riemann.pb-c.c) to ganglia/gmetad and I was
able 
to compile with success. But, I'm not sure it correct way and
how gmetad will work after that ???

May someone from developers comment the situation? What
additional rpm I need to install

Oleksandr




On 08/18/2015 04:34 PM, Oleksandr
  Yermolenko wrote:


  
  Hi All,

trying to rebuild ganglia with riemann support, but got the following error.

export_helpers.h:28:26: fatal error: riemann.pb-c.h: No such file or directory

3.7.1 (3.7.2), centos 7, riemann-0.2.10
according to https://github.com/ganglia/monitor-core/wiki/Riemann-Integration
$ ./bootstrap
$ ./configure --with-gmetad --with-riemann
$ make ... and  error

does somebody have idea why it happened, how to avoid it or what I have installed riemann's related?

thanks a lot for your help

Oleksandr



  
  
  
  
  
  --

  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] gmetad problem

2015-07-13 Thread Vladimir Vuksan

  
  
Hi Martin,
  
  based on the error message 
  
  Unable to mkdir /var/lib/ganglia/rrds/NAME
  
  can you find out why gmetad is not able to write in that directory
  ?
  
  Vladimir
  
  07/13/2015 u 03:02 AM, Martin, Stefan (IT.N) je napisao/la:


  
  
  
  
Hello maillinglist,
 
i have a problem with collecting data with
  gmetad. I got this error message:
 
[NAME]
is a 2.5 or later data stream
Updating
host Servername, metric cpu_wio
Unable
to mkdir(/var/lib/ganglia/rrds/NAME): Error 0
root@(Servername) init.d #
 
I run ganglia 3.7.1 under AIX 7.1.
  Installed ist rrd in version 1.2.13-1
 
Mit
freundlichen Grüßen
Im Auftrag


  Stefan
Martin


  IT.Niedersachsen
- Fachgebiet 34 - Unix und Linux Server -
Göttinger Chaussee 259
30459 Hannover
Telefon: 0511 9898-7067
E-Mail: stefan.martin@it.niedersachsen.de
  Internet:
  www.it.niedersachsen.de
  !
  Achtung: Neue E-Mail-Adresse und Internet-Adresse!
 
  
  
  
  
  --
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Process state monitoring

2015-06-30 Thread Vladimir Vuksan
You can alert on process memory size e.g. we have alerts that say if 
process memory is  100 bytes it's down. Also if process memory is  X 
bytes it's leaking memory.

Vladimir

06/30/2015 u 01:19 PM, Sergey je napisao/la:
 Hi Everybody!

 I see that we can monitor any process and collect CPU and memory metrics for 
 this process via Python module.
 Is it possible to monitor the state of the process (if running - state=Up, if 
 stopped - state=Down)?
 I see that CPU and memory metrics are coming independently of the process 
 state, so I can’t use them to calculate the process state.
 I think some “process heartbeat” monitor required. Any ideas?

--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] File I/O bottleneck (Conflicting gmetad versions?)

2015-06-19 Thread Vladimir Vuksan
Are you using rrdcached ? That would be my first recommendation if you 
are running into I/O issues.

Vladimir

06/18/2015 u 06:26 PM, Aaron Thomas Holt je napisao/la:
 Hello all,
 I have 2 central servers collecting data for ~1500 nodes on a 
 multicast setup. These servers are able to handle the load no problem. 
 These two servers unicast to a third server (which ideally contains a 
 copy of all the rrd's on the first two servers). Unfortunately the 
 third server is unable to keep up and I've found is due to the disk 
 I/O. Server 3 has better hardware specs than the first 2 servers, so 
 that shouldn't be the problem.

 Some information:
 Servers 12 are running gmetad 3.6.0. Running strace on these servers 
 reveals that the rrd files are being left open and written to.
 Server 3 is running gmetad 3.7.1. After running strace on this server 
 I found that every time an update to an rrd file is made the rrd is 
 opened, then written to, then closed.

 I highly suspect the disk I/O bottleneck is due to the rrd's being 
 opened/closed every time a write is needed. Any ideas on why this is 
 happening and how I can fix it?



--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] error while installing ganglia gmeatd service.

2015-05-29 Thread Vladimir Vuksan

  
  
You need libconfuse library.
  
  Vladimir
  
  On 05/29/2015 02:34 PM, Pradeep K wrote:


  
Dear Team,


I am trying to install Ganglia 3.6.0 in RHEL 5.5 vm, I have
  installed confuse and rrdtool the I tried to install gmetad
  service, I have got below error then it's terminated.


checking for cfg_parse in -lconfuse... no
  Trying harder including gettext
  checking for cfg_parse in -lconfuse... no
  Trying harder including iconv
  checking for cfg_parse in -lconfuse... no
  libconfuse not found




Please help me out to fix this issue.o install Ganglia
  3.6.0 in RHEL 5.5 vm, I have installed confuse and rrdtool the
  I tried to install gmetad serv


Thanks,
Pradeep

  
  
  
  
  --

  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] [Ganglia-developers] Ganglia-Web 3.7.0 released - includes security fixes

2015-05-29 Thread Vladimir Vuksan
Thanks Jack. I have integrated your changes into the installation Wiki.

Vladimir

On 05/29/2015 05:16 AM, linu...@linux.vnet.ibm.com wrote:
 Vladimir and all:

 Since it's not easy to setup the env of ganglia webfrontend, I tried 
 to add a trouble-shooting part for the wikipage of ganglia-web as 
 following:

 == Trouble shooting ==

 * you need to copy `/var/www/ganglia2/apache.conf` (Ubuntu/Debian) or 
 `/var/www/html/ganglia2/apache.conf` (CentOS/RHEL) to 
 `/etc/apache2/sites-enabled`.
 * In most cases, you need to modify the above apache.conf to make sure 
 the alias /ganglia refers to `/var/www/ganglia2` (Ubuntu/Debian) or 
 `/var/www/html/gangla2` (CentOS/RHEL) .
 * In most cases, you need to modify 
 `/var/www/ganglia2/conf_default.php` (Ubuntu/Debian) or 
 `/var/www/html/ganglia2` (CentOS/RHEL) to make sure `gweb_confdir` 
 refers to the directory where the directories of `conf` and `dwoo` 
 locate in, such as `/var/lib/ganglia-web` or `/var/lib/ganglia`.
 * Make sure you have the dir of rrds under `gmetad_root`.
 * Make sure the above rrds dir should be owned by the user of `nobody`.

 If you guys think this is not bad, how could I push it into the 
 wikipage? Seems that's not the same process as to submit a patch to 
 the sourcecode.

 Thank you,
 -jack



--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia-Web 3.7.0 released - includes security fixes

2015-05-28 Thread Vladimir Vuksan

  
  
Is there an issue open for this and
  what are the details ?
  
  Vladimir
  
  On 05/28/2015 04:40 AM, Cristovao Cordeiro wrote:


  
  
  
  Hi all,


was this issue addressed:

  
NVT: Missing httpOnly Cookie Attribute
  
OID: 1.3.6.1.4.1.25623.1.0.105925
  
Threat: Medium (CVSS: 5.0)
  
Port: 80/tcp
  
  
  Because after updating I still have it. Any idea on how
to solve it?
  Thanks
  

  
Cumprimentos / Best regards,
  Cristóvão José Domingues Cordeiro
  IT Department - 28/R-018
  CERN

  

  
  

From:
Vladimir Vuksan [vli...@veus.hr]
Sent: 21 May 2015 20:22
To: ganglia-develop...@lists.sourceforge.net;
Ganglia
Subject: [Ganglia-general] Ganglia-Web 3.7.0
released - includes security fixes
  

Hi all,
  
  Ganglia Web 3.7.0 has been released. Major highlights are
  
Cubism integration 
https://github.com/ganglia/ganglia-web/wiki/Cubism-integration 
Ganglia Reporting 
https://github.com/ganglia/ganglia-web/wiki/Ganglia-Reports 
Couple reported XSS issues have been corrected 
  
  If you are running Ganglia Web on a publicly accessible
server you are strongly advised to upgrade ASAP.
  
  You can download latest release from here
  
  https://sourceforge.net/projects/ganglia/files/ganglia-web/
  
  Installation instructions can be found here
  
  https://github.com/ganglia/ganglia-web/wiki#Installation
  
  Vladimir

  

  


  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] Ganglia-Web 3.7.0 released - includes security fixes

2015-05-21 Thread Vladimir Vuksan

  
  
Hi all,

Ganglia Web 3.7.0 has been released. Major highlights are

  Cubism integration https://github.com/ganglia/ganglia-web/wiki/Cubism-integration
  
  Ganglia Reporting https://github.com/ganglia/ganglia-web/wiki/Ganglia-Reports
  
  Couple reported XSS issues have been corrected

If you are running Ganglia Web on a publicly accessible server
  you are strongly advised to upgrade ASAP.

You can download latest release from here

https://sourceforge.net/projects/ganglia/files/ganglia-web/

Installation instructions can be found here

https://github.com/ganglia/ganglia-web/wiki#Installation

Vladimir
  


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Monitoring CTX switches and memory fragmentation

2015-05-05 Thread Vladimir Vuksan

  
  
I have wrote one for memory
  fragmentation. You can find it here
  
https://github.com/ganglia/gmond_python_modules/tree/master/system/mem_fragmentation
  
  Context stuff is now in the monitor-core master
  
https://github.com/ganglia/monitor-core/blob/master/gmond/python_modules/cpu/cpu_stats.py
  
  Vladimir
  
  On 05/05/2015 02:49 AM, Martin Knoblauch wrote:


  

  Hi friends,

  
   short question: does Ganglia provide monitor agents for
  context switches and "memory fragmentation" (e.g. listing
  contents of /proc/buddyinfo)? I want to avoid double work,
  should they exist officially?
  

Cheers
Martin

 -- 
  

  

  --
Martin Knoblauch
email: k n o b i AT knobisoft DOT de
www: http://www.knobisoft.de

  

  

  
  
  
  
  --
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Monitoring CTX switches and memory fragmentation

2015-05-05 Thread Vladimir Vuksan
Indeed it's in 3.7.1

Vladimir

On 05/05/2015 11:24 AM, Martin Knoblauch wrote:
  is the CTX stuff already in a released version? I may need to tell 
 the end customer to upgrade.


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia-web installation instructions missing

2015-04-02 Thread Vladimir Vuksan
Thanks for reporting this. I have fixed the link in the repository.

Vladimir

On 02/19/2015 01:49 PM, Whit Blauvelt wrote:
 Looks like this is where the README should point:

 https://github.com/ganglia/ganglia-web/wiki#Installation

 That's a couple of years old though. Is it essentially current?

 Whit

 On Thu, Feb 19, 2015 at 10:44:13AM -0500, Whit Blauvelt wrote:
 Hi,

 The README for ganglia-web-3.6.2 says in full:

This is an attempt to make the Ganglia UI more usable.  Installation
instructions can be found here

http://sourceforge.net/apps/trac/ganglia/wiki/ganglia-web-2#Installation

 That URL just redirects to http://sourceforge.net/projects/ganglia/, and
 searching the wiki there for ganglia-web produces 0 results. Since the
 wiki only has a single page, that's no surprise.

 Where are the installation instruction to be found?

 Thanks,

 Whit

 --
 Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
 from Actuate! Instantly Supercharge Your Business Reports and Dashboards
 with Interactivity, Sharing, Native Excel Exports, App Integration  more
 Get technology previously reserved for billion-dollar corporations, FREE
 http://pubads.g.doubleclick.net/gampad/clk?id=190641631iu=/4140/ostg.clktrk
 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general
 --
 Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
 from Actuate! Instantly Supercharge Your Business Reports and Dashboards
 with Interactivity, Sharing, Native Excel Exports, App Integration  more
 Get technology previously reserved for billion-dollar corporations, FREE
 http://pubads.g.doubleclick.net/gampad/clk?id=190641631iu=/4140/ostg.clktrk
 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] Ganglia Core 3.7.1 Released

2015-04-02 Thread Vladimir Vuksan
Ganglia team is happy to announce release 3.7.1 of Ganglia core. Major 
changes in this release are

   * Hash table in gmetad has been reworked to support much higher 
metric counts and larger number of metrics
   * A number of GMond python modules have been rewritten and enhanced

You can download the latest release at

https://sourceforge.net/projects/ganglia/files/ganglia%20monitoring%20core/3.7.1/
 


Vladimir

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Gmetad-to-Gmetad connection

2015-03-24 Thread Vladimir Vuksan
Hi Sergey,

Try setting

scalable on

in gmetad.conf of the second instance. From the stock gmetad.conf

# Scalability mode. If on, we summarize over downstream grids, and respect
# authority tags. If off, we take on 2.5.0-era behavior: we do not wrap 
our output
# in GRID/GRID tags, we ignore all GRID tags we see, and always assume
# we are the authority on data source feeds. This approach does not 
scale to
# large groups of clusters, but is provided for backwards compatibility.
# default: on
# scalable off

I have not used this feature in a long time so not sure how well it 
scales however it's worth a shot.

Does second instance have different interactive and xml ports ?

Vladimir


On 03/24/2015 09:24 PM, Sergey wrote:
 I have one Gmetad instance collecting metrics from several clusters of hosts. 
 Then the second Gmetad instance has to pool all data via port 8651 from the 
 first instance and store everything in local RRDS.
 I can get all data from the second machine via “#nc machine1 8651”, but when 
 I check RRDS, I don’t see any clusters, only Summary_Data folder.
 Why Gmetad doesn’t write data into RRDS?



--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] Ganglia Graphite integration

2015-03-23 Thread Vladimir Vuksan
As some of you know Ganglia supports feeding metric directly to Graphite 
via gmetad. I spent some time in last few days trying to resurrect some 
of the old changes I have had to allow Graphite to read RRDs directly

https://github.com/vvuksan/ganglia-misc/tree/master/graphite

I found out that those changes are no longer necessary with latest 
version of Graphite. I have written up a document on how to do it

https://github.com/ganglia/monitor-core/wiki/Ganglia-Graphite

I still prefer using Ganglia web :-) however I have been hearing 
requests to support dashboards like Grafana so this is an easy way to do 
just that.

Vladimir


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia Graphite integration

2015-03-23 Thread Vladimir Vuksan
If you follow that document Grafana will just work.

Vladimir

On 03/23/2015 04:17 PM, Jesse Becker wrote:
 Grafana support would be pretty awesome.  Having gmond emit JSON output
 to send to influxdb (which can then be read by grafana) would also be
 pretty cool.



--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Configuration problem after failover

2015-03-20 Thread Vladimir Vuksan
No. Gmetad listens to two ports by default

8651 and 8652

8648 and 8649 are ports for the gmond which gmetad is polling.


On 03/20/2015 10:23 AM, Loris Bennett wrote:
 Hi,

 I have the following in my gmetad.conf

 data_source Admin_Nodes 10 admin:8648
 data_source Compute_Nodes 10 admin:8649

 and when I look at the ports in use, I have

 $ netstat -plane | egrep 'gmon|gme'
 tcp0  0 0.0.0.0:86510.0.0.0:*   
 LISTEN  493256095111  62544/gmetad
 tcp0  0 0.0.0.0:86520.0.0.0:*   
 LISTEN  493256095112  62544/gmetad
 unix  2  [ ] DGRAM256095117 62544/gmetad

 Should I expect to see gmetad listening on ports 8648 and 8649 as well?

 Cheers,

 Loris



--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] gmetad(3.6.1) suddenly stoped

2015-03-18 Thread Vladimir Vuksan

  
  
Based on the timeout from source
  messages you are either having network connectivity issues polling
  gmonds or they are down.
  
  Vladimir
  
  On 03/17/2015 12:46 AM, 潇湘居士 wrote:


  
Hi,
  
      my gmetad(3.6.1) suddenly stoped, and it has passed much
  time when I find the stop status. 
      here is the log:
     

  [root@ca5 log]# grep -v RRD_update messages | tail -n 20
  Mar 16 15:30:31 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 0 for [hb] data source after 0 bytes read 
  Mar 16 15:30:46 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 1 for [hb] data source after 0 bytes read 
  Mar 16 15:31:01 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 0 for [hb] data source after 0 bytes read 
  Mar 16 15:54:40 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 1 for [hb] data source after 0 bytes read 
  Mar 16 15:54:48 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 1 for [dp] data source after 0 bytes read 
  Mar 16 15:54:54 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 1 for [stat] data source after 43261 bytes read 
  Mar 16 15:54:56 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 0 for [hb] data source after 0 bytes read 
  Mar 16 15:55:09 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 0 for [test] data source after 5427 bytes read 
  Mar 16 15:55:10 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 0 for [dp] data source after 11584 bytes read 
  Mar 16 15:55:27 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 1 for [dp] data source after 0 bytes read 
  Mar 16 15:55:31 ca5 /usr/sbin/gmetad[28087]: poll() timeout
  from source 1 for [hb] data source after 0 bytes read 
  Mar 16 18:26:22 ca5 last message repeated 2 times
  Mar 16 18:28:23 ca5 kernel: gmetad[28126]: segfault at
3fc22580 rip 003f1320ba5f rsp 59073790
error 4
  Mar 16 19:58:23 ca5 auditd[3025]: Audit daemon rotating log
  files
  Mar 17 00:54:25 ca5 Server Administrator: Storage Service
  EventID: 2243  The Patrol Read has stopped.:  Controller 0
  (PERC H700 Integrated) 
  Mar 17 01:05:29 ca5 auditd[3025]: Audit daemon rotating log
  files
  Mar 17 01:30:04 ca5 auditd[3025]: Audit daemon rotating log
  files
  Mar 17 02:00:10 ca5 /usr/sbin/gmetad[6865]: data_thread() for
  [db] failed to contact node 66.160.159.72 
  Mar 17 02:06:14 ca5 last message repeated 3 times
  Mar 17 03:13:29 ca5 last message repeated 2 times
     

  
  my system is RHEL 5.5:

  [root@ca5 log]# lsb_release -a
  LSB Version:   
:core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics-3.1-ia32:graphics-3.1-noarch
  Distributor ID:    RedHatEnterpriseServer
  Description:    Red Hat Enterprise Linux Server release 5.5
  (Tikanga)
  Release:    5.5
  Codename:    Tikanga

  
  And I don't know why did gmetad stop, can anyone help me ?

  
  
  
  
  --
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. 

Re: [Ganglia-general] Ganglia unable to report remote client

2015-03-18 Thread Vladimir Vuksan

  
  
On the machine running gmetad are there
  any iptables rules that may be blocking inbound UDP traffic on
  port 8649.
  
  Vladimir
  
  On 03/17/2015 01:06 AM, Ashish Kumar9 wrote:

I would request some
inputs on below issue
. 
  
  
  Thanks and Regards,
Ashish Kumar
  
  
  
  From:      
 Ashish Kumar9/India/IBM
  
  To:      
 ganglia-general@lists.sourceforge.net
  
  Date:      
 03/10/2015 01:59 PM
  
  Subject:    
   Ganglia unable
to report remote client
  
  
  
  
  My ganglia setup is able to
report only
one guest which is local server on which gmond and gmetad both
are installed
. It does not show up other clients inspite of proper
configurations with
gmond .
  
  
  Remote gmond process is running
absolutely
fine . 
  
  
  Debugging done so far 
  
  1) I also verified that port 8649
are
free and not used using lsof -i tcp:8649
  
  2) /var/log/messages do not show
any
error 
  
  3) all the processes - gmetad ,
gmond
are running fine 
  
  
  Please suggest steps/tips to
debug the
issue further . 
  
  
  Server config
  
  
  gmetad.conf :
  
  
  data_source "hadoopgpfs"
bigdatagpfs01
  
  gridname "MyHadoopGPFSGrid"
  
  setuid_username "root"
  
  case_sensitive_hostnames 0
  
  
  
  
  
  gmond.conf :
  
  /* This configuration is as
close
to 2.5.x default behavior as possible
  
     The values closely
match ./gmond/metric.h definitions in 2.5.x */
  
  globals {
  
    daemonize = yes
  
    setuid = no
  
    user = root
  
    debug_level = 0
  
    max_udp_msg_len = 1472
  
    mute = no
  
    deaf = no
  
    allow_extra_data = yes
  
    host_dmax = 86400 /*secs.
Expires (removes from web interface) hosts in 1 day */
  
    host_tmax = 20 /*secs */
  
    cleanup_threshold = 300
/*secs
*/
  
    gexec = no
  
    # By default gmond will use
reverse DNS resolution when displaying your hostname
  
    # Uncommeting following
value
will override that value.
  
    # override_hostname =
"mywebserver.domain.com"
  
    # If you are not using
multicast
this value should be set to something other than 0.
  
    # Otherwise if you restart
aggregator gmond you will get empty graphs. 60 seconds is
reasonable
  
    send_metadata_interval =
30 /*secs */
  
  
  }
  
  
  /*
  
   * The cluster attributes
specified
will be used as part of the CLUSTER
  
   * tag that will wrap all
hosts
collected by this instance.
  
   */
  
  cluster {
  
    name = "hadoopgpfs"
  
    owner = "unspecified"
  
    latlong = "unspecified"
  
    url = ""
  
  }
  
  
  /* The host section describes
attributes
of the host, like the location */
  
  host {
  
    location = "unspecified"
  
  }
  
  
  /* Feel free to specify as
many
udp_send_channels as you like.  Gmond
  
     used to only support
having a single channel */
  
  udp_send_channel {
  
    #bind_hostname = yes #
Highly
recommended, soon to be default.
  
           
             # This option tells gmond
to use a source address
  
           
             # that resolves to the
machine's hostname.  Without
  
           
             # this, the metrics may
appear to come from any
  
           
             # interface and the DNS
names associated with
  
           
             # those IPs will be used
to create the RRDs.
  
    #mcast_join = 10.241.0.21
  
    host = 10.241.0.21
  
    port = 8649
  
    ttl = 1
  
  }
  
  
  /* You can specify as many
udp_recv_channels
as you like as well. */
  
  udp_recv_channel {
  
    #mcast_join = 239.2.11.71
  
    port = 8649
  
    #bind = 239.2.11.71
  
    #retry_bind = true
  
    # Size of the UDP buffer.
If you are handling lots of metrics you really
  
    # should bump it up to e.g.
10MB or even higher.
  
    # buffer = 10485760
  

Re: [Ganglia-general] Can't aggregate custom metrics

2015-03-18 Thread Vladimir Vuksan

  
  
Ayman,
  
  what Ganglia web version are you using?
  
  Another thing to try is append debug=5 to see what rrdtool
  command is being executed. See if you can execute that on the
  command line by hand.
  
  Vladimir
  
  On 03/16/2015 06:18 PM, Ayman Al-Shorman wrote:


  
  Hi All,

I've added around 40 custom metrics using gmetric.

I can aggregate graphs on some hosts and can't on others, i
tried everything i know but the graphs images are broken.

I got the error message "The image
“http://host.com/gweb/graph.php?r=hourz=xlargetitle=BCC+Loadvl=avgx=3n=0hreg%5B%5D=host594mreg%5B%5D=sphinx-avg-query-wallgtype=lineglegend=showaggregate=1embed=1_=1426543062410”
cannot be displayed because it contains errors."

But the graphs are working fine on the host page.

I would be thankful if anyone can help me.
  


  


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] collect_every vs gmetad polling?

2015-02-12 Thread Vladimir Vuksan

  
  
collect_every manages how often gmond
  sends out particular metric to other gmond(s). It is completely
  independent of gmetad.
  
  Vladimir
  
  On 02/12/2015 04:39 PM, Brad Hough wrote:

I realize that.  But if I set the polling rate to say
  60 seconds (or any value) in gmetad then the
  gmond setting "collect_every" doesn't seem to do anything. I can
  set it to any value and it still collects at 60 second interval. I
  guess my question is what does "collect_every" actually do?
  
  On Thursday, February 12, 2015, ayman_shorman ayman_shor...@hotmail.com
  wrote:
  

  
Hi Brad,


The standard rate of polling interval is 15 second.


If you want to increase it you should define the data
  sources as the following:
data_source 10 "cluster_name" host1
  host2...


10 means the polling interval is 10 seconds for this
  cluster.


Thanks





  Sent from Samsung
Mobile.

  
  
  
   Original message 
  From: Brad Hough 
  Date:12/02/2015 22:18 (GMT+03:00) 
  To: ganglia-general@lists.sourceforge.net
  
  Subject: [Ganglia-general] collect_every vs gmetad
polling? 
  
  
  
I'm using ganglia to submit data directly to
  a carbon server with use with Graphite/Grafana.  It works
  great, but I'm having issues understanding granularity of
  the data.  It seems like my data comes in at a rate equal
  to the polling interval I set in the gmetad.conf's
  'data_source' attribute.  The "collect_every" attribute
  seems to do absolutely nothing to influence this rate. 
  What am I missing?
  
  
  Ideally, I'd like gmetad and/or gmond to collect at a
rate much faster than what is sent to the carbon
server.  Is this possible?  For instance, can I collect
my data and cache it at say once every 2 seconds, but
then only send it every few minutes to the carbon
server?
  
  
  Thank you,
  Brad H

  

  
  
  
  -- 
  Sent from Gmail Mobile
  
  
  
  --
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia - gmetric --slope=positive

2015-02-08 Thread Vladimir Vuksan

  
  
Hi Ayman,
  
  Unfortunately that is not gonna work. The slope=positive works
  well if your polling period is similar to gmetad polling period.
  Gmetad polls for metrics every 15 seconds and since you are
  sending new counter values evey 5 minutes for 4 minutes and 45
  seconds the counter value gmetad is polling stays the same. You
  may be better off calculating differentials yourself.
  
  Vladimir
  
  On 02/08/2015 02:56 AM, Ayman Al-Shorman wrote:


  
  Hello,,

I have sent inquiry regarding COUNTER values in ganglia but no
response till  now i would like to post it again.

I'm facing issue when i use --slope=positive. I'm
  using gmetric to plot counter value every 5 min.


The values are counted correctly but the the
  period between the checks show zeros for example: at 11:00 the
  value is 100 at 11:05 the value is 150 but the value between
  11:00 and 11:05 is zero but it should be 100.


./gmetric -c /etc/gmond.conf --name='check-name'
  --title="check title" --value=`cat /tmp/file.txt`
  --units="query" --type=int32 --slope=positive


Any ideas?


Thanks


Ayman


  From: ayman_shor...@hotmail.com
  To: ganglia-general@lists.sourceforge.net
  Subject: Ganglia - gmetric --slope=positive
  Date: Sun, 11 Jan 2015 17:32:48 +0200
  
  
  
I'm facing issue when i use --slope=positive.
  I'm using gmetric to plot counter value every 5 min.


The values are counted correctly but the the
  period between the checks show zeros for example: at 11:00
  the value is 100 at 11:05 the value is 150 but the value
  between 11:00 and 11:05 is zero but it should be 100.


./gmetric -c /etc/gmond.conf
  --name='check-name' --title="check title" --value=`cat
  /tmp/file.txt` --units="query" --type=int32
  --slope=positive


Any ideas to fix the issue?


Thanks


Ayman

  

  
  
  
  
  --
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] how do i create a json custom graph?

2015-01-22 Thread Vladimir Vuksan
Can you paste full JSON file you created ? You could try validating that 
it's actually valid JSON by using

python -mjson.tool new_report.json

Vladimir

On 01/22/2015 02:34 PM, Aaron wrote:
 Hi, I follow the steps at the link below to create a json graph.
 It basically says put the graph in the graph.d directory and call it
 somename_report.json  I use the network_report.json file as the 
 content and put it into the graph.d directory but it does not show up 
 on the web page.  All the default graphs are displayed but not the new 
 graph I created.  I'm using the latest ganglia 3.6 file and latest 
 ganglia_web installation from sourceforge.

 How do I get it to show up with the other graphs? Thanks!

 https://github.com/ganglia/ganglia-web/wiki#Defining_Custom_Graphs_Via_JSON



--
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] on metric handler

2015-01-20 Thread Vladimir Vuksan

  
  
One of the approaches is to "cache" the
  results. For example this module has a method get_metrics
  
https://github.com/ganglia/gmond_python_modules/blob/master/varnish/python_modules/varnish.py#L50
  
  That will "cache" the info for few seconds.
  
  Hope that helps
  Vladimir
  
  On 01/20/2015 02:51 PM, Oliver wrote:


  hi all,


I am a newbie on Ganglia and have a rather basic question:


Say I want to define a handler that will collect three
  metrics (timestamp, read_bytes, write_bytes): all three
  metrics are from a single /proc entry, and it ONLY makes sense
  when three measures are looked together at some instant time
  t.


Since the call back is written in such way that it seems
  each metric will be polled individually, there seems no such
  guarantee that the trio will be treated as group. Am I on the
  wrong track here? what's the appropriate way to approach it?


Best,


Oliver




  
  
  
  
  --
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Problem with Python modules after upgrading Ganglia

2015-01-19 Thread Vladimir Vuksan
The code looks straight forward. What OS and version is this for ?

Vladimir

On 01/19/2015 03:36 AM, Rafael Arco Arredondo wrote:
 Hello everyone,

 I'm facing some problems with a Python module we have to collect the
 temperature of the computing nodes. Basically it reads the contents of a
 file, where all temperatures are output, and then extracts the
 temperature that correspond to the current node. I guess the problem
 must be something related to the threading logic, although I'm not sure.
 With gmond 3.1.0 it works with no problems, but with 3.6 it hangs when
 it reads the first temperature, CPU0 (I ran gmond in debug mode with -d
 10 to check it).

 Does anyone know what is wrong with our code? Do we have to change
 anything in order for gmond version 3.6 to work? Attached is the code
 for the module. Any help is appreciated.



--
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Nodes Showing Down Constantly

2014-12-16 Thread Vladimir Vuksan

  
  
Hi Jared,
  
  can you review
  
  https://github.com/ganglia/monitor-core/wiki/Ganglia-Quick-Start
  
  and let us know if your set up looks similar. If it does please
  post top 100 or so lines of the config from your aggregator and
  client nodes. Sanitize any names or IPs.
  
  Thanks,
  
  Vladimir
  
  On 12/16/2014 10:49 PM, Jared David Baker wrote:


  
  
Hello All,
  

  
  
I’m new to the Ganglia scene, but I’ve been working on
installing it as part of a project now. I’ve built the latest
Ganglia software (3.6.1 at time of writing) from source on
CentOS 6.5 and the build seemed to go fine, no major issues that
I saw. I am using multicasting as the send/recv method and have
limited the multicasting to the a cluster’s private network
interface. 
  

  
  
I start up gmond on the aggregator node (which happens to the be
cluster master node) and start up the gmond daemons on the
client machines. I think proceed to start gmetad to view the
metrics via web browser and for the first 3 minutes or so, it
appears Ganglia is working perfectly, getting the correct
numbers and such.  However, after about 3 minutes, the web
interface and gstat command report that all my client nodes are
down. The aggregation node remains active. I’ve been unable to
determine the root cause of this. However, if I restart the
gmond daemon on the aggregator, the client nodes come back for
approximately 3 minutes again before going into the ‘dead’
state?
  

  
  
The configurations are nearly standard with only minor
  changes which seem more like descriptive entries and not
  operational entries. I only changed the cluster{} block. The
  filesystem where gmond is from is common and therefore the
  same configuration file is used for all nodes. I’m not too
  worried about the host{} block to describe location right now.


  
  
Does anybody have any helpful pointers and/or suggestions on
where to look for an issue or a misconfiguration? 
  

  
  
Thanks everyone! 
  

  
  
Jared
  
  
  
  --
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] XSS vulnerabilities in Ganglia web

2014-11-07 Thread Vladimir Vuksan

  
  
I recall trying this out on 3.6.2 and I
  couldn't reproduce it so if you could run this against 3.6.2 and
  see if you can reproduce it that would be really helpful.
  
  Vladimir
  
  On 11/07/2014 04:50 PM, Cristovao Jose Domingues Cordeiro wrote:


  
  
  It is implemented on 3.5.12
Is this fixed on the latest version?
  

  
Cumprimentos / Best regards,
  Cristóvão José Domingues Cordeiro
  IT Department - 28/R-018
  CERN

  

  
  

From:
Vladimir Vuksan [vli...@veus.hr]
Sent: 07 November 2014 22:31
To: Cristovao Jose Domingues Cordeiro;
ganglia-general@lists.sourceforge.net
Subject: Re: [Ganglia-general] XSS
vulnerabilities in Ganglia web
  


  Hi Cristovao,

what Ganglia Web version was tested ? Is this against
latest e.g. 3.6.2 ?

Thanks,

Vladimir

On 04/11/2014 03:35 AM, Cristovao Jose Domingues
Cordeiro wrote:
  
  

Hi all,
  
  recently I've updated my Ganglia web frontend to the
  latest version (so I could perform HTTP queries) and
  when I issued the security check with skipfish I got
  these:
  
  Vulnerabilities found: 33
  
    · Severity: 4,
  Type: File inclusion
    ..
      ..
      · Severity: 4,
  Type: Query injection vector
      ..
      ..
      · Severity: 4,
  Type: Shell injection vector
      ..
      ..
      · Severity: 4,
  Type: Server-side XML injection vector
      ..
      ..
      · Severity: 3,
  Type: Directory traversal / file inclusion
possible
      ··
      ··
      · Severity: 3,
  Type: XSS vector in document body
      ..
      ..
  
  
  Now, these are too many vulnerabilities, but I don't
  know if they can affect the backend of if they just
  affect the frontend. Do you know?
  
  The XSS vulnerability must be fixed for sure. I've
  seen some references to this in your release notes
  (e.g.
  
http://www.mail-archive.com/ganglia-general%40lists.sourceforge.net/msg08004.html
  ) but in fact there if no difference between these
  last releases and the ones before that announcement.
  
  Is there a workaround for this? I can not open this
  Ganglia machine to the outside world if I don't have
  this fixed.
  

  
  

  

  


  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] Ganglia web 3.6.2 released

2014-08-03 Thread Vladimir Vuksan
Ganglia Web 3.6.2 has been released. Blog post can be found here

http://ganglia.info/?p=604

Download it from

https://sourceforge.net/projects/ganglia/files/ganglia-web/3.6.2/

Release notes are here

https://github.com/ganglia/ganglia-web/wiki/Release-Notes

Vladimir

--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia wiki

2014-07-27 Thread Vladimir Vuksan

  
  
Perfect. Thanks a lot Zhi.
  
  Vladimir
  
  On 07/27/2014 02:51 PM, Zhi An Ng wrote:


  
Hi,
  I'm a GSOC student working on jmxetric. Chanced upon this and
  decided to help, I've started by cleaning up some migrated
  wiki pages, and also fixed internal links.



  
  

  Best,
Zhi An
  



On Thu, Jul 24, 2014 at 2:52 AM,
  Vladimir Vuksan vli...@veus.hr
  wrote:
  
Yes at this point we should assume Github is the official
Ganglia Wiki.

We now need some volunteers to move content from the old
wiki to the
Ganglia Wiki. It appears the Web Archive still has the
content

https://web.archive.org/web/20131127172022/http://sourceforge.net/apps/trac/ganglia/wiki/

who can help ?

Vladimir
  

  On 07/23/2014 01:59 PM, Jorge López Pérez wrote:
   Hi everybody,
  
   it's been some time since the Ganglia official wiki
   (http://wiki.ganglia.info/,
  as per http://ganglia.info/?page_id=67)
  is
   unavailable. Seems that Sourceforge dropped trac
  support, so all links
   to the wiki are now broken.
  
   The wiki on the GitHub repo
   (https://github.com/ganglia/monitor-core/wiki)
  provides some articles
   from the previous wiki, but I'm not sure if all of
  them. Moreover, some
   pages have broken images and/or missing text (have a
  look at the "Quick
   start" page).
  
   Should the GitHub wiki be considered the official
  one?
  
   Best regards.
  
  
  


  --
Want fast and easy access to all the code in your
enterprise? Index and
search up to 200,000 lines of code with a free copy of
Black Duck
Code Sight - the same software that powers the world's
largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general
  

  


  


  


--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia wiki

2014-07-23 Thread Vladimir Vuksan
Yes at this point we should assume Github is the official Ganglia Wiki.

We now need some volunteers to move content from the old wiki to the 
Ganglia Wiki. It appears the Web Archive still has the content

https://web.archive.org/web/20131127172022/http://sourceforge.net/apps/trac/ganglia/wiki/

who can help ?

Vladimir

On 07/23/2014 01:59 PM, Jorge López Pérez wrote:
 Hi everybody,

 it's been some time since the Ganglia official wiki
 (http://wiki.ganglia.info/, as per http://ganglia.info/?page_id=67) is
 unavailable. Seems that Sourceforge dropped trac support, so all links
 to the wiki are now broken.

 The wiki on the GitHub repo
 (https://github.com/ganglia/monitor-core/wiki) provides some articles
 from the previous wiki, but I'm not sure if all of them. Moreover, some
 pages have broken images and/or missing text (have a look at the Quick
 start page).

 Should the GitHub wiki be considered the official one?

 Best regards.



--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Random blank timeslots in graphs

2014-05-19 Thread Vladimir Vuksan

  
  
Error 1 sending messages are a red
  herring. 
  
  If you are seeing gaps it's most likely that storage system is not
  keeping up. What version of ganglia are you using and are you
  using rrdcached ?
  
  Vladimir
  
  On 05/19/2014 10:20 AM, Cristovao Jose Domingues Cordeiro wrote:


  
  
  Hi,

this is happening in two completely different (but with the same
deployment method) Ganglia headnodes.

I'm monitoring about 500 VM's (on each headnode), separated by
clusters of different sizes. From time to time, the summary
graphs over some cluster stop reporting, showing zero activity,
and then suddenly after a while they come back up again.


This is very undesirable since I end up with several white
"holes" per day on each cluster.

The information I can give you so far is the following:


  The attached image shows what happens
  I have a master-slave type of configuration, where the
collector gmonds are sitting in the same machine (the
headnode) as gmetad and ganglia-web, and where all the gmond
nodes are reporting their metrics through unicast to the
headnode.
  I have the latest Ganglia versions running (both core and
web)
  All VM's are based on SL6
  When I look at /var/log/messages I see a lot of this:

  May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for pkts_out#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1 sending
the modular data for heartbeat#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1 sending
the modular data for cpu_user#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1 sending
the modular data for cpu_system#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1 sending
the modular data for cpu_idle#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1 sending
the modular data for cpu_nice#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1 sending
the modular data for cpu_aidle#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1 sending
the modular data for cpu_wio#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1 sending
the modular data for cpu_steal#012
May 19 16:14:37 gangliamon gmond[22304]: Error 1 sending
the modular data for heartbeat#012
May 19 16:14:38 gangliamon gmond[10560]: Error 1 sending
the modular data for cpu_user#012
May 19 16:14:38 gangliamon gmond[10560]: Error 1 sending
the modular data for cpu_system#012
May 19 16:14:38 gangliamon gmond[10560]: Error 1 sending
the modular data for cpu_idle#012
May 19 16:14:38 gangliamon gmond[10560]: Error 1 sending
the modular data for cpu_nice#012
May 19 16:14:38 gangliamon gmond[10560]: Error 1 sending
the modular data for cpu_aidle#012
May 19 16:14:38 gangliamon gmond[10560]: Error 1 sending
the modular data for cpu_wio#012
May 19 16:14:38 gangliamon gmond[10560]: Error 1 sending
the modular data for cpu_steal#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for mem_free#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for mem_shared#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for mem_buffers#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for mem_cached#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for swap_free#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for bytes_out#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for bytes_in#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for pkts_in#012
May 19 16:14:39 gangliamon gmond[22300]: Error 1 sending
the modular data for pkts_out#012
May 19 16:14:40 gangliamon gmond[10560]: Error 1 sending
the modular data for heartbeat#012
May 19 16:14:42 gangliamon gmond[22304]: Error 1 sending
the modular data for disk_free#012

Re: [Ganglia-general] Random blank timeslots in graphs

2014-05-19 Thread Vladimir Vuksan

  
  
I would definitely consider rrdcached
  backed by some SSDs. That is what I use.
  
  3.7.0 which is in testing has some additional performance
  enhancements but I think your issue really is I/O.
  
  Vladimir
  
  On 05/19/2014 10:46 AM, Cristovao Jose Domingues Cordeiro wrote:


  
  Hi,

I am using Ganglia Web Frontend
  version 3.5.12 and
Ganglia Web Backend (gmetad)
  version 3.6.0. The
  Gmond version on the nodes is not consistent,
since they are being set by different users,
  on
  different environments.
  But I believe their version is not
below 3.1.7.
  
  No, I am not using RRDCached...all
of my Ganglia configurations are
  the default ones. I'll try to
set that up.

Since you
believe it is a scaling
  problem, should I try to store the DB in ramdisk?

  
Cumprimentos / Best regards,
  Cristvo Jos Domingues Cordeiro


  


  
  From:
  Vladimir Vuksan [vli...@veus.hr]
  Sent: 19 May 2014 16:37
  To: Cristovao Jose Domingues Cordeiro;
  ganglia-general@lists.sourceforge.net
  Subject: Re: [Ganglia-general] Random blank
  timeslots in graphs

  
  
Error 1 sending messages are a
  red herring. 
  
  If you are seeing gaps it's most likely that storage
  system is not keeping up. What version of ganglia are you
  using and are you using rrdcached ?
  
  Vladimir
  
  On 05/19/2014 10:20 AM, Cristovao Jose Domingues Cordeiro
  wrote:


  
  Hi,

this is happening in two completely different (but with
the same deployment method) Ganglia headnodes.

I'm monitoring about 500 VM's (on each headnode),
separated by clusters of different sizes. From time to
time, the summary graphs over some cluster stop
reporting, showing zero activity, and then suddenly
after a while they come back up again.


This is very undesirable since I end up with several
white "holes" per day on each cluster.

The information I can give you so far is the following:


  The attached image shows what happens 
  I have a master-slave type of configuration, where
the collector gmonds are sitting in the same machine
(the headnode) as gmetad and ganglia-web, and where
all the gmond nodes are reporting their metrics
through unicast to the headnode.
  
  I have the latest Ganglia versions running (both
core and web) 
  All VM's are based on SL6 
  When I look at /var/log/messages I see a lot of
this:

  May 19 16:14:36 gangliamon gmond[22292]: Error
1 sending the modular data for pkts_out#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for heartbeat#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for cpu_user#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for cpu_system#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for cpu_idle#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for cpu_nice#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for cpu_aidle#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for cpu_wio#012
May 19 16:14:36 gangliamon gmond[22292]: Error 1
sending the modular data for cpu_steal#012
May 19 16:14:37 gangliamon gmond[22304

Re: [Ganglia-general] Fwd: Trying to build 3.7 something is wrong...

2014-05-05 Thread Vladimir Vuksan
Can you check config.log? What OS and distribution is it? 

On 5. svibnja 2014. 20:13:43 EDT, Greg Maxwell gregmaxw...@mac.com wrote:
Hello 

./configure --with-gmetad --with-riemann  APR_CFLAGS=/usr/lib64/apr-1/ 
APR_LIBS=/usr/lib64/apr-1 PROTOBUFF_C_FLAGS=/usr/lib64/libprotobuf-c 
PROTOBUFF_C_LIBS=/usr/lib64/libprotobuf-c

Checking for Protocol Buffers
checking for PROTOBUF_C... no
configure: WARNING: No pkg-config for protobuf-c.
trying harder - bug your distro
checking for protobuf_c_message_pack in -lprotobuf-c... no
configure: error: libprotobuf-c not found

trying to get the Riemann forward working.  3.6.0 config does not have
the --with-riemann flag, can build 3.6  but this new pkg-config is not
working for me.

Thanks in advance for the help.

Sincerely,

Greg Maxwell 
greg_maxw...@apple.com
949-547-6540





--
Is your legacy SCM system holding you back? Join Perforce May 7 to find
out:
#149; 3 signs your SCM is hindering your productivity
#149; Requirements for releasing software faster
#149; Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general

Vladimir--
Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
#149; 3 signs your SCM is hindering your productivity
#149; Requirements for releasing software faster
#149; Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Restful Api for Ganglia Database

2014-04-28 Thread Vladimir Vuksan

  
  
Nick,
  
  Any Ganglia graph can be exported in either CSV or JSON by
  appending 
  
  json=1 
  
  or 
  
  csv=1
  
  to the graph URL.
  
  Vladimir
  
  On 04/28/2014 11:17 AM, Nick Satterly wrote:


  Hi Jon,


I think you misunderstood me. All I referred to was a git
  commit log entry to a pull request that added support for
  responding to HTTP requests with current metric data. The
  relevant GitHub pull request does not include any
  documentation https://github.com/ganglia/monitor-core/pull/60


What I think Azaz wants so that he could develop his own
  dashboard, and what has not been officially implemented, is an
  historical metric REST API. There was a Google summer of code
  proposal to look at a more advanced (non-historical) metric
  API (seehttps://github.com/ganglia/monitor-core/wiki/GSoC-2014-project-ideas#api)
  but there we no takers as far as I know.


If anyone has some code they'd like to share with the
  Ganglia community that implements an API that presents
  historical metric data (ie. perhaps sourced from the RRD's or
  stored some other way) then please do. It doesn't matter how
  bad you might think your code is, it would be a start and
  people can then build on that.


Regards,
Nick
  
  

On Mon, Apr 28, 2014 at 1:47 PM,
  Silver, Jonathan jonathan.sil...@unify.com
  wrote:
  

  
Nick,

Can
you please resend the link to the restful interface
documentation. I did not see it and ended up
implementing my own,
  
But
Id really rather use the official.
  

Thanks,
jon


  From:
  Nick Satterly [mailto:nfsatte...@gmail.com]
  
  Sent: Saturday, April 26, 2014 3:36 PM
  To: Azaz Rauf
  Cc: ganglia-general@lists.sourceforge.net
  Subject: Re: [Ganglia-general] Restful Api
  for Ganglia Database


  


  Hi Azaz,
  

  
  
If by RESTful you just mean
  "accessible via HTTP" then this is already
  possible [1]. Note, that this API interface is
  readonly so only GETs are allowed. Also note
  that this is not historical data. It is the
  most recent collected value for every metric
  -- in XML.
  
  

  
  
If you wanted historical
  data accessible via a HTTP API then you would
  need to develop something yourself -- I don't
  know of any working examples but there may be
  others on this email list willing to share
  their work if asked.
  
  

  
  
Regards,
  
  
Nick
  
  

  
  
[1]git diff --color
  4c63db2{^,}
  


  
  
On Thu, Apr 17, 2014 at
  6:53 PM, Azaz Rauf azazr...@gmail.com
  wrote:

  Hi,
  
  I
  need to write restful services which
  should return metrics data from ganglia
  database. So instead of using web front
  end provided by ganalia, I need to
  integrate my own dashboard with ganglia
  database.
  
  I
  have searched but it seems that ganglia
 

Re: [Ganglia-general] Restful Api for Ganglia Database

2014-04-28 Thread Vladimir Vuksan

  
  
For time ranges use
  
  cs=start timestamp
  
  and
  
  ce=end timestamp
  
  Vladimir
  
  On 04/28/2014 02:02 PM, Silver, Jonathan wrote:


  
  
  
  
Well
here is something that I put together on the spur of the
moment for someone, - just to return the latest entry.
But
I think that Vladimir’s comment is the way to go. Now that I
look, I certainly should also have followed the parameter
convention: 
http://sourceforge.net/apps/trac/ganglia/wiki/web_get_vars,
but I do not see a good time range parameter.
 
But
anyone is free to use and abuse, just don’t give me any
comments because it was just something for a one shot deal
and done in 10 minutes.

 
 
 

  From:
  Nick Satterly [mailto:nfsatte...@gmail.com]
  
  Sent: Monday, April 28, 2014 11:17 AM
  To: Silver, Jonathan
  Cc: Azaz Rauf;
  ganglia-general@lists.sourceforge.net
  Subject: Re: [Ganglia-general] Restful Api for
  Ganglia Database

 

  Hi Jon,
  
 
  
  
I think you misunderstood me. All I
  referred to was a git commit log entry to a pull request
  that added support for responding to HTTP requests with
  current metric data. The relevant GitHub pull request does
  not include any documentation
  https://github.com/ganglia/monitor-core/pull/60
  
  
 
  
  
What I think Azaz wants so that he
  could develop his own dashboard, and what has not been
  officially implemented, is an historical metric REST API.
  There was a Google summer of code proposal to look at a
  more advanced (non-historical) metric API (see https://github.com/ganglia/monitor-core/wiki/GSoC-2014-project-ideas#api)
  but there we no takers as far as I know.
  
  
 
  
  
If anyone has some code they'd like to
  share with the Ganglia community that implements an API
  that presents historical metric data (ie. perhaps sourced
  from the RRD's or stored some other way) then please do.
  It doesn't matter how bad you might think your code is, it
  would be a start and people can then build on that.
  
  
 
  
  
Regards,
  
  
Nick
  


   
  
On Mon, Apr 28, 2014 at 1:47 PM,
  Silver, Jonathan jonathan.sil...@unify.com
  wrote:

  
Nick,
 
Can
you please resend the link to the restful interface
documentation. I did not see it and ended up
implementing my own,
  
But
I’d really rather use the official.
  
 
Thanks,
jon
 

  From:
  Nick Satterly [mailto:nfsatte...@gmail.com]
  
  Sent: Saturday, April 26, 2014 3:36 PM
  To: Azaz Rauf
  Cc: 
ganglia-general@lists.sourceforge.net
  Subject: Re: [Ganglia-general] Restful Api
  for Ganglia Database


  
 

  Hi
Azaz,
  
 
  
  
If
  by RESTful you just mean "accessible via HTTP"
  then this is already possible [1]. Note, that
  this API interface is readonly so only GETs
  are allowed. Also note that this is not
  historical data. It is the most recent
  collected value for every metric -- in XML.
  
  
 
  
  
If
  you wanted historical data accessible via a
  HTTP API then you would need to develop
  something yourself -- I don't know of any
  working examples but there may be others 

Re: [Ganglia-general] GMond Server + EC2 using UDP Buffer Overflow

2014-04-27 Thread Vladimir Vuksan
What version of gmond are you running? 3.5.0+ have the ability to set higher 
UDP Buffer sizes. 

On 27. travnja 2014. 14:27:21 EDT, Manish Malhotra 
manish.hadoop.w...@gmail.com wrote:
Hi Ganglia Experts,

I need help with GMond server specifically.

I'm into this issue where my GMond Server is loosing UDP packets, which
all
of my GMond clients and custom apps are sending.

My Infra:

Infra : AWS EC2
Machine Type: M1x.large
No. Of Machines in the cluster: 500
# of Custom metrics : 4 million / day
OS: Ubuntu

Change rmax, wmax and somaconn params of the GMond Server machine, but
still facing the same issue.

When I did netstat -su , can see the RbuffError # is increasing each
time.

So, if anyone has configured Ganglia at this in AWS then please help.

Options,  I'm thinking are:

1. Having multiple GMond Servers ( This has impact that, at the GMetad
understand multiple GMond source but as different Clusters and cant
unified
as a single for GMetad and UI. )

2. Trying more linux level configs to ovecome.

Regards,
Manish




--
Start Your Social Network Today - Download eXo Platform
Build your Enterprise Intranet with eXo Platform Software
Java Based Open Source Intranet - Social, Extensible, Cloud Ready
Get Started Now And Turn Your Intranet Into A Collaboration Platform
http://p.sf.net/sfu/ExoPlatform



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general

Vladimir--
Start Your Social Network Today - Download eXo Platform
Build your Enterprise Intranet with eXo Platform Software
Java Based Open Source Intranet - Social, Extensible, Cloud Ready
Get Started Now And Turn Your Intranet Into A Collaboration Platform
http://p.sf.net/sfu/ExoPlatform___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] GMond Server + EC2 using UDP Buffer Overflow

2014-04-27 Thread Vladimir Vuksan

  
  
IIRC by default gmond will set buffer
  size to 128kB which is insufficient if you are collecting lots of
  metrics. These two commits change the behavior so that you can set
  UDP receive buffer to higher as long as eg. net.core.rmem_max is
  set
  
https://github.com/ganglia/monitor-core/commit/5f5d5cad408db9f688ffef5f29524eae0871a5a7
https://github.com/ganglia/monitor-core/commit/fa8b1bc2e334dc7257f9e7562ddbd6936ca200c2
  
  What I do is set this in sysctl.conf
  
  net.core.rmem_max = 5100
  
  then in my UDP receive channels I do
  
    buffer = 5000
  
  Otherwise as you observed you get UDP recv buffer errors.
  
  Vladimir
  
  On 04/27/2014 06:03 PM, Manish Malhotra wrote:


  
Thanks Vladimir for the quick reply !!


Its 3.4.x , but I'm wondering this problem is more the system /
machine level instead of GMond server level.
As I see the Recieved Buffer Errors at the system level, so
  even before reaching the GMond server process OS is having
  issue in reading those UDP packets.  I might be missing, but
  please see if it make sense. 


Plus I also need to scale my app which is pushing 4
  million/day metrics as I see the "Send buffer error" on that
  machine. 


Regards,
Manish




  
  

On Sun, Apr 27, 2014 at 11:50 AM,
  Vladimir Vuksan vli...@veus.hr
  wrote:
  
What version of gmond are you running? 3.5.0+ have the
  ability to set higher UDP Buffer sizes. 
  
  

  On 27. travnja 2014. 14:27:21 EDT,
Manish Malhotra manish.hadoop.w...@gmail.com
wrote:


  

  Hi Ganglia Experts,


I need help with GMond server
  specifically. 


I'm into this issue where my GMond Server
  is loosing UDP packets, which all of my GMond
  clients and custom apps are sending. 


My Infra: 


Infra : AWS EC2
Machine Type: M1x.large
No. Of Machines in the cluster: 500
# of Custom metrics : 4 million / day
OS: Ubuntu


Change rmax, wmax and somaconn params of
  the GMond Server machine, but still facing the
  same issue. 


When I did netstat -su , can see the
  RbuffError # is increasing each time. 


So, if anyone has configured Ganglia at
  this in AWS then please help. 


Options,  I'm thinking are: 


1. Having multiple GMond Servers ( This has
  impact that, at the GMetad understand multiple
  GMond source but as different Clusters and
  cant unified as a single for GMetad and UI. ) 


2. Trying more linux level configs to
  ovecome. 


Regards,
Manish


  

  
  
Start Your Social Network Today - Download eXo Platform
Build your Enterprise Intranet with eXo Platform Software

Java Based Open Source Intranet - Social, Extensible, Cloud Ready
Get Started Now And Turn Your Intranet Into A Collaboration Platform
http://p.sf.net/sfu/ExoPlatform
  
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/ganglia-general


  
  
  Vladimir
  


  


  


--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests 

Re: [Ganglia-general] Ganglia 4.x architecture planning

2014-03-28 Thread Vladimir Vuksan

  
  
We may want to clarify what services
  from Mongo are we gonna use. Is the intention to use it as a
  key/value store or use it for things like capped collections
(http://docs.mongodb.org/manual/tutorial/use-capped-collections-for-fast-writes-and-reads/).
  
  Currently we do have support for memcached. I actually use
  memcached for most of our alerting at this point instead of
  querying gmetad.
  
  Vladimir
  
  On 03/28/2014 09:51 AM, Daniel Pocock wrote:


  
  On 28/03/14 14:39, Aaron Nichols
wrote:
  
  


  
On Fri, Mar 28, 2014 at 1:45 AM,
  Maxime Brugidou maxime.brugi...@gmail.com
  wrote:
  
I don't understand why all this is
  necessary.
I strongly disagree with the "horizontal
  scalability" of mongoDB ( i run a very large mongodb
  cluster in production in addition to other databases)
  and would rather suggest a pluggable backend with a
  simpler default (like text files or maybe postgresql
  or mysql).
  
  
  
  I'll just 2nd this opinion. My immediate reaction to
the addition of mongo is rejection - my experience with
it at scale has been awful  on a small scale it
always feels like overkill. Further, since the data
being served seems like a relatively small dataset it's
unclear to me why there cannot be more options. For our
use case (which is 

  

  
  
  
  That has already been discussed in the thread - are you OK with
  the plugin idea?
  
  
  

  

  ~180k metrics) an in-memory datastore for metadata
should be more than sufficient assuming it can be
re-hydrated from some persistent source which could
simply be waiting for a polling interval of gmetad. I
have no need for the addition of nagios / rsyslog
events.
  
  

  

  
  
  
  Knowing you have 180k metrics is only one factor
  
  How many users (both humans and processes) want to view your data
  in real-time? Is it just used by sysadmins, for example, or does
  everybody in every development or support team access Ganglia?
  
  
  

  

  I've never looked at Ganglia as a horizontally
scalable system and accepted that because it made things
simple. If I need to scale it out I need to partition my
grids / clusters.

 

  

  
  
  Agreed - that has always worked and it would continue to work that
  way too. This is also good for people who have multiple small
  sites, etc.


  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] ganglia-web's RRD flush not working with rrdcached's TCP listener (gmetad 3.7.0)

2014-03-27 Thread Vladimir Vuksan

  
  
I don't believe there is any code in
  Ganglia web that explicitly flushes it. IIRC rrdcached will flush
  it on demand whenever you try to access an RRD that is cached.
  
  FYI What I did is have rrdcached listen both on TCP and UNIX
  socket e.g. these are my rrdcached options
  
  OPTS=" -t 60 -w 180 -z 180 -F -s ganglia -m 664 -l 127.0.0.1:9998
  -s ganglia -m 777 -P FLUSH,STATS,HELP -l
  unix:/tmp/rrdcached.limited.sock -b /var/lib/ganglia/rrds -B -p
  /var/lib/ganglia/rrdcached.pid"
  
  Then in ganglia web I configured it to use
  
  $conf['rrdcached_socket'] = "unix:/tmp/rrdcached.limited.sock";
  
  Hope that helps.
  
  Vladimir
  
  
  On 03/27/2014 03:31 PM, Gustavo Randich wrote:


  Hi,


I've just installed gemtad 3.7.0 and switched to TCP
  listener in rrdcached, and is all OK except for the on-demand
  flushing of RRDs performed by ganglia-web. Here's the symptom:


 tail /var/log/apache2/error.log
 ERROR: rrdc_flush
  (/var/lib/ganglia/rrds/hadoop-mstr/hadoop-mstr-03/load_one.rrd)
  failed with status -1.




  And here's the possible issue:
  
  
   # rrdtool flushcached --daemon 127.0.0.1:42217
/var/lib/ganglia/rrds/hadoop-mstr/hadoop-mstr-03/load_one.rrd
   ERROR: Flushing of file
"/var/lib/ganglia/rrds/hadoop-mstr/hadoop-mstr-03/load_one.rrd"
failed: absolute path names not allowed when talking to a
remote daemon. Skipping remaining 0 files.



 # rrdtool flushcached --daemon 127.0.0.1:42217
  hadoop-mstr/hadoop-mstr-03/load_one.rrd

 (OK)


Right now I'm not finding the code of ganglia-web where the
  RRD flushing is performed.


Thanks!




  
  
  
  
  --

  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] get wrong bytes_in and bytes_out number on rhel6 OS

2014-03-19 Thread Vladimir Vuksan
I agree. We should just make it default. If someone wants to make a pull 
request I'll merge it.

Vladimir

On 03/19/2014 09:44 AM, Jason A. Smith wrote:
 You can recompile ganglia and add this configure/make flag:

 CFLAGS=-DREMOVE_BOGUS_SPIKES

 For more information, see:

 https://github.com/ganglia/monitor-core/blob/master/libmetrics/linux/metrics.c#L321

 Since this appears to be so common, maybe this should be default or at
 least easier to enable with a documented configure flag. What do people
 think?

 ~Jason


 On 03/19/2014 09:32 AM, Yan Xiaofei wrote:
 Hello

 I have several node running scientific linux 6 os. They are SL 6.4 and 6.5.
 Some times it report very high bytes_in and bytes_out number.
 Here is the data I get from rrd files

   !-- 2014-03-19 15:49:15 CST / 1395215355 --
 rowv2.006429e+04/v/row
   !-- 2014-03-19 15:49:30 CST / 1395215370 --
 rowv2.006429e+04/v/row
   !-- 2014-03-19 15:49:45 CST / 1395215385 --
 rowv4.6116685637e+17/v/row
   !-- 2014-03-19 15:50:00 CST / 1395215400 --
 rowv4.6116685637e+17/v/row
   !-- 2014-03-19 15:50:15 CST / 1395215415 --
 rowv1.865787e+04/v/row
 It means that the network traffic is about hundreds of Peta-byte per
 second.
 It is impossible for one to have such high network speed.

 This situation just happened on SL6. The gmond version is 3.1.7 from
 epel repository. It was OK on SL5 with same gmond version.

 Here is a screen shot of the status:


 Do you know how to reslove the problem?

 Xiaofei



 --
 Learn Graph Databases - Download FREE O'Reilly Book
 Graph Databases is the definitive new guide to graph databases and their
 applications. Written by three acclaimed leaders in the field,
 this first edition is now available. Download your free book today!
 http://p.sf.net/sfu/13534_NeoTech



 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general


 --
 Learn Graph Databases - Download FREE O'Reilly Book
 Graph Databases is the definitive new guide to graph databases and their
 applications. Written by three acclaimed leaders in the field,
 this first edition is now available. Download your free book today!
 http://p.sf.net/sfu/13534_NeoTech
 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general


--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Trying to compile on Red Hat Enterprise Linux 5

2014-03-19 Thread Vladimir Vuksan

  
  
It will. Anything above Ganglia 3.1+
  will work.
  
  On 03/19/2014 03:28 PM, brown wrap wrote:


  

  
I actually downloaded the latest source for confuse and
  still had the error, but went back to Ganglia 3.5.0 and that
  built. Will that client work with a 3.6 version of Ganglia? 
  

 
  
  

On
  Wednesday, March 19, 2014 12:17 PM, Vladimir Vuksan
  vli...@veus.hr wrote:
 
  

  
I have not
  used RHEL 5 in ages however I don't believe
  confuse 2.5 works. You may need 2.6. I have a copy
  here if you'd like to try
  
  http://vuksan.com/centos/RPMS/x86_64/
  
  Vladimir
  
  On 03/19/2014 02:52 PM, brown wrap wrote:


  
We are trying to install Ganglia
3.6.0 on a RHEL 5 system. If seems no matter
what we do we can't find the libconfuse
library:

  
Checking

for confuse
checking for cfg_parse in -lconfuse... no
Trying harder including gettext
checking for cfg_parse in -lconfuse... no
Trying harder including iconv
checking for cfg_parse in -lconfuse... no
libconfuse not found

  
We

have installed the libconfuse library:
libconfuse.i386

2.5-4.el5
installed 
libconfuse.x86_64
2.5-4.el5
installed 
libconfuse-devel.i386
2.5-4.el5
installed 
libconfuse-devel.x86_64
2.5-4.el5 installed 
  

  
And

even built it from source, yet we still get
the error. Any ideas? Thanks.

  

  
  
  
  
  --
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  



  

  

  


  


--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Probleme scaling up Ganglia past 55 nodes

2014-03-16 Thread Vladimir Vuksan

  
  
What kind of storage are you using ?
  Are you using rrdcached?
  
  Vladimir
  
  On 03/16/2014 11:17 AM, Filipe Bonjour wrote:


  
Hello,

I am fairly new to Ganglia, and have a problem with Ganglia
3.6.0 / Ganglia Web 3.5.10: In one of my clusters, after I
add approximately 55 hosts, the graphs go blank. I think
it's very similar to http://www.mail-archive.com/ganglia-general%40lists.sourceforge.net/msg07852.html,
but that thread is old and does not seem to have been
resolved.

I have five clusters -- four are small (up to 40 hosts) and
are working fine. The last one, "HPC Cluster", is where I am
having trouble. I start gmond 3-5 servers at a
time and after approximately 55 hosts, the web site starts
showing blackouts. If I add more hosts the blackout becomes
permanent. The blackouts present as follows:

* In the Grid report the number of hosts and cores for akk
clusters is correct and allhosts are marked "up".
* In the Cluster report, the number of cores is correct but
some hosts are marked "down". Actually, most of the time
they're all marked "down".
* In both the Grid report and the Cluster report the graphs
for HPC Cluster are blank.
  
* None of
this affects any of the other clusters.
  

I've read a number of threads and tried to anticipate the
most common questions.

* All servers use NTP and running "date" on all of them
shows they're synchronized to a second or so.
* I do not see the message "illegal attempt to update using
time X when last update time is X".
* I moved gmetad to a bigger box (16 cores, 256 GB RAM,
negligible prior usage). Didn't even increase the number of
hosts I can add before the blackouts start.
  
* All data
sources use the default polling interval, 15 seconds.
* Tried adding the servers in different orders.
* No errors in the logs, no errors of I start gmond and
gmetad with -d.
* I ran "netstat -su" on all boxes, and there were no
packets dropped anywhere.
* I ran "netstat -au" on the gmetad box and "Recv-Q" and
'Send-Q" were always 0.
  * The server
  where gmetad runs has a UDP buffer
  (/proc/sys/net/core/rmem_max) of 4194304.
* I dumped the RRDs and in these blank areas the metrics are
"NaN".
* During blackouts, I tried "telnet gmetad servicing
node port" and always got an immediate and
apparently full response.
* The cluster's gmonds are all multicast and all listen and
send. I tried unicast and I tried a deaf/mute
multicastwithout any improvement.
  


I guess that the fact that none of the other clusters is
impacted means it's not a resources issie. I therefore
assume it's a configuration or architecture issue. I can
post the configuration files of gmetad and gmond, but this
post is pretty long as it is. So, in short:

* I am using one gmetad for all clusters.
* The data source for "HPC Cluster" has 6 nodes servicing it
(n800, n816, n832, n848, n864, n880) and uses port 8650.
  
 I
originally only had two nodes. When the blackouts started, I
added more.
  
* Gmond on
all hosts uses six multicast channels, the same 6 nodes
(n800, n816, n832, n848, n864, n880) on port 8650.
  
 I
originally had a single multicast channel. When the
blackouts started, I added more.
  
* Gmond on
all hosts listens on UDP and TCP on port 8650.

Since none of the other clusters is impected, I could
probably split this cluster in smaller clusters and those
would work, but this will make reporting the full cluster
usage more painful.

Any suggestions or ideas would be welcome.
  

  


  


--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___

Re: [Ganglia-general] Ganglia 3.6 on OSX 10.9 issue

2014-02-11 Thread Vladimir Vuksan

  
  
I was suspecting that. Can you try this
  
  diff --git a/libmetrics/darwin/metrics.c
  b/libmetrics/darwin/metrics.c
  index 2259d84..7d285a0 100644
  --- a/libmetrics/darwin/metrics.c
  +++ b/libmetrics/darwin/metrics.c
  @@ -446,6 +446,17 @@ cpu_intr_func ( void )
  ** FIXME
  */
  g_val_t 
  +cpu_steal_func ( void )
  +{
  + g_val_t val;
  + val.f = 0.0;
  + return val;
  +}
  +
  +/*
  +** FIXME
  +*/
  +g_val_t 
  cpu_sintr_func ( void )
  {
   g_val_t val;
  
  
  On 02/11/2014 11:16 AM, Jim Greene wrote:


  
  
Just as an update to this. I have noticed that
libmetrics/darwin/metrics.c does not contain a function for
cpu_steal, which would explain why it can't be found, or so I
assume.

  From: jim.green...@hotmail.com
  To: ganglia-general@lists.sourceforge.net
  Date: Tue, 11 Feb 2014 05:14:45 -0800
  Subject: [Ganglia-general] Ganglia 3.6 on OSX 10.9 issue
  
  
  Hi All,
Getting back into ganglia after some time off the grid (and
new job), and having some issues with ganglia 3.6 compiling
on OSX. I have macports installed, and have libconfuse
installed via macports. My configure is as follows:

./configure LDFLAGS="-L/opt/local/lib -L/usr/X11R6/lib
-L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/System/Library/Frameworks/Python.framework/Versions/2.7/lib/"

CPPFLAGS="-I/opt/local/include -I/usr/X11R6/include"
--with-libapr=/opt/local/bin/apr-1-config
--with-python=/usr/bin/python

Now this does compile fine afaik. The problem is when
attempting to run gmond. I get the following:

Cannot load /usr/local/lib/ganglia/modcpu.so metric module:
dlopen(/usr/local/lib/ganglia/modcpu.so, 10): Symbol not
found: _cpu_steal_func
 Referenced from: /usr/local/lib/ganglia/modcpu.so
 Expected in: flat namespace
in /usr/local/lib/ganglia/modcpu.so


Searching the interwebz gives me no clue here, and I can
find very little reference to cpu_steal outside of the
mod_cpu.c source.

This is on OSX 10.9.1

Thanks in advance 
  
  --
Android
  apps run on BlackBerry 10
  Introducing the new BlackBerry 10.2.1 Runtime for Android
  apps.
  Now with support for Jelly Bean, Bluetooth, Mapview and more.
  Get your Android app in front of a whole new audience. Start
  now.
http://pubads.g.doubleclick.net/gampad/clk?id=124407151iu=/4140/ostg.clktrk
  ___
  Ganglia-general mailing list
  Ganglia-general@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/ganglia-general
  
  
  
  
  --
Android apps run on BlackBerry 10
Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
Now with support for Jelly Bean, Bluetooth, Mapview and more.
Get your Android app in front of a whole new audience.  Start now.
http://pubads.g.doubleclick.net/gampad/clk?id=124407151iu=/4140/ostg.clktrk
  
  
  
  ___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



  


--
Android apps run on BlackBerry 10
Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
Now with support for Jelly Bean, Bluetooth, Mapview and more.
Get your Android app in front of a whole new audience.  Start now.
http://pubads.g.doubleclick.net/gampad/clk?id=124407151iu=/4140/ostg.clktrk___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia 3.6 on OSX 10.9 issue

2014-02-11 Thread Vladimir Vuksan

  
  
What does your mute/deaf config look
  like as well as udp/tcp channels config.
  
  On 02/11/2014 12:41 PM, Jim Greene wrote:


  
  Thanks Vladimir, that did the trick. Now I have
another issue though. It looks like gmond is eating an entire
core at 99% cpu. Being the first time I have ran this on OSX, I
am not sure if this is normal, but I wouldn't think so.

Jim


  


--
Android apps run on BlackBerry 10
Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
Now with support for Jelly Bean, Bluetooth, Mapview and more.
Get your Android app in front of a whole new audience.  Start now.
http://pubads.g.doubleclick.net/gampad/clk?id=124407151iu=/4140/ostg.clktrk___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Combining metrics from several RRD files

2014-01-31 Thread Vladimir Vuksan
Another alternative is to use CSV or JSON export from the Web Ui eg

http://blog.vuksan.com/2012/04/06/

It will eg export all values from aggregate graphs as well so you can do the 
summing

On 31. siječnja 2014. 09:19:30 EST, Martin Knoblauch kn...@knobisoft.de wrote:
Hi Arnau,

not completely :-) I actually want to extract the data from the RRD
files
and combine them into one, adding up the vaules. Good thing, I found
out
about rrdtool xport. I does what I want on the extracting. Now I just
need to do the summing up.

Cheers
Martin


On Fri, Jan 31, 2014 at 11:21 AM, Arnau Bria listsar...@gmail.com
wrote:

 On Fri, 31 Jan 2014 10:37:19 +0100
 Martin Knoblauch wrote:

  Hi friends,
 Hi,

   hope somebody already had this problem and solved it. So I have a
  cluster were we monitor the status (size, used, free) for several
  filesystems using Ganglia. Looks all great in the browser, but now
  the customer wants to have those data sets combined into one. In
  order to not loose the data we have, I want to combine those into
one
  RRD. All the source RRDs have identical structure (RRAs) and
  timestamps.

  Any solution? Ideas?

 If I've understood you property:

 1.-) use the Aggregate Graphs from ganglia's web.
 2.-) create a custom grpah and add it to one host :
 quick google search:


http://sourceforge.net/mailarchive/forum.php?thread_name=503E2A47.6020705%40gmail.comforum_name=ganglia-general

 3.-) as they are RRDs you can mix them using your own script (bash,
 perl, python)

 HTH,

  Cheers
  Martin
 Arnau



--
 WatchGuard Dimension instantly turns raw network data into actionable
 security intelligence. It gives you real-time visual feedback on key
 security issues and trends.  Skip the complicated setup - simply
import
 a virtual appliance and go from zero to informed in seconds.


http://pubads.g.doubleclick.net/gampad/clk?id=123612991iu=/4140/ostg.clktrk
 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general




-- 
--
Martin Knoblauch
email: k n o b i AT knobisoft DOT de
www: http://www.knobisoft.de




--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991iu=/4140/ostg.clktrk



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general

Vladimir--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991iu=/4140/ostg.clktrk___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Changing System Name

2013-09-20 Thread Vladimir Vuksan
gmond will keep IP to hostname mapping until you restart IIRC. If you 
are running ganglia 3.2+ my suggestion is to just use override_hostname.

http://sourceforge.net/apps/trac/ganglia/wiki/override_hostname

It makes things much cleaner.

Vladimir

On 09/20/2013 03:15 PM, Douglas Wagner wrote:
 Is there a good way for a system name to change in ganglia after data 
 collection has started?

 I've got a few systems that started reporting under ip addresses or 
 whose names have changed after they first started reporting data.

 Unfortunately, those systems are STILL reporting under then OLD system 
 names / ip Addresses even after a complete system name change (in the 
 gmond.conf file, /etc/hosts, DNS, etc.)

 I tried deleting the previous RRD data, but the new data just comes in 
 on top of it.  Where are the names coming from?  It's not nslookup 
 and/or hosts since literally these system names and IP addresses DO 
 NOT EXIST on the network anymore.

 I do have bind_hostname = yes in the udp_send_channel section.


--
LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99!
1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint
2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack includes
Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/22/13. 
http://pubads.g.doubleclick.net/gampad/clk?id=64545871iu=/4140/ostg.clktrk
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] why the python module can not be load into ganglia?

2013-09-03 Thread Vladimir Vuksan
Hi, 

I see it says enabled = no in example.pyconf. Change that and see if it helps 

ch huang justlo...@gmail.com wrote:
hi,all:

i do my test on my host,

# rpm -qa|grep ganglia
libganglia-3.6.0-1.x86_64
ganglia-gmond-modules-python-3.6.0-1.x86_64
ganglia-gmond-3.6.0-1.x86_64

# cat /etc/ganglia/conf.d/modpython.conf
/*
  params - path to the directory where mod_python
   should look for python metric modules
  the pyconf files in the include directory below
  will be scanned for configurations for those modules
*/
modules {
  module {
name = python_module
path = modpython.so
params = /usr/lib64/ganglia/python_modules
  }
}
include (/etc/ganglia/conf.d/*.pyconf)

here is example for test

# cat /etc/ganglia/conf.d/example.pyconf
modules {
  module {
name = example
language = python
enabled = no
param RandomMax {
value = 600
}
param ConstantValue {
value = 112
}
  }
}
#/* Collection groups for the
#example python module */
collection_group {
  collect_every = 10
  time_threshold = 50
  metric {
name = PyRandom_Numbers
value_threshold = 1.0
  }
}
collection_group {
  collect_once = yes
  time_threshold = 20
  metric {
name = PyConstant_Number
  }
}

and put python script  in

# ls /usr/lib64/ganglia/python_modules/example.py
/usr/lib64/ganglia/python_modules/example.py

and scrsipt test is ok

# python /usr/lib64/ganglia/python_modules/example.py
[pyexample] Received the following parameters
{'ConstantValue': '322', 'RandomMax': '500'}
value for PyRandom_Numbers is 160
value for PyConstant_Number is 322

but i can not see example module loaded when i use gmond -m

# gmond -m |grep xample

why? anyone can help?




--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft
technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk



___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general

Vladimir--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Host sorting problem

2013-05-07 Thread Vladimir Vuksan
You should open up a ticket.

Vladimir

On Mon, 6 May 2013, Matteo Ragni wrote:

 Hi,
 first af all, thank you for ganglia, I love it.
 
 Actually on our Torque/Maui Cluster we are using ganglia-web-interface 3.5.7. 
 We have some issue with sorting host lists by hostname.
 * in Full View, online nodes are sorted, offline not.
 * in Physical View nodes aren't sorted at all.
 I've seen something on TODO file about sorting, so I'm asking if we have to 
 wait for implementation or if there is something that we can
 do to achieve sorting.
 
 Thanks in advance,
 
 Matteo Ragni
 Student,
 University of Trento
 


--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Gaps in data

2013-04-23 Thread Vladimir Vuksan
Based on your graphs this happens randomly ? It would be interesting to 
see if you cannot connect to gmetad during those times. Stracing gmetad 
and doing

netstat -an | grep 865

may be helpful.

BTW there is a gmetad health checker someone wrote which may alert you to 
this situation early.

https://github.com/ganglia/ganglia_contrib/tree/master/gmetad_health_checker

Vladimir

On Tue, 23 Apr 2013, Ramon Bastiaans wrote:

 We detect it when the website stops responding (as described on 
 ganglia-developers list).

 Then it is 'fixed' by indeed simply restarting gmetad.


 As of January 2013, SARA has a new name: SURFsara.

 ing. Ramon Bastiaans - Senior Systems Programmer - Cluster Computing
 | Operations, Support  Development | SURFsara | Science Park 140 | 1098 XG 
 Amsterdam | T +31 (0)20 592 30 00 | ramon.bastia...@surfsara.nl | 
 www.surfsara.nl |




 On 20 apr. 2013, at 17:22, Vladimir Vuksan vli...@veus.hr wrote:

 There are reports of similar behavior. Do you simply restart gmetad when 
 this happens ? How do you detect hanging/crashing ?

 Vladimir

 On Fri, 19 Apr 2013, Ramon Bastiaans wrote:

 The gaps in our ganglia graphs are caused by gmetad incidentally 
 hanging/crashing due to a XML Parse error.

 We use a ramdisk which is working good for our setup.

 - Ramon

 As of January 2013, SARA has a new name: SURFsara.

 ing. Ramon Bastiaans - Senior Systems Programmer - Cluster Computing
 | Operations, Support  Development | SURFsara | Science Park 140 | 1098 XG 
 Amsterdam | T +31 (0)20 592 30 00 | ramon.bastia...@surfsara.nl | 
 www.surfsara.nl |




 On 19 apr. 2013, at 15:57, David Chin chi...@wfu.edu wrote:

 Hello, all:

 I just got a ganglia installation installed on RHEL6 -- ganglia 3.5.0 with 
 ganglia-web 3.5.7.

 Things seem to be working fine, except that I get intermittent gaps in the 
 data. My installation is private, but you can see a similar thing here at 
 SURFsara's installation in the month view:


 https://ganglia.surfsara.nl/?r=monthcs=ce=m=load_ones=by+namec=LISA+Clusterh=host_regex=max_graphs=0tab=mvn=sh=1z=smallhc=4

 In a previous installation, I was able to get around this by using a RAM 
 filesystem. However, the amount of data now precludes me from doing it. 
 (Previously, the RRD data only took up about 2GB, and it's now about 25GB.)

 I also get spurious spikes, where it looks like the data goes to MAX_FLOAT 
 or something like that.

 I was wondering if anyone has seen either of these behaviors, and if they 
 have suggestions for dealing with them.

 Thanks,
Dave


 --
 David Chin, Ph.D.
 chi...@wfu.edu  High Performance Computing Systems Analyst
 Office: +1.336.758.2964 Wake Forest University
 Mobile: +1.336.608.0793 Winston-Salem, NC
 Email-to-txt: 3366080...@mms.att.net   Google Talk: chi...@wfu.edu
 Web: http://users.wfu.edu/chindw/  http://linuxfollies.blogspot.com/
 https://plus.google.com/108169173177119739731/about
 --
 Precog is a next-generation analytics platform capable of advanced
 analytics on semi-structured data. The platform includes APIs for building
 apps and a phenomenal toolset for data science. Developers can use
 our toolset for easy data analysis  visualization. Get a free account!
 http://www2.precog.com/precogplatform/slashdotnewsletter___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general





--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia-general Digest, Vol 82, Issue 11

2013-03-22 Thread Vladimir Vuksan
I think you failed to mention what versions of gmond you run on Solaris 
and on RHEL.

Vladimir

On Fri, 22 Mar 2013, Derek Smith wrote:

 Since I have not seen any replies, it's still hard for me to believe EVERYONE 
 is having the same problem I am with Solaris servers.  Will you offer advice 
 and or tell me what you did to get Solaris servers to report?  Thank you!


 -Original Message-
 From: ganglia-general-requ...@lists.sourceforge.net 
 [mailto:ganglia-general-requ...@lists.sourceforge.net]
 Sent: Monday, March 18, 2013 05:36 PM
 To: ganglia-general@lists.sourceforge.net
 Subject: Ganglia-general Digest, Vol 82, Issue 11

 Send Ganglia-general mailing list submissions to
ganglia-general@lists.sourceforge.net

 To subscribe or unsubscribe via the World Wide Web, visit

 https://urldefense.proofpoint.com/v1/url?u=https://lists.sourceforge.net/lists/listinfo/ganglia-generalk=j2AJn6IkQ79ZgTSu1WDHyg%3D%3D%0Ar=r7kjoOqrPUEbvJC8fa50N7BUshlePBUb7tm6tw5oE5c%3D%0Am=EmoenU%2Buv41spoOf3n8GCe0FoeHV6uwmCEyxqn3oi2Q%3D%0As=6de202abfe5a8ddde31c959cd82fa116cd6f00eaad4616ad9796d20393fbf100
 or, via email, send a message with subject or body 'help' to
ganglia-general-requ...@lists.sourceforge.net

 You can reach the person managing the list at
ganglia-general-ow...@lists.sourceforge.net

 When replying, please edit your Subject line so it is more specific than Re: 
 Contents of Ganglia-general digest...


 Today's Topics:

   1. Re: sun servers not reporting : update (Derek Smith)
   2. IP Change on gmetad/apache server (dan.fra...@pnc.com)
   3. Re: Grouping Hosts from the same cluster, or spoofing Cluster
  name (Chris Burroughs)


 --

 Message: 1
 Date: Fri, 15 Mar 2013 16:06:08 -0400
 From: Derek Smith derek.sm...@cbc-companies.com
 Subject: Re: [Ganglia-general] sun servers not reporting : update
 To: ganglia-general@lists.sourceforge.net
ganglia-general@lists.sourceforge.net
 Message-ID:
07ca81f2c67c9740949814a4c9bfd39212f37e1...@cbcmail07.cbc.local
 Content-Type: text/plain; charset=us-ascii

 I tried adding a host route on the sun server to the rhel host plus tried 
 running gmond as root, still not show.  The IP of the head Rhel host is 
 10.255.9.28 which is in the hosts file on the sun server and both  are using 
 ntp.

 # netstat -rn

 Routing Table: IPv4
  Destination   Gateway   Flags  Ref Use Interface
   - - -- -
 default  10.255.3.209 UG1   8116
 default  172.31.14.209UG1   7584
 10.255.3.0   10.255.3.236 U 1 493112 bge0:1
 10.255.3.0   10.255.3.236 U 1  0 bge0
 10.255.3.0   10.255.3.236 U 1 442956 bge3
 10.255.9.28  10.255.3.209 UGH   1  6 bge0:1
 172.31.14.0  172.31.15.21 U 1   3502 bge1
 224.0.0.010.255.3.236 U 1  0 bge0:1
 127.0.0.1127.0.0.1UH9194 lo0

 # ps -ef |grep gmon
root  8121  7798   0 16:00:22 pts/1   0:00 /usr/local/sbin/gmond 
 --debug=10
root  8126  7798   0 16:01:56 pts/1   0:00 grep gmon

 still seeing packets...

 # snoop -i cap -t r
  1   0.0 dev02ad.cbc.local - cbclnx01kd   UDP D=8649 S=42109 LEN=16
  2   0.00014 dev02ad.cbc.local - cbclnx01kd   UDP D=8649 S=42109 LEN=16
  3   0.00027 dev02ad.cbc.local - cbclnx01kd   UDP D=8649 S=42109 LEN=16
  4   0.00039 dev02ad.cbc.local - cbclnx01kd   UDP D=8649 S=42109 LEN=16
  5   0.00052 dev02ad.cbc.local - cbclnx01kd   UDP D=8649 S=42109 LEN=16
  6   0.00064 dev02ad.cbc.local - cbclnx01kd   UDP D=8649 S=42109 LEN=16

 -Original Message-
 From: ganglia-general-requ...@lists.sourceforge.net 
 [mailto:ganglia-general-requ...@lists.sourceforge.net]
 Sent: Friday, March 15, 2013 03:38 PM
 To: ganglia-general@lists.sourceforge.net
 Subject: Ganglia-general Digest, Vol 82, Issue 10

 Send Ganglia-general mailing list submissions to
ganglia-general@lists.sourceforge.net

 To subscribe or unsubscribe via the World Wide Web, visit

 https://urldefense.proofpoint.com/v1/url?u=https://lists.sourceforge.net/lists/listinfo/ganglia-generalk=j2AJn6IkQ79ZgTSu1WDHyg%3D%3D%0Ar=r7kjoOqrPUEbvJC8fa50N7BUshlePBUb7tm6tw5oE5c%3D%0Am=UwXfzTNo5vq8CaUGTARvptbFYsw8AUi4j6ar9CMP8c4%3D%0As=6d7cffd3bad1ec7659c0143ee37a9a85262f712a0132cca2e00f97cef8eee412
 or, via email, send a message with subject or body 'help' to
ganglia-general-requ...@lists.sourceforge.net

 You can reach the person managing the list at
ganglia-general-ow...@lists.sourceforge.net

 When replying, please edit your Subject line so it is more specific than Re: 
 Contents of Ganglia-general digest...


 Today's Topics:

   1. sun servers not reporting 

Re: [Ganglia-general] Making use of metric titles?

2013-03-20 Thread Vladimir Vuksan
You absolutely can however it may be a bit of coding to get it out. 
Basically titles are part of metric extra data in the output gmond/gmetad 
expose e.g.


METRIC NAME=bytes_out VAL=656.45 TYPE=float UNITS=bytes/sec 
TN=120 TMAX=300 DMAX=0 SLOPE=both

EXTRA_DATA
EXTRA_ELEMENT NAME=GROUP VAL=network/
EXTRA_ELEMENT NAME=DESC VAL=Number of bytes out per second/
EXTRA_ELEMENT NAME=TITLE VAL=Bytes Sent/
/EXTRA_DATA

You'd have to modify either one of the graph.d/ scripts or create your own 
script that uses the mapping.


Vladimir

On Wed, 20 Mar 2013, Alexander Karner wrote:


Is there a way to create a report that makes use of the metric titles?

Background: I have Ganglia installed on AIX. In this specific environment I 
also collect fibrechannel (FC) data as defined in the
conf.d/ibmfc.conf file, where I give the metrics a name, based on the 
attachment to the adapter (disk or tape).
For example:
[...]
 metric {
    name = fcs0_input_requests
    title = fcs0 Disk Read IOs
    value_threshold = 0.001
  }
[...]
  metric {
    name = fcs1_input_requests
    title = fcs1 Tape Read IOs
    value_threshold = 0.001
  }
[...]

Could I use the title information to create aggregrate graphs? (at least for 
host and cluster but perhaps also for the grid).
Or do I have to change the metric definitions?

Mit freundlichen Grüßen / Kind regards

Alexander Karner


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Dynamic views in the web interface

2013-03-19 Thread Vladimir Vuksan
I am not very keen on best practices since they are often anything but 
best.


One of the reasons why view definitions were designed in a way that they 
were ie. using JSON was to make it fairly easy to generate those using a 
wide variety of tools from config management systems, shell scripts, etc. 
So you could technically run something every few minutes that looks at the 
list of hosts and generates the proper JSON view.


Vladimir

On Tue, 19 Mar 2013, Torstensen Morten wrote:


[IMAGE]

Investigating a little, it looks like we have to define a list of hostnames and 
scripted add it to a view. We can easily enough define
this hostname list, but any “best practices” or examples of adding this to the 
web views in a well behaved manner?

 

 

Best regards

Morten Torstensen

Chief Solution Architect, BA Nordic Open Server  Virtualization

Future Proof Supporting Services Coordinator

morten.torsten...@evry.com

M +47 46819584

 

From: Torstensen Morten [mailto:morten.torsten...@evry.com]
Sent: 19. mars 2013 07:59
To: ganglia-general@lists.sourceforge.net
Subject: [Ganglia-general] Dynamic views in the web interface

 

We would like to create views in ganglia-web that is based on serial number, so 
that any server on the same physical hardware will
aggregate together dynamically.

 

Any pointers in how to achieve this?

 

 

 

Best regards

Morten Torstensen

Chief Solution Architect, BA Nordic Open Server  Virtualization

Future Proof Supporting Services Coordinator

morten.torsten...@evry.com

M +47 46819584

cid:image002.png@01CDEE4D.C6FB68B0

 

evry.com
_

 

EVRY AS

Visiting: Nedre Skøyen vei 26, Oslo, Norway

P.O. Box 494 Skøyen, N-0213 Oslo

T +47 06500

 

Follow us on Twitter | Facebook | LinkedIn

 

EVRY is a leading IT company in the Nordic region. Through advice, technology 
and solutions, EVRY brings information to life, creating
value for our customers' business to the benefit of society. With a combination 
of extensive industry experience and a customer centric
approach, as well as international capabilities and local presence, we help 
customers realise the full potential of IT.

 

This message contains information which may be confidential and privileged. 
Unless you are the intended recipient (or authorized to
receive this message for the intended recipient), you may not use, copy, print, 
disseminate or disclose to anyone the message, the
attachments hereto or any information contained in the message. If you have 
received the message in error, please advise the sender by
reply e-mail, and delete the message with any attachments.

 


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] Monitorama hackathon

2013-03-19 Thread Vladimir Vuksan
There is monitoring geared conference in Boston on March 28 and 29th 
called Monitorama. Second day will include a hackathon where attendees 
will hack on different open source projects. There are two issues reported 
for Ganglia as an option e.g.

https://github.com/monitorama/hackathon/issues/14
https://github.com/monitorama/hackathon/issues/11

If you have a suggestion of something else you'd like to see please open 
up an issue against a correct Ganglia Github repo in 
https://github.com/ganglia/ then link that issue to issue in

https://github.com/monitorama/hackathon/issues

If you have any questions about the hackathon you could direct them to 
Will Maier on Twitter

https://twitter.com/whilp

Thanks,

Vladimir

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Ganglia and Nagios: warning / critical state in check_ganglia_metric.sh

2013-02-28 Thread Vladimir Vuksan
The way Nagios knows whether something is critical or warning is based on 
the exit code so if you look in chec_ganglia_metric.sh you could change


  WARNING)
echo $RESULT
exit 1;;
  CRITICAL)
echo $RESULT
exit 2;;


to say

  WARNING)
echo $RESULT
exit 1;;
  CRITICAL)
echo $RESULT
exit 1;;

basically change CRITICAL into WARNING exit code. That would be the 
quickest hack.


Vladimir

On Thu, 28 Feb 2013, Maciej Lasyk wrote:


Hi,
I'm trying to integrate Nagios with Ganglia. I stucked in one place and somehow 
can't find a solution.

Based on Ganglia Book, chapter 7, Check a Single Metric on a Specific Host we 
can set a check_command like below:

check_ganglia_metric!load_one!more!5

And it is said that:

The operators specified in the Nagios definitions for the Ganglia plug-
ins always indicate the “critical” state. If you use a notequal operator, it
means that state is critical if the value is not equal.

Now.. I'm trying to set a 'warning' state not critical. And can't find 
out-of-the-box solution - even on the authors
webpage http://vuksan.com/linux/nagios_scripts.html

I assume that I should write my own hooks for this. Could you tell me how You 
do It?

Regards,
Maciej Lasyk

GPG public key: http://maciek.lasyk.info/gpg_maciej_lasyk.asc

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] Ganglia Web 3.5.7 released

2013-02-19 Thread Vladimir Vuksan
Ganglia Web 3.5.7 has been released since some of the Javascript files 
were left out of packaging.

https://sourceforge.net/projects/ganglia/files/ganglia-web/3.5.7/


Vladimir

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Small NTP time corrections create major network graph effects?

2012-12-21 Thread Vladimir Vuksan
Are you absolutely sure these are NTP related ?

Vladimir

On Fri, 21 Dec 2012, Michael Durket wrote:

 I'm experimenting with Ganglia to see if it's a viable replacement for Zabbix 
 at our site. One of the more troublesome issues I've found is with the 
 network graphs. Occasionally, one of our many hosts will get an NTP time 
 adjustment (usually fractions of a second). When that happens, all of a 
 sudden it looks like our network transferred hundreds of petabytes of data 
 (according to the Network Report graphs).

 I suspect this is somehow related to RRD but I was wondering if anyone had 
 seen this or knows of a workaround. People here expect the graphs to reflect 
 data accurately (something that Zabbix isn't very good at when it's under 
 load) and this kind of behavior is problematic (and could disqualify Ganglia 
 from consideration).

 If this is in fact an RRD issue does anyone know if this kind of thing 
 happens with Graphite and Ganglia?




 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Monitoring IBM LSF Platform and GPFS

2012-12-11 Thread Vladimir Vuksan

What are you looking to monitor ? Queue sizes ?

Vladimir

On Tue, 11 Dec 2012, Waleed Harbi wrote:


Hello,I am looking for ganglia gmetric to monitoring IBM LSF Platform and GPFS. 
I hihgily appracited
your advice if have any comment. I cannot find it 
under https://github.com/ganglia/gmetric.
--
Best Wishes,
Waleed Harbi

Dream | Do | Be


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] Ganglia 3.5.0 pre-release

2012-12-11 Thread Vladimir Vuksan
I have packaged latest version of Ganglia 3.5.0 available here

http://sourceforge.net/projects/ganglia/files/pre-release/ganglia-3.5.0.tar.gz/download

Major changes are

- Separate thread in gmond to handle connections from gmetad.
- New metrics e.g. cpu_steal
- Improvements to Python collection scripts
- Misc bug fixes

I have been running it for about 2 weeks in production and haven't seen 
any major issues. Please give it a try and if there are no issues reported 
by the end of the week binaries it will be released as 3.5.0.

Thanks,

Vladimir

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Some views not showing

2012-12-03 Thread Vladimir Vuksan
Most likely your JSON is incorrect. Run

python -mjson.tool view_somename.json

To see if there are problems.

Vladimir

On Mon, 3 Dec 2012, deep desai wrote:

 hi,

 I have a problem regarding ganglia views. I have created many views
 for my setup using json files. But two of the view-names are not seen
 on the web-UI. Its json file is present here: /var/lib/ganglia/conf/

 Does anyone have any idea what can be wrong?

 Thanks
 Deep

 --
 Keep yourself connected to Go Parallel:
 BUILD Helping you discover the best ways to construct your parallel projects.
 http://goparallel.sourceforge.net
 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general


--
Keep yourself connected to Go Parallel: 
BUILD Helping you discover the best ways to construct your parallel projects.
http://goparallel.sourceforge.net
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Broken stacked graphs on new ganglia-web-3.5.4-1

2012-11-02 Thread Vladimir Vuksan
I believe the issue is with RRDtool. IIRC EPEL comes with rrdtool 1.2 
which lacks a lot of functionality we rely on. Please upgrade to 1.3+.




Vladimir

On Fri, 2 Nov 2012, Timothy Denike wrote:


Hey there,
I seem to be having the same issue posted by John Alberts on Sep 19.  Was a 
resolution ever discovered?
 Thread: http://comments.gmane.org/gmane.comp.monitoring.ganglia.general/3104

I'm setting up a brand-new Ganglia instance, compiled from Source RPM on OEL 
5u6.  (I believe John was running
CentOS EL5u6 as well.)  libconfuse and and apr installed from EPEL.  Pretty 
standard config.

It seems to only affect the load and network reports.  Other graphs, memory, 
cpu, etc work fine.

Apache error log shows:
ERROR: invalid rpn expression in: a0,a2,ADDNAN,a3,ADDNAN,

Debug:
/ganglia/graph.php?me=unspecifiedm=load_oner=hours=by%20namehc=4mc=2g=load_reportz=mediumdebug=5
Output:
/usr/bin/rrdtool graph - --start '-3600s' --end now --width 300 --height 123 
--title 'unspecified Grid Load last
hour' --vertical-label 'Loads/Procs' --lower-limit 0 --slope-mode
DEF:'a0'='/var/lib/ganglia/rrds//__SummaryInfo__/load_one.rrd':'sum':AVERAGE
DEF:'a1'='/var/lib/ganglia/rrds//__SummaryInfo__/cpu_num.rrd':'num':AVERAGE
DEF:'a2'='/var/lib/ganglia/rrds//__SummaryInfo__/cpu_num.rrd':'sum':AVERAGE
DEF:'a3'='/var/lib/ganglia/rrds//__SummaryInfo__/proc_run.rrd':'sum':AVERAGE
CDEF:'total'=a0,a1,ADDNAN,a2,ADDNAN,a3,ADDNAN, AREA:'a0'#BB:'1-min' 
VDEF:a0_last=a0,LAST
VDEF:a0_min=a0,MINIMUM VDEF:a0_avg=a0,AVERAGE VDEF:a0_max=a0,MAXIMUM 
GPRINT:'a0_last':'Now\:%5.1lf%s'
GPRINT:'a0_min':'Min\:%5.1lf%s' GPRINT:'a0_avg':'Avg\:%5.1lf%s' 
GPRINT:'a0_max':'Max\:%5.1lf%s\l'
LINE2:'a1'#00FF00:'Nodes' VDEF:a1_last=a1,LAST VDEF:a1_min=a1,MINIMUM 
VDEF:a1_avg=a1,AVERAGE
VDEF:a1_max=a1,MAXIMUM GPRINT:'a1_last':'Now\:%5.1lf%s' 
GPRINT:'a1_min':'Min\:%5.1lf%s'
GPRINT:'a1_avg':'Avg\:%5.1lf%s' GPRINT:'a1_max':'Max\:%5.1lf%s\l' 
LINE2:'a2'#FF:'CPUs ' VDEF:a2_last=a2,LAST
VDEF:a2_min=a2,MINIMUM VDEF:a2_avg=a2,AVERAGE VDEF:a2_max=a2,MAXIMUM 
GPRINT:'a2_last':'Now\:%5.1lf%s'
GPRINT:'a2_min':'Min\:%5.1lf%s' GPRINT:'a2_avg':'Avg\:%5.1lf%s' 
GPRINT:'a2_max':'Max\:%5.1lf%s\l'
LINE2:'a3'#2030F4:'Procs' VDEF:a3_last=a3,LAST VDEF:a3_min=a3,MINIMUM 
VDEF:a3_avg=a3,AVERAGE
VDEF:a3_max=a3,MAXIMUM GPRINT:'a3_last':'Now\:%5.1lf%s' 
GPRINT:'a3_min':'Min\:%5.1lf%s'
GPRINT:'a3_avg':'Avg\:%5.1lf%s' GPRINT:'a3_max':'Max\:%5.1lf%s\l'

--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Aggregate Graphs Not Working For Multiple Nodes

2012-10-31 Thread Vladimir Vuksan

Can you send the screenshot that shows the behavior ?

Vladimir

On Wed, 31 Oct 2012, Ghassan Elnajjar wrote:


I'm trying to create aggregate graphs under the Aggregate Graphs tab in ganglia web.  I 
am running into an issue where if I use the wild card,  * , for multiple nodes that 
start
with the same name, it produces just the bars with no graphs underneath.  
However, if I write the complete name of one node, it displays the graphs 
correctly.  Anyone know why it's
not working correctly for multiple nodes?  Thanks.



Ghassan
NOTE: The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader of this message is 
not the intended recipient, you are
hereby notified that any dissemination, distribution or copying of this 
communication is strictly prohibited. If you have received this communication 
in error, please notify us
immediately by replying to the message and deleting it from your computer.
--
VCU Health System
http://www.vcuhealth.org
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Question about scaling

2012-10-25 Thread Vladimir Vuksan
60 seconds is likely the problem. I would leave it at default ie 15. I can 
explain later. 

Potter,Mark L mlpot...@mdanderson.org wrote:

Nicholas,

I have it set to collect every 60 seconds at the moment as per the
gmetad I posted yesterday but even with that, running netstat -ua in
a 1 second watch loop, once Recv-Q pops it is still responding
immediately and the Recv-Q never stays lit, so to speak, for more than
two seconds. In fact even telneting to the port only lights up Recv-Q
for 2 seconds flat.

From: Nicholas Satterly [nfsatte...@gmail.com]
Sent: Thursday, October 25, 2012 15:19
To: Potter,Mark L
Cc: ganglia-general@lists.sourceforge.net
Subject: Re: [Ganglia-general] Question about scaling

Hi Mark,

I wouldn't be so quick to dismiss timeouts as the problem. The
0.9751s it took to download and parse ganglia's XML tree refers to
the time it took the PHP web frontend to query the gmetad XML whereas
the timeout's I was referring to occur when the gmetad polls the gmonds
during metric collection every 15 seconds.

My suggestion would be to run netstat -ua in a loop on the head node
and look for a non-zero Recv-Q on UDP port 8649. As soon as you see
it go non-zero telnet to port 8649 on the head node and make note of
how long it takes to respond. If it's any longer than 10 seconds you
will see random hosts down and broken graphs on the ganglia web.

--Nick.

On Thu, Oct 25, 2012 at 8:30 PM, Potter,Mark L
mlpot...@mdanderson.orgmailto:mlpot...@mdanderson.org wrote:
Well things blew up ~184 hosts. The web interface shows a random number
of hosts down each refresh, although sometimes there are all up. It
reports just ~1 second to download and process the XML: Downloading
and parsing ganglia's XML tree took 0.9751s  So I don't think timeouts
are the problem. A telnet to 8649 produces the XLM immediately. Could
this be the point where I need start using a RAM based partition or
could it be something else. Is sflow so much better I should consider
using it? Would multiple gmond's, say one per rack, and listing them
all in gmetad be a solution? At this point I am not sure of the next
step and I really appreciate the help the list have given me so far.



Hi Mark,

I assume cnode340 is the head node that all ~340 other gmond's send
their data to. If so, you could reduce the amount of redundant
metadata flying around by increasing send_metadata_interval to 120
seconds or
higher.

That is correct, cnode340 is the head node for ganglia. I have
increased the send metadata interval to 120 seconds and have 100
nodes reporting at this point and it seems pretty smooth. I am going to
add the others ~50 at a time.

Also, I suspect that if you telnet to port 8649 on your head node it
will take a while to respond because it's busy processing incoming UDP
metrics. If it takes more than 10 seconds to respond on a regular basis
then gmetad will timeout [1].

So far, with the 100 I have the response is an instant dump of the XML.

Try deploying a recently patched version of gmond [2] to the head node
which is now multi-threaded and see if that fixes the problem. It
starts a separate thread for responding to XML metric requests and
should respond immediately while the main thread is still processing
metrics.

I am running:

gmond 3.4.0
gmetad 3.4.0
Ganglia Web Frontend version 3.5.2

Would I need to patch gmond at this version?


SNIP

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.netmailto:Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] [Ganglia-developers] Adding Holt-Winters databases to existing rrd causes __SummaryInfo__ metric to fail to render on graphs

2012-10-24 Thread Vladimir Vuksan
I don't have a lot of time to look into it however different between 
SummaryInfo RRDs and other RRDs is that SummaryInfo contains ds[num] which 
is the number of nodes that being summarized. I wonder if that is somehow 
throwing off your script.


Vladimir

On Tue, 23 Oct 2012, Aaron Nichols wrote:


On Tue, Oct 23, 2012 at 5:41 PM, Nicholas Satterly nfsatte...@gmail.com wrote:
  Hi Aaron,

What is the output of rrdtool info cron.webServiceRequestCounter.Counter.rrd?

--Nick.


Thanks for your response.

Here's the rrdtool info output before and after applying the HW rra's - I also 
have some additional info below
this regarding the data pre/post application of the HW rras:

Before:

filename = cron.webServiceRequestCounter.Counter.rrd.bak
rrd_version = 0003
step = 15
last_update = 1351027681
header_size = 1760
ds[sum].index = 0
ds[sum].type = COUNTER
ds[sum].minimal_heartbeat = 120
ds[sum].min = NaN
ds[sum].max = NaN
ds[sum].last_ds = 25966364
ds[sum].value = 1.126667e+02
ds[sum].unknown_sec = 0
ds[num].index = 1
ds[num].type = COUNTER
ds[num].minimal_heartbeat = 120
ds[num].min = NaN
ds[num].max = NaN
ds[num].last_ds = 5
ds[num].value = 0.00e+00
ds[num].unknown_sec = 0
rra[0].cf = AVERAGE
rra[0].rows = 11520
rra[0].cur_row = 6534
rra[0].pdp_per_row = 1
rra[0].xff = 5.00e-01
rra[0].cdp_prep[0].value = NaN
rra[0].cdp_prep[0].unknown_datapoints = 0
rra[0].cdp_prep[1].value = NaN
rra[0].cdp_prep[1].unknown_datapoints = 0
rra[1].cf = AVERAGE
rra[1].rows = 20160
rra[1].cur_row = 6785
rra[1].pdp_per_row = 4
rra[1].xff = 5.00e-01
rra[1].cdp_prep[0].value = 0.00e+00
rra[1].cdp_prep[0].unknown_datapoints = 0
rra[1].cdp_prep[1].value = 0.00e+00
rra[1].cdp_prep[1].unknown_datapoints = 0
rra[2].cf = AVERAGE
rra[2].rows = 53568
rra[2].cur_row = 13483
rra[2].pdp_per_row = 20
rra[2].xff = 5.00e-01
rra[2].cdp_prep[0].value = 4.257556e+02
rra[2].cdp_prep[0].unknown_datapoints = 8
rra[2].cdp_prep[1].value = 0.00e+00
rra[2].cdp_prep[1].unknown_datapoints = 8
rra[3].cf = AVERAGE
rra[3].rows = 87600
rra[3].cur_row = 78819
rra[3].pdp_per_row = 120
rra[3].xff = 5.00e-01
rra[3].cdp_prep[0].value = 4.257556e+02
rra[3].cdp_prep[0].unknown_datapoints = 108
rra[3].cdp_prep[1].value = 0.00e+00
rra[3].cdp_prep[1].unknown_datapoints = 108

After:

filename = cron.webServiceRequestCounter.Counter.rrd
rrd_version = 0003
step = 15
last_update = 1351051988
header_size = 3200
ds[num].index = 0
ds[num].type = COUNTER
ds[num].minimal_heartbeat = 120
ds[num].min = NaN
ds[num].max = NaN
ds[num].last_ds = 15150735
ds[num].value = 4.736000e+02
ds[num].unknown_sec = 0
ds[sum].index = 1
ds[sum].type = COUNTER
ds[sum].minimal_heartbeat = 120
ds[sum].min = NaN
ds[sum].max = NaN
ds[sum].last_ds = 5
ds[sum].value = 0.00e+00
ds[sum].unknown_sec = 0
rra[0].cf = AVERAGE
rra[0].rows = 11520
rra[0].cur_row = 5484
rra[0].pdp_per_row = 1
rra[0].xff = 5.00e-01
rra[0].cdp_prep[0].value = NaN
rra[0].cdp_prep[0].unknown_datapoints = 0
rra[0].cdp_prep[1].value = NaN
rra[0].cdp_prep[1].unknown_datapoints = 0
rra[1].cf = AVERAGE
rra[1].rows = 20160
rra[1].cur_row = 2762
rra[1].pdp_per_row = 4
rra[1].xff = 5.00e-01
rra[1].cdp_prep[0].value = 0.00e+00
rra[1].cdp_prep[0].unknown_datapoints = 0
rra[1].cdp_prep[1].value = 0.00e+00
rra[1].cdp_prep[1].unknown_datapoints = 0
rra[2].cf = AVERAGE                                                           
                                 
                                                                                
  [4/190]
rra[2].rows = 53568
rra[2].cur_row = 51312
rra[2].pdp_per_row = 20
rra[2].xff = 5.00e-01
rra[2].cdp_prep[0].value = 9.0053916667e+02
rra[2].cdp_prep[0].unknown_datapoints = 0
rra[2].cdp_prep[1].value = 0.00e+00
rra[2].cdp_prep[1].unknown_datapoints = 0
rra[3].cf = AVERAGE
rra[3].rows = 87600
rra[3].cur_row = 70734
rra[3].pdp_per_row = 120
rra[3].xff = 5.00e-01
rra[3].cdp_prep[0].value = 4.008067e+03
rra[3].cdp_prep[0].unknown_datapoints = 0
rra[3].cdp_prep[1].value = 0.00e+00
rra[3].cdp_prep[1].unknown_datapoints = 0
rra[4].cf = HWPREDICT
rra[4].rows = 4032
rra[4].cur_row = 3617
rra[4].pdp_per_row = 1
rra[4].alpha = 1.00e-01
rra[4].beta = 3.50e-03
rra[4].cdp_prep[0].intercept = -4.7889582583e+05
rra[4].cdp_prep[0].slope = -3.9220340107e+03
rra[4].cdp_prep[0].NaN_count = 1
rra[4].cdp_prep[1].intercept = 1.3071810839e+06
rra[4].cdp_prep[1].slope = 4.0880046086e+03
rra[4].cdp_prep[1].NaN_count = 1
rra[5].cf = SEASONAL
rra[5].rows = 288
rra[5].cur_row = 32
rra[5].pdp_per_row = 1
rra[5].gamma = 1.00e-01
rra[5].cdp_prep[0].seasonal = 8.5694737658e+05
rra[5].cdp_prep[1].seasonal = -1.2692770344e+06
rra[6].cf = DEVSEASONAL
rra[6].rows = 288
rra[6].cur_row = 162
rra[6].pdp_per_row = 1
rra[6].gamma = 1.00e-01
rra[6].cdp_prep[0].deviation = 2.2947800076e+06
rra[6].cdp_prep[1].deviation = 2.8459664904e+04
rra[7].cf = 

Re: [Ganglia-general] Additional Bars

2012-10-21 Thread Vladimir Vuksan
I would imagine if you are missing library dependencies rrdtool will not work. 
Try executing rrdtool by hand. 

Ghassan Elnajjar gelnaj...@mcvh-vcu.edu wrote:

Hi Vladimir,

After installing the rrdtool 1.3.9, all my graphs disappeared.  There
were 
errors installing the pango rpm so I removed and installed libgcc and 
libffi rpm, but still got the same errors after the install of the
pango 
rpm.  Would these be the cause of my graphs disappearing?  Can this be 
fixed?  Thanks.


#:  rpm -Uvh libgcc-4.7.2-1.aix7.1.ppc.rpm
libgcc ##

#:  rpm -Uvh libffi-3.0.11-1.aix5.1.ppc.rpm
libffi ##

rpm -Uvh pango-1.24.5-1.aix5.1.ppc.rpm
pango ##
Could not load program /opt/freeware/bin/pango-querymodules:
Could not load module 
/opt/freeware/lib/libgobject-2.0.a(libgobject-2.0.so.0).
Dependent module libffi.a(libffi.so.5) could not be loaded.
Could not load module libffi.a(libffi.so.5).
System error: No such file or directory
Could not load module pango-querymodules.
Dependent module 
/opt/freeware/lib/libgobject-2.0.a(libgobject-2.0.so.0) could not be 
loaded.
Could not load module .
execution of pango-1.24.5-1 script failed, exit status 255



Ghassan





From:   Vladimir Vuksan vli...@veus.hr
To: Ghassan Elnajjar gelnaj...@mcvh-vcu.edu
Cc: ganglia-general@lists.sourceforge.net
Date:   10/19/2012 12:11 PM
Subject:Re: [Ganglia-general] Additional Bars



I'm afraid you'll have to update all those too.

Vladimir

On Fri, 19 Oct 2012, Ghassan Elnajjar wrote:

 I have to upgrade the following files as well.  Do I need to do that
or 
I can just use the --nodeps parameter?
 
 
 Ghassan
 
 
 #: rpm -Uvh rrdtool-1.3.9-1.aix5.1.ppc.rpm
 
 cairo = 1.8.8 is needed by rrdtool-1.3.9-1
 freetype2 = 2.3.12 is needed by rrdtool-1.3.9-1
 libart_lgpl = 2.3.20 is needed by rrdtool-1.3.9-1
 libpng = 1.2.44 is needed by rrdtool-1.3.9-1
 pango = 1.24.5 is needed by rrdtool-1.3.9-1
 dejavu-sans-mono-fonts is needed by rrdtool-1.3.9-1
 dejavu-lgc-sans-mono-fonts is needed by rrdtool-1.3.9-1
 libcairo.a(libcairo.so.2) is needed by rrdtool-1.3.9-1
 libpango-1.0.a(libpango-1.0.so.0) is needed by
rrdtool-1.3.9-1
 libpangocairo-1.0.a(libpangocairo-1.0.so.0) is needed by 
rrdtool-1.3.9-1
 
 
 

 
 From:Ghassan Elnajjar gelnaj...@mcvh-vcu.edu
 To:Vladimir Vuksan vli...@veus.hr
 Cc:ganglia-general@lists.sourceforge.net
 Date:10/19/2012 11:42 AM
 Subject:Re: [Ganglia-general] Additional Bars
 
 
_
 
 
 
 Thank you.  Do I just upgrade right on top of the 1.2.30 or there is
a 
specific rpm command that I need to execute?
 
 Is rpm -U package_name sufficient?
 
 
 Ghassan
 
 
 
 
 
 From:Vladimir Vuksan vli...@veus.hr
 To:Ghassan Elnajjar gelnaj...@mcvh-vcu.edu
 Cc:ganglia-general@lists.sourceforge.net
 Date:10/19/2012 11:33 AM
 Subject:Re: [Ganglia-general]  Additional Bars
 
 
_
 
 
 
 That could be the problem. Can you upgrade to rrdtool 1.3+. We use a
lot
 of features from 1.3+ so things will look off if you use rrdtool 1.2.
 
 Vladimir
 
 On Fri, 19 Oct 2012, Ghassan Elnajjar wrote:
 
  I'm using rrdtool-1.2.30-5.
 
 
  Ghassan

NOTE: The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader of this
message 
is not the intended recipient, you are hereby notified that any 
dissemination, distribution or copying of this communication is
strictly 
prohibited. If you have received this communication in error, please 
notify us immediately by replying to the message and deleting it from
your 
computer.
--
VCU Health System
http://www.vcuhealth.org
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Additional Bars

2012-10-19 Thread Vladimir Vuksan

What RRDtool version are you running ?

Also please click on the broken image ie. open it in a new window. Then 
append debug=5 to the URL. It should give you the rrdtool command it's 
attempting to execute. Try to run it on the command line.


Vladimir

On Fri, 19 Oct 2012, Ghassan Elnajjar wrote:


Please see below screen shot.  Also, attached is the log since this issue 
started to happen.  Thanks.


Perhaps you can post a screenshot. Also check Apache error logs when you access 
that URL

Ghassan Elnajjar gelnaj...@mcvh-vcu.edu wrote:
When I click on a particular node within a cluster, in the body of the page above the 
Edit Optional Graphs button, there is an
extra column on the far left that only shows the bar that includes +, CSV, JSON, 
Inspect, and Hide/Show Events with no
graphs underneath them.  To the right of that column are two additional columns 
where there are graphs underneath the bars.

Does anyone know what could cause this?  I did not chose to display any 
additional optional graphs.


Ghassan


Ghassan H Elnajjar
VCU Health System/MCV Hospitals
Systems Analyst
Technology  Engineering Services
701 East Franklin Street, suite 400
Richmond, VA 23298-0483
(804) 628-1150 work
gelnaj...@mcvh-vcu.edu
http://www.vcuhealth.org



From:        Ghassan Elnajjar gelnaj...@mcvh-vcu.edu
To:        Mark Wagner mwag...@intelius.com
Cc:        ganglia-general@lists.sourceforge.net
Date:        10/18/2012 11:39 AM
Subject:        Re: [Ganglia-general] Gaglia Web LOGO  Utilization Heatmap

_



Hi Mark,

Please excuse me for my ignorance.  What code do I need to add to the 
user_header.tpl?  Is it html code?  Do I add the directory
structure leading to the logo.jpg?  Thanks.


Ghassan


Ghassan H Elnajjar
VCU Health System/MCV Hospitals
Systems Analyst
Technology  Engineering Services
701 East Franklin Street, suite 400
Richmond, VA 23298-0483
(804) 628-1150 work
gelnaj...@mcvh-vcu.edu
http://www.vcuhealth.org



From:        Mark Wagner mwag...@intelius.com
To:        ganglia-general@lists.sourceforge.net
Date:        10/17/2012 07:46 PM
Subject:        Re: [Ganglia-general] Gaglia Web LOGO  Utilization Heatmap

_



For the logo, with version 3.5.3 of ganglia-web (and possibly others) you can create 
create templates/default/user_header.tpl
which gets pulled in by templates/default/header.tpl like so right at the start 
of the body:

/head
body style=background-color: #ff; onunload=g_refresh_timer=null
{if isset($user_header)}
{include(file=user_header.tpl)}
{/if}



On 10/17/2012 03:05 PM, Ghassan Elnajjar wrote:
Has anyone added their own custom logo, i.e. company logo, to their ganglia 
web?  Are their any instructions on how to do this?

Also, does anyone know how to change the Utilization Heatmap to a pie chart?


Thank you.


Ghassan
NOTE: The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader
of this message is not the intended recipient, you are hereby notified that any 
dissemination, distribution or copying of this
communication is strictly prohibited. If you have received this communication 
in error, please notify us immediately by replying
to the message and deleting it from your computer.
--
VCU Health System
http://www.vcuhealth.org

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct


___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general



NOTE: The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader
of this message is not the intended recipient, you are hereby notified that any 
dissemination, distribution or copying of this
communication is strictly prohibited. If you have received this communication 
in error, please notify us immediately by replying
to the message and deleting it from your computer.
--
VCU Health System
http://www.vcuhealth.org
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] Additional Bars

2012-10-19 Thread Vladimir Vuksan
That could be the problem. Can you upgrade to rrdtool 1.3+. We use a lot 
of features from 1.3+ so things will look off if you use rrdtool 1.2.


Vladimir

On Fri, 19 Oct 2012, Ghassan Elnajjar wrote:


I'm using rrdtool-1.2.30-5.


Ghassan


Ghassan H Elnajjar
VCU Health System/MCV Hospitals
Systems Analyst
Technology  Engineering Services
701 East Franklin Street, suite 400
Richmond, VA 23298-0483
(804) 628-1150 work
gelnaj...@mcvh-vcu.edu
http://www.vcuhealth.org



From:        Vladimir Vuksan vli...@veus.hr
To:        Ghassan Elnajjar gelnaj...@mcvh-vcu.edu
Cc:        ganglia-general@lists.sourceforge.net
Date:        10/19/2012 10:49 AM
Subject:        Re: [Ganglia-general]  Additional Bars

_



What RRDtool version are you running ?

Also please click on the broken image ie. open it in a new window. Then
append debug=5 to the URL. It should give you the rrdtool command it's
attempting to execute. Try to run it on the command line.

Vladimir

On Fri, 19 Oct 2012, Ghassan Elnajjar wrote:

 Please see below screen shot.  Also, attached is the log since this issue 
started to happen.  Thanks.


 Perhaps you can post a screenshot. Also check Apache error logs when you 
access that URL

 Ghassan Elnajjar gelnaj...@mcvh-vcu.edu wrote:
 When I click on a particular node within a cluster, in the body of the page above the 
Edit Optional Graphs button, there is
an
 extra column on the far left that only shows the bar that includes +, CSV, JSON, 
Inspect, and Hide/Show Events with
no
 graphs underneath them.  To the right of that column are two additional 
columns where there are graphs underneath the bars.

 Does anyone know what could cause this?  I did not chose to display any 
additional optional graphs.


 Ghassan


 Ghassan H Elnajjar
 VCU Health System/MCV Hospitals
 Systems Analyst
 Technology  Engineering Services
 701 East Franklin Street, suite 400
 Richmond, VA 23298-0483
 (804) 628-1150 work
 gelnaj...@mcvh-vcu.edu
 http://www.vcuhealth.org



 From:        Ghassan Elnajjar gelnaj...@mcvh-vcu.edu
 To:        Mark Wagner mwag...@intelius.com
 Cc:        ganglia-general@lists.sourceforge.net
 Date:        10/18/2012 11:39 AM
 Subject:        Re: [Ganglia-general] Gaglia Web LOGO  Utilization Heatmap


_



 Hi Mark,

 Please excuse me for my ignorance.  What code do I need to add to the 
user_header.tpl?  Is it html code?  Do I add the
directory
 structure leading to the logo.jpg?  Thanks.


 Ghassan


 Ghassan H Elnajjar
 VCU Health System/MCV Hospitals
 Systems Analyst
 Technology  Engineering Services
 701 East Franklin Street, suite 400
 Richmond, VA 23298-0483
 (804) 628-1150 work
 gelnaj...@mcvh-vcu.edu
 http://www.vcuhealth.org



 From:        Mark Wagner mwag...@intelius.com
 To:        ganglia-general@lists.sourceforge.net
 Date:        10/17/2012 07:46 PM
 Subject:        Re: [Ganglia-general] Gaglia Web LOGO  Utilization Heatmap


_



 For the logo, with version 3.5.3 of ganglia-web (and possibly others) you can create 
create templates/default/user_header.tpl
 which gets pulled in by templates/default/header.tpl like so right at the 
start of the body:

 /head
 body style=background-color: #ff; onunload=g_refresh_timer=null
 {if isset($user_header)}
 {include(file=user_header.tpl)}
 {/if}



 On 10/17/2012 03:05 PM, Ghassan Elnajjar wrote:
 Has anyone added their own custom logo, i.e. company logo, to their ganglia 
web?  Are their any instructions on how to do this?

 Also, does anyone know how to change the Utilization Heatmap to a pie chart?


 Thank you.


 Ghassan
 NOTE: The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader
 of this message is not the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this
 communication is strictly prohibited. If you have received this communication 
in error, please notify us immediately by
replying
 to the message and deleting it from your computer.
 --
 VCU Health System
 http://www.vcuhealth.org

 --
 Everyone hates slow websites. So do we.
 Make your web apps faster with AppDynamics
 Download AppDynamics Lite for free today:
 http://p.sf.net/sfu/appdyn_sfd2d_oct


 ___
 Ganglia-general mailing list
 Ganglia-general@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ganglia-general



 NOTE: The information contained in this message may be privileged and 
confidential

Re: [Ganglia-general] no graphs displayed but png creation ok

2012-10-19 Thread Vladimir Vuksan
I am not sure how to make sure this doesn't happen again but please check 
your conf.php and make sure there are no trailing new lines ie. last line 
should be

?

Graphs are getting generated however there is an extra newline that is 
inserted at the top that breaks PNG :-(.

Vladimir

On Fri, 19 Oct 2012, Adrian Sevcenco wrote:

 Hi! I try the ganglia web 3.4 (http://alien.spacescience.ro/ganglia2)
 but no graphics is showed ..
 i used debug=5 and run the command and i got the correct png ..

 Any idea why the png is not displayed even if it created successfully?
 Thanks a lot!
 Adrian



--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


  1   2   3   >