Sponsored Content
Special Forums UNIX and Linux Applications Infrastructure Monitoring ganglia with one server and one client Post 302697641 by rrwww on Friday 7th of September 2012 06:58:37 AM
Old 09-07-2012
ganglia with one server and one client

HeY till now i configured ganglia3.1.7 on rhel for localhost monitoring traffic evrything was ok but now i want another system in my lan for load moniotring


I installed gmond &gmond-python on it
biut i face this log error on system 1
Code:
Sep  7 16:01:58 HAPROXY1 /usr/sbin/gmond[24170]: [PYTHON] Can't call the metric handler function for [tcp_lastack] in the python module [tcpconn].#012

On server with gmetad service and i have this log error
Code:
/usr/sbin/gmetad[1305]: data_thread() got no answer from any [cluster] datasource


I dnot get what is exact problem.


Moderator's Comments:
Mod Comment Please use code tags next time for your code and data.

Last edited by zaxxon; 09-07-2012 at 08:25 AM.. Reason: code tags
 

6 More Discussions You Might Find Interesting

1. Programming

Client/Server Socket Application - Preventing Client from quitting on server crash

Problem - Linux Client/Server Socket Application: Preventing Client from quitting on server crash Hi, I am writing a Linux socket Server and Client using TCP protocol on Ubuntu 9.04 x64. I am having problem trying to implement a scenario where the client should keep running even when the... (2 Replies)
Discussion started by: varun.nagpaal
2 Replies

2. Linux

How to split up hosts in Ganglia?

I have 3 server 'farms': prod, staging, and qa. I have Ganglia setup and gathering stats fine, but I want to separate the 3 server farms using the same Ganglia server. How can I do this? Any input would be appreciated! -KBS (1 Reply)
Discussion started by: kbshaq
1 Replies

3. UNIX and Linux Applications

Ganglia config

Hello all I have a concept anderstanding problem with Ganglia. I have one server ubuntu where I install gmetad and web server + apache and php. Then I have the web interface up and running. I have several nodes to monitor, so I install gmond in each one. The problem I have is to know what IP... (0 Replies)
Discussion started by: ldiaz2106
0 Replies

4. Windows & DOS: Issues & Discussions

Office server => laptop =>client server ...a lengthy and laborious ftp procedure

Hi All, I need your expertise in finding a way to solve my problem.Please excuse if this is not the right forum to ask this question and guide me to the correct forum,if possible. I am a DBA and on a daily basis i have to ftp huge dump files from my company server to my laptop and then... (3 Replies)
Discussion started by: kunwar
3 Replies

5. Programming

Client Server C

Hello, Please I would create a client and a server in C that communicate frequently. The client sends "hello message" to the server, the server waits a few minutes and sends a "hello message" to the client, the client sends again "hello server ".. etc up to 15 minutes Can you guide me... (3 Replies)
Discussion started by: chercheur857
3 Replies

6. Shell Programming and Scripting

Sftp script for dev server to client server

hi, i am new to unix, cuold u send some sftp acripts to send files to dev server to clint server, (1 Reply)
Discussion started by: Koti.annam
1 Replies
LWP::Debug(3)						User Contributed Perl Documentation					     LWP::Debug(3)

NAME
LWP::Debug - deprecated DESCRIPTION
LWP::Debug used to provide tracing facilities, but these are not used by LWP any more. The code in this module is kept around (undocumented) so that 3rd party code that happen to use the old interfaces continue to run. One useful feature that LWP::Debug provided (in an imprecise and troublesome way) was network traffic monitoring. The following section provide some hints about recommened replacements. Network traffic monitoring The best way to monitor the network traffic that LWP generates is to use an external TCP monitoring program. The Wireshark program (<http://www.wireshark.org/>) is higly recommended for this. Another approach it to use a debugging HTTP proxy server and make LWP direct all its traffic via this one. Call "$ua->proxy" to set it up and then just use LWP as before. For less precise monitoring needs just setting up a few simple handlers might do. The following example sets up handlers to dump the request and response objects that pass through LWP: use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->default_header('Accept-Encoding' => scalar HTTP::Message::decodable()); $ua->add_handler("request_send", sub { shift->dump; return }); $ua->add_handler("response_done", sub { shift->dump; return }); $ua->get("http://www.example.com"); SEE ALSO
LWP::UserAgent perl v5.18.2 2012-01-13 LWP::Debug(3)
All times are GMT -4. The time now is 05:55 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy