[Ganglia-general] (no subject)

2019-01-19 Thread FELIX M WICKS
Does any one have a food guide on installing ganglia on centos7.  I have it 
installed but it is slow connectionsNg to /ganglia directory. Connecting to 
appache is fast

Sent from Yahoo Mail on Android
Sent from Yahoo Mail on Android___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2019-01-19 Thread FELIX M WICKS
Does any one have a food guide on installing ganglia on centos7.  I have it 
installed but it is slow connectionsNg to /ganglia directory. Connecting to 
appache is fast

Sent from Yahoo Mail on Android___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2016-10-13 Thread Styrk, Daryl
unsubscribe
This email and any accompanying attachments are confidential. If you received 
this email by mistake, please delete
it from your system. Any review, disclosure, copying, distribution, or use of 
the email by others is strictly prohibited.
--
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] (no subject)

2016-05-14 Thread Nick Satterly
Hi Jesse,

I haven't reviewed your code in detail but I have taken the time to
consider some of your design decisions such as "default tags" and grouping
by "measurements". See my feedback / queries here...

https://github.com/hawson/monitor-core/issues/15
https://github.com/hawson/monitor-core/issues/16
https://github.com/hawson/monitor-core/issues/17

In summary, I think the integration with influxdb should make use of
existing features of ganglia before adding new, seemingly duplicate ones.
And at least initially, I personally think it should be a compile-time "opt
in" feature rather than hard-coded as it is now.

Hope my feedback has been useful and I'm happy to discuss this with you
further.

Regards,
Nick


On Tue, May 3, 2016 at 2:33 AM, Jesse Becker  wrote:

> I have been working recently on a branch to Ganglia/monitor-core that
> allows gmond to send metrics directly to an InfluxDB database, and I am
> requesting comments and feedback before submitting a formal pull request
>
> It can be found here:
>
>   https://github.com/hawson/monitor-core/tree/influxdb
>
>
> This purely a change to the gmond agent.  Other programs (e.g. gmetad,
> gmetric) and components (the web UI) are not changed.  However, a logical
> next phase could be to rework the WebUI and Gmetad to use InfluxDB as a
> backend.  Since my original post to the ganglia-developers list a few days
> ago, I've made a few minor improvements (per-metric "measurements"
> attributes, and adding influxdb metrics to the gstatus module).
>
>
> Changes are relatively isolated, a new lib/influxdb.c file was made for
> most new functionality, and hooking into gmond as part of the existing
> Ganglia_collection_group_send() function in the main gmond.c code. Thus,
> when a packet would normally be sent to another gmond, it can also be sent
> to an influxdb channel at the same time.  There are, of course, various
> other changes sprinkled about to other files, mostly to add new gmond.conf
> options.
>
> The gmond.conf documentation, and default configuration file (from 'gmond
> -t') has also been updated to cover the new configuration options.
>
> The first new option is an influxdb_send_channel stanza.  It is fairly
> simple, with three options.
>
>   influxdb_send_channel {
> host = myinfluxdb.example.com
> port = 8089
> default_tags = zone=us-east,host_class=hpc  //optional tags sent with
> each metric
>   }
>
> The "host" and "port" attributes are required, and their purpose should be
> obvious.  The "default_tags" attribute is optional.  Influxdb permits tags
> associated with each time/key/value tuple; this is how hostnames are
> stored, for example.  This attribute allows default tags to be associated
> with every metric sent, for example to identify an HPC cluster, or AWS
> zone, or other useful bit of metadata.
>
> The other change to gmond.conf is also optional, but strongly
> recommended.  Every collection_group stanza may now have an optional
> "measurement" attribute.  An example for the some of the system load
> metrics:
>
>   collection_group {
> collect_every = 20
> time_threshold = 90
> measurement = "load"  // <<<  new atttribute
> metric {
>   name = "load_one"
>   title = "One Minute Load Average"
> }
> metric {
>   name = "load_five"
>   title = "Five Minute Load Average"
> }
> [...]
>   }
>
> This attribute is used to assist InfluxDB in organizing metrics into
> groups of "measurements".  Measurements are similar in function to an SQL
> table (InfluxDB is not an SQL database, and the analogy is not perfect).
> Since most metrics in a collection group tend to be similar (all CPU stats
> are collected at the same time, network stats at another, etc), adding this
> metric at the collection_group level seems to make the most sense.  If a
> collection_group does not have a measurement attribute, the metric name
> (e.g. "load_one"), is used instead; this is not recommended.  The updated
> documentaiton for gmond.conf has more details and several examples. Note
> that adding this support did require some minor reorganization of the
> default gmond.conf file.
>
> I know of several improvements that cold be made, but believe that the
> code is fit for general review.
>
> Comments, questions and corrections are all welcome, either on the list,
> on the github URL above, on IRC, or email.
>
> --
> Jesse Becker
>
>
> --
> 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.so

[Ganglia-general] (no subject)

2016-05-02 Thread Jesse Becker
I have been working recently on a branch to Ganglia/monitor-core that
allows gmond to send metrics directly to an InfluxDB database, and I am
requesting comments and feedback before submitting a formal pull request

It can be found here:

  https://github.com/hawson/monitor-core/tree/influxdb


This purely a change to the gmond agent.  Other programs (e.g. gmetad,
gmetric) and components (the web UI) are not changed.  However, a logical
next phase could be to rework the WebUI and Gmetad to use InfluxDB as a
backend.  Since my original post to the ganglia-developers list a few days
ago, I've made a few minor improvements (per-metric "measurements"
attributes, and adding influxdb metrics to the gstatus module).


Changes are relatively isolated, a new lib/influxdb.c file was made for
most new functionality, and hooking into gmond as part of the existing
Ganglia_collection_group_send() function in the main gmond.c code. Thus,
when a packet would normally be sent to another gmond, it can also be sent
to an influxdb channel at the same time.  There are, of course, various
other changes sprinkled about to other files, mostly to add new gmond.conf
options.

The gmond.conf documentation, and default configuration file (from 'gmond
-t') has also been updated to cover the new configuration options.

The first new option is an influxdb_send_channel stanza.  It is fairly
simple, with three options.

  influxdb_send_channel {
host = myinfluxdb.example.com
port = 8089
default_tags = zone=us-east,host_class=hpc  //optional tags sent with
each metric
  }

The "host" and "port" attributes are required, and their purpose should be
obvious.  The "default_tags" attribute is optional.  Influxdb permits tags
associated with each time/key/value tuple; this is how hostnames are
stored, for example.  This attribute allows default tags to be associated
with every metric sent, for example to identify an HPC cluster, or AWS
zone, or other useful bit of metadata.

The other change to gmond.conf is also optional, but strongly recommended.
Every collection_group stanza may now have an optional "measurement"
attribute.  An example for the some of the system load metrics:

  collection_group {
collect_every = 20
time_threshold = 90
measurement = "load"  // <<<  new atttribute
metric {
  name = "load_one"
  title = "One Minute Load Average"
}
metric {
  name = "load_five"
  title = "Five Minute Load Average"
}
[...]
  }

This attribute is used to assist InfluxDB in organizing metrics into groups
of "measurements".  Measurements are similar in function to an SQL table
(InfluxDB is not an SQL database, and the analogy is not perfect).  Since
most metrics in a collection group tend to be similar (all CPU stats are
collected at the same time, network stats at another, etc), adding this
metric at the collection_group level seems to make the most sense.  If a
collection_group does not have a measurement attribute, the metric name
(e.g. "load_one"), is used instead; this is not recommended.  The updated
documentaiton for gmond.conf has more details and several examples. Note
that adding this support did require some minor reorganization of the
default gmond.conf file.

I know of several improvements that cold be made, but believe that the code
is fit for general review.

Comments, questions and corrections are all welcome, either on the list, on
the github URL above, on IRC, or email.

-- 
Jesse Becker
--
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] (no subject)

2014-03-20 Thread Bernard Li
Hi Maciej:

At this point I would just go ahead and apply to the program if you
are interested, unless you have specific questions regarding the
project for one of the mentors.

Good luck.

Cheers,

Bernard

On Wed, Mar 19, 2014 at 3:52 PM, Maciej Mazur  wrote:
> Hello,
>
> My name is Maciej Mazur.
> I would like to talk about Gsoc possibilities.
> I'm especially interested in "RRDtool data access from data analysis
> frameworks (Data Science, Statistics)" (advanced part).
>
> Thanks,
> Maciej Mazur
>
>
> --
> 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


[Ganglia-general] (no subject)

2014-03-19 Thread Maciej Mazur
Hello,

My name is Maciej Mazur.
I would like to talk about Gsoc possibilities.
I'm especially interested in "RRDtool data access from data analysis
frameworks (Data Science, Statistics)" (advanced part).

Thanks,
Maciej Mazur
--
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


[Ganglia-general] (no subject)

2012-06-16 Thread Krishnanand Khambadkone
http://spacebetweencomic.com/wp-content/themes/comicpress/mndlkfs.html?cn=qqn.kffn&jxc=nkk.kk&ffki=woha--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2012-06-13 Thread Michael Henderson
http://www.carraigetown.dreamhosters.com/wp-content/themes/twentyten/googlemail.html--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] (no subject)

2011-12-17 Thread Vladimir Vuksan

Please try out this document

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

On Sat, 17 Dec 2011, Maciek Lasyk wrote:


On Sat, Dec 17, 2011 at 2:27 PM, Aaron Urbain  wrote:

Say you have 10 nodes.  All ten send unicast to node one.   Gmetad reaches out 
to node one.   All ten show up in web. Simple.


Not that simple, because only one shows up in the web - only this one
have generated RRD in RRD dir of gmetad.

--
Learn Windows Azure Live!  Tuesday, Dec 13, 2011
Microsoft is holding a special Learn Windows Azure training event for 
developers. It will provide a great way to learn Windows Azure and what it 
provides. You can attend the event by watching it streamed LIVE online. 
Learn more at http://p.sf.net/sfu/ms-windowsazure

___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general--
Learn Windows Azure Live!  Tuesday, Dec 13, 2011
Microsoft is holding a special Learn Windows Azure training event for 
developers. It will provide a great way to learn Windows Azure and what it 
provides. You can attend the event by watching it streamed LIVE online.  
Learn more at http://p.sf.net/sfu/ms-windowsazure___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] (no subject)

2011-12-17 Thread Maciek Lasyk
On Sat, Dec 17, 2011 at 2:27 PM, Aaron Urbain  wrote:
> Say you have 10 nodes.  All ten send unicast to node one.   Gmetad reaches 
> out to node one.   All ten show up in web. Simple.

Not that simple, because only one shows up in the web - only this one
have generated RRD in RRD dir of gmetad.

--
Learn Windows Azure Live!  Tuesday, Dec 13, 2011
Microsoft is holding a special Learn Windows Azure training event for 
developers. It will provide a great way to learn Windows Azure and what it 
provides. You can attend the event by watching it streamed LIVE online.  
Learn more at http://p.sf.net/sfu/ms-windowsazure
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2011-12-17 Thread Aaron Urbain
Say you have 10 nodes.  All ten send unicast to node one.   Gmetad reaches out 
to node one.   All ten show up in web. Simple.  
--
Learn Windows Azure Live!  Tuesday, Dec 13, 2011
Microsoft is holding a special Learn Windows Azure training event for 
developers. It will provide a great way to learn Windows Azure and what it 
provides. You can attend the event by watching it streamed LIVE online.  
Learn more at http://p.sf.net/sfu/ms-windowsazure
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2011-10-25 Thread Fernando Buenconsejo

--
The demand for IT networking professionals continues to grow, and the
demand for specialized networking skills is growing even more rapidly.
Take a complimentary Learning@Cisco Self-Assessment and learn 
about Cisco certifications, training, and career opportunities. 
http://p.sf.net/sfu/cisco-dev2dev___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2011-05-18 Thread Leandro
http://loja.personalizado4.vermelha.instaladorautomatico.com//images/site.html

--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2011-05-18 Thread Lee Lee
http://littleriverdental.com/cool01.11.php?SID=860

--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2011-05-07 Thread Leandro
http://clmhz.net/wp-content/themes/magazine-basic/layout/mylife.html

--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] (no subject)

2011-03-02 Thread Mayank
You�ll be in shock!!! I thought that it was impossible!.
http://web9.p15137332.pureserver.info/links.php?voCID=962

-- 
Today is tommorrow I was so worried about yesterday ...

--
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2010-09-02 Thread Lee Lee
http://kklee0074.blogers.asia/2010/06/weight.html


  

--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] (no subject)

2009-06-26 Thread Jesse Becker
Perhaps you installed a 32bit version of libexpat, when you needed the
64bit version?  What is the output of "file /usr/lib/libexpat.so"?

On Fri, Jun 26, 2009 at 01:18, Mohiddin
Shaikh wrote:
> Hi,
>    im facing this problem while installing ganglia , i did ./configure it
> works fine but when i do make then im getting this error message...i try
> install ganglia version  ganglia-3.1.2..kindly suggest me anyone
>
>
> a-3.1.2.so.0 -o .libs/libganglia-3.1.2.so.0.0.0
> /usr/lib/libexpat.so: could not read symbols: File in wrong format
> collect2: ld returned 1 exit status
> make[2]: *** [libganglia.la] Error 1
> make[2]: Leaving directory `/root/Desktop/ganglia-3.1.2/lib'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/root/Desktop/ganglia-3.1.2'
> make: *** [all] Error 2
>
>
> Thanks in advance.
> Mohiddin
>
> --
>
> ___
> Ganglia-general mailing list
> Ganglia-general@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ganglia-general
>
>



-- 
Jesse Becker
GPG Fingerprint -- BD00 7AA4 4483 AFCC 82D0  2720 0083 0931 9A2B 06A2

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


[Ganglia-general] (no subject)

2009-06-25 Thread Mohiddin Shaikh

Hi,
   im facing this problem while installing ganglia , i did ./configure it works 
fine but when i do make then im getting this error message...i try install 
ganglia version  ganglia-3.1.2..kindly suggest me anyone


a-3.1.2.so.0 -o .libs/libganglia-3.1.2.so.0.0.0
/usr/lib/libexpat.so: could not read symbols: File in wrong format
collect2: ld returned 1 exit status
make[2]: *** [libganglia.la] Error 1
make[2]: Leaving directory `/root/Desktop/ganglia-3.1.2/lib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/Desktop/ganglia-3.1.2'
make: *** [all] Error 2


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


Re: [Ganglia-general] (no subject)

2008-11-06 Thread Bernard Li
Hi Max:

On Wed, Oct 1, 2008 at 1:02 AM,  <[EMAIL PROTECTED]> wrote:

> I Just started using ganglia and am really impressed! The default setup worked
> out of the box. Really nice "plug&play". I changed the Setup from Multicast to
> Unicast, still works as expected!
>
> Now i want to add another Cluster but keep my 2pc setup.
>
> i tried the setup below, but cant seem to get pc2 to be viewed
> as part of work-cluster, it still gets rendert in mgmt-cluster.
>
> i use the latest ganglia 3.1.1.
>
> pc2 is deaf! - but that could be changed if its needed == if a 
> client->monitorhost
> push setup doesnt work with multiple clusters.
>
> id be happy to hear what i am doing wrong, or where i can find information on 
> setting
> up a multicluster ganglia setup.
>
> thanks
>  Max
>
> below - my (dream)setup (stripped down) that doesnt actually do what i 
> think it should :)
> ---
>
> pc1 = gmond, gmetad, ganglia webinterface
> gmond.conf:
> 
> cluster
> {
> name=mgmt-cluster
> }
>
> udp_send_channel {
>  host = localhost
>  port = 8649
>  ttl = 1
> }
>
> udp_recv_channel {
>  port = 8649
> }
>
> gmetad.conf:
> 
> data_source 10 "mgmt-cluster" localhost
> data_source 10 "work-cluster" localhost
>
> --
> pc2 = gmond
> gmond.conf:
> 
> cluster
> {
> name=work-cluster
> }
> udp_send_channel {
>  host = pc1
>  port = 8649
>  ttl = 1
> }

Ganglia does not partition clusters based on "name", it is actually by
"port".  So even though for your pc2, you configure the name to be
"work-cluster", the port is the same as mgmt-cluster, which is 8649.
What you need to do is change work-cluster's port to something other
than 8649 (you can use 8650, or something else, just stay away from
8651 and 8652 as those are default Ganglia gmetad ports).  You will
also need to modify your data_source line slightly by adding the port
and host, i.e.:

data_source 10 "work-cluster" pc2:8650

I am not too familiar with unicast setup, but I believe for your pc2
gmond.conf, you should change host to pc2 and port again to 8650.

This should give you the desired setup.

Hope this helps.

Cheers,

Bernard

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2008-10-01 Thread precitool05
Hello Listmembers,

I Just started using ganglia and am really impressed! The default setup worked
out of the box. Really nice "plug&play". I changed the Setup from Multicast to
Unicast, still works as expected!

Now i want to add another Cluster but keep my 2pc setup.

i tried the setup below, but cant seem to get pc2 to be viewed
as part of work-cluster, it still gets rendert in mgmt-cluster. 

i use the latest ganglia 3.1.1.

pc2 is deaf! - but that could be changed if its needed == if a 
client->monitorhost
push setup doesnt work with multiple clusters.

id be happy to hear what i am doing wrong, or where i can find information on 
setting
up a multicluster ganglia setup.

thanks
 Max

below - my (dream)setup (stripped down) that doesnt actually do what i 
think it should :)
---

pc1 = gmond, gmetad, ganglia webinterface
gmond.conf:

cluster
{
name=mgmt-cluster
}

udp_send_channel { 
  host = localhost
  port = 8649 
  ttl = 1 
} 

udp_recv_channel {
  port = 8649
}

gmetad.conf:

data_source 10 "mgmt-cluster" localhost
data_source 10 "work-cluster" localhost

--
pc2 = gmond
gmond.conf:

cluster
{
name=work-cluster
}
udp_send_channel { 
  host = pc1
  port = 8649 
  ttl = 1 
} 

-- 
GMX startet ShortView.de. Hier findest Du Leute mit Deinen Interessen!
Jetzt dabei sein: http://www.shortview.de/[EMAIL PROTECTED]

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] (no subject)

2008-06-17 Thread miguel . sanders
1) I'm still trying to figure this one out (just started with ganglia a
week ago :-) )
2) Like I stated in the previous message, this is related to the total
number of virtual CPUs allocated to the LPAR.
   Check out the 'Online Virtual CPUs' of lparstat -i (if you are using
AIX)
3) At the moment, I am still figuring this out.
   I am currently digging deeper into the memory allocation/usage.
(which is very complex in AIX) 


Miguel SANDERS
ArcelorMittal Gent

UNIX System Administrator | SAP Infrastructure Group
John Kennedylaan 51, B-9042 Gent

T +32 9 347 3538 | F +32 9 347 4901 | M +32478 805 023
E [EMAIL PROTECTED]
www.arcelormittal.com/gent


-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens kmet
Gazeta.pl
Verzonden: dinsdag 17 juni 2008 14:41
Aan: ganglia-general@lists.sourceforge.net
Onderwerp: [Ganglia-general] (no subject)

We have ganglia on IBM p55 (2x2 CPU) installed (8 lpars, aix5.3). In
ganglia this machine is defined as  ganglia cluster, lpars are nodes.
It works well, but I have doubts about its usefulness on lpars,
especially in CPU monitoring.

Metrics like  cpu_[user|wait|system|idle] and graph "CPU last our" are
wrong both in shared and dedicated environment.
I can understand why it's wrong in shared CPU. But I don't know why is
that with dedicated CPU ?
I can see different values with ganglia and nmon.

I.e:
LPAR1 : 2 dedicated CPU, usage around 30% of (2) CPU for 2 hours
(topas).

Ganglia (CPU last hour) shows : 15 %
nmon (physical avg) : 25 %  - which is true I think .


1. Why is that ?
2. "CPU total" shows 32 . I think it shows 8 (lpar) x 4, but this is not
the real number of CPU. Can I change it ?
3. Which metrics do you monitor in shared CPU environment ? Which are
reliable ?

regards


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for just about anything Open
Source.
http://sourceforge.net/services/buy/index.php
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general

 
This message and any attachment are confidential, intended solely for the use 
of the individual or entity to whom it is addressed and may be protected by 
professional secrecy or intellectual property rights. 
If you have received it by mistake, or are not the named recipient(s), please 
immediately notify the sender and delete the message. You are hereby notified 
that any unauthorized use, copying or dissemination of any or all information 
contained in this message is prohibited. 
Arcelormittal shall not be liable for the message if altered, falsified, or in 
case of error in the recipient. 
This message does not constitute any right or commitment for ArcelorMittal 
except when expressly agreed otherwise in writing in a separate agreement.  
  


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2008-06-17 Thread kmet Gazeta.pl
We have ganglia on IBM p55 (2x2 CPU) installed (8 lpars, aix5.3). In
ganglia this machine is defined as
 ganglia cluster, lpars are nodes.
It works well, but I have doubts about its usefulness on lpars,
especially in CPU monitoring.

Metrics like  cpu_[user|wait|system|idle] and graph "CPU last our" are
wrong both in shared and dedicated environment.
I can understand why it's wrong in shared CPU. But I don't know why is
that with dedicated CPU ?
I can see different values with ganglia and nmon.

I.e:
LPAR1 : 2 dedicated CPU, usage around 30% of (2) CPU for 2 hours  (topas).

Ganglia (CPU last hour) shows : 15 %
nmon (physical avg) : 25 %  - which is true I think .


1. Why is that ?
2. "CPU total" shows 32 . I think it shows 8 (lpar) x 4, but this is
not the real number of CPU. Can I change it ?
3. Which metrics do you monitor in shared CPU environment ? Which are reliable ?

regards

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2008-05-05 Thread 周游弋
Hi everyone.

 

I have been using ganglia for a while, but recently I found a problem. If
one station has multiple IP addresses, gmetad will compute them in
duplication. E.g. One station has 4 network interfaces, thus 4 IP addresses,
and if we add all these 4 IPs into gmetad’s configuration file (for some
reason, I have to) , they will be treated as 4 independent stations. Then
statistics turns out to be wrong as 1 CPU becomes 4.

 

How can I avoid this duplicate computation? Could you help me, please?

 

Thank you very much.

 

==

Best regards.

Joel (Youyi) Zhou

Fudan University Computer Science Department.

上海市杨浦区邯郸路220号复旦大学计算机系楼331室

Email: 072021117_at_fudan.edu.cn  

 

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


[Ganglia-general] (no subject)

2008-03-07 Thread sean williams
Really easy question, how can I change the display of
the "monthy statistics" graph to show calendar dates
as opposed to week #'s?


  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Ganglia-general mailing list
Ganglia-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-general


Re: [Ganglia-general] (no subject)

2002-12-02 Thread Steven Wagner
kvm_open() is returning a permission denied error.  Make sure you're 
running gmond as root.  You should get a slightly different set of errors 
if you are struck by the mighty mismatched-compiler problem.  Just in case, 
check your gmond ...


file /path/to/your/gmond

The output should look like this:

/usr/sbin/gmond: ELF 64-bit MSB executable SPARCV9 Version 1, 
dynamically linked, not stripped


Unfortunately there are some stats which I was only able to get effectively 
via kvm_* calls (which means Solaris gmond won't run if you run it as Joe 
User), which require that you use the libkvm (and thus everything else in 
linking the monitoring core) that matches the running kernel.  libkstat is 
agnostic, and works on any Solaris it's implemented on (which may only be 
2.6.x and above).   It's been a while so I don't remember if the data was 
*in* the kstat interface but there were problems getting it out with the 
proper frequency, or if the data just plain wasn't there.


kstat is obviously the way to go, as it's newer and has a nicer, fuzzier 
set of function calls ... but there's nothing quite like getting the data 
from the horse's mouth (er, kernel's symbol table) ...


[EMAIL PROTECTED] wrote:

Hi everybody,

I have two questions :

 - I encounter the already known problem (segmentation fault) on a Solaris
2.8
   with gmond. I have compiled this executable on this machine, so I don't
think this a problem  of 32-bits/64-bits kernel compatibility.

Here is the log :
/etc/gmond.conf configuration
pthread_attr_init
creating cluster hash for 1024 nodes
hash_create size = 1024
hash->size is 1031
gmond initialized cluster hash
Using interface ce0
mcast listening on 239.2.11.71 8649
XML listening on port 8649
listening thread(s) have been started
listening thread(s) have been started
cleanup thread has been started
multicasting on channel 239.2.11.71 8649
gmond: cannot open /dev/kmem
kvm_open: Permission denied
 *** WARNING  kvm_open() failed.  prepare for a segfault ... ***
kvm_nlist: Bad address
Lookup up kstat:  km (unix?)='unix', ks (system_misc?)='system_misc',kn
(resulting metric?)='ncpus'
ncpus: kc is 37f10
ncpus: Just did kstat_lookup().
ncpus: Looked up.
ncpus: Kstat data type:  2, Value returned: 4, 4 4 4
ncpus: Kernel close.  Val returned: 4
metric_init: Assigning cpu_num value (4) to ncpus



2) Concerning the Web Front-end, it is written in the manual that
it uses TemplatePower. I have retrieved the class.TemplatePower.inc.php
but when I browse some php-page I get messages like

Cannot instantiate non-existent class: templatepower in
/usr/local/apache-ssl/htdocs/gmetad-webfrontend/meta_view.php on line 3

In fact there is no include directive linked to the
class.TemplatePower.inc.php.

Do I have to mofify these files by hand ?


Thank you in advance of any hint on these topics.




---
This SF.net email is sponsored by: Get the new Palm Tungsten T 
handheld. Power & Color in a compact size! 
http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en

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







[Ganglia-general] (no subject)

2002-11-28 Thread Thierry . Plouzen
Hi everybody,

I have two questions :

 - I encounter the already known problem (segmentation fault) on a Solaris
2.8
   with gmond. I have compiled this executable on this machine, so I don't
think this a problem  of 32-bits/64-bits kernel compatibility.

Here is the log :
/etc/gmond.conf configuration
pthread_attr_init
creating cluster hash for 1024 nodes
hash_create size = 1024
hash->size is 1031
gmond initialized cluster hash
Using interface ce0
mcast listening on 239.2.11.71 8649
XML listening on port 8649
listening thread(s) have been started
listening thread(s) have been started
cleanup thread has been started
multicasting on channel 239.2.11.71 8649
gmond: cannot open /dev/kmem
kvm_open: Permission denied
 *** WARNING  kvm_open() failed.  prepare for a segfault ... ***
kvm_nlist: Bad address
Lookup up kstat:  km (unix?)='unix', ks (system_misc?)='system_misc',kn
(resulting metric?)='ncpus'
ncpus: kc is 37f10
ncpus: Just did kstat_lookup().
ncpus: Looked up.
ncpus: Kstat data type:  2, Value returned: 4, 4 4 4
ncpus: Kernel close.  Val returned: 4
metric_init: Assigning cpu_num value (4) to ncpus



2) Concerning the Web Front-end, it is written in the manual that
it uses TemplatePower. I have retrieved the class.TemplatePower.inc.php
but when I browse some php-page I get messages like

Cannot instantiate non-existent class: templatepower in
/usr/local/apache-ssl/htdocs/gmetad-webfrontend/meta_view.php on line 3

In fact there is no include directive linked to the
class.TemplatePower.inc.php.

Do I have to mofify these files by hand ?


Thank you in advance of any hint on these topics.