Sponsored Content
Operating Systems Linux Nagios Plugin [.sh] not working Post 302772748 by DGPickett on Tuesday 26th of February 2013 04:11:07 PM
Old 02-26-2013
Is it collecting? Maybe between it is 'not running'?
 

8 More Discussions You Might Find Interesting

1. Solaris

Nagios NRPE plugin won't install

Hi have a Solaris 9 box and I'm trying to install Nagios on it. I've installed the GCC compiler as well as OpenSSL and OpenSSH. When I run the # ./configure for the nrpe plugin it executes without any obvious errors. However, when I run the # make install afterwards if fails with the... (0 Replies)
Discussion started by: soliberus
0 Replies

2. BSD

Java plugin not working with Firefox 3

Hi, I use FreeBSD 7.1-RELEASE with Firefox 3.0.5 and am having some trouble getting the Java VM working. I have tried both the diablo-jre16 and diablo-jdk16 ports with the javavmwrapper installed. I tried the diablo ports installed individually and together, and have tried installing them... (1 Reply)
Discussion started by: whetphish
1 Replies

3. Infrastructure Monitoring

Nagios plugin 1-wire temperature 1.0 (Default branch)

Nagios plugin 1-wire temperature uses a 1-wire sensor to measure temperature and returns WARNING or CRITICAL if it is too low or high. License: GNU General Public License v2 Changes: First and inititial version http://feedads.googleadservices.com/~at/FPTKN1wjxsDHIgakUf3w1zqACIQ/i ... (0 Replies)
Discussion started by: Linux Bot
0 Replies

4. Infrastructure Monitoring

google talk notification on Nagios is not working

Hi i have installed Nagios 3.0.6 on Centos 5.2 also to configure it i have installed Centreon, my problem is the following , i have created a user for Nagios on google talk and using an script from the web trying to send notification for host status and services. i have tested the script using... (0 Replies)
Discussion started by: pokker67
0 Replies

5. Infrastructure Monitoring

Nagios plugin check_local_mrtgtraf

Hi, Can somebody direct me to these plugin for nagios check_local_mrtgtraf check_snmp Documentation says it's a part of the latest plugin release but i have installed it and it seems it is not. I do have done search but couldn't find any link from where i can download these. Thanks in... (1 Reply)
Discussion started by: uxadmin007
1 Replies

6. Ubuntu

Voice plugin not working!

Hi, I am using Ubuntu 10.04. I installed Google talk voice and video plug-in. But audio is not working for me and video is working fine. So can I do some tweaking to enable it again? Note that I have just Mozilla Firefox with me (0 Replies)
Discussion started by: nixhead
0 Replies

7. Emergency UNIX and Linux Support

[Solved] Java Plugin not working w/Firefox 7 on Solaris x86

I upgraded my server to Firefox version 7.0.1 and created a symbolic link to /usr/jdk/instances/jdk1.6.0/jre/lib/i386/libnpjp2.so in the /usr/lib/firefox/plugins directory. According to the directions from the mozilla site, this should work. But whenever i attempt to access an app that requires... (0 Replies)
Discussion started by: goose25
0 Replies

8. UNIX for Advanced & Expert Users

Check_by_ssh plugin (nagios users)

Hi Everyone, I need help from the nagios users out there. I have setup a new service using the check_by_ssh plugin and is executing the script on the remote server but I wonder what am I missing because is not picking up the returning values of my script. Basically the script on the remote host... (1 Reply)
Discussion started by: arizah
1 Replies
EVLOOP(3)								 1								 EVLOOP(3)

The EvLoop class

INTRODUCTION
Represents an event loop that is always distinct from the default loop . Unlike the default loop , it cannot handle EvChild watchers. Having threads we have to create a loop per thread, and use the the default loop in the parent thread. The default event loop is initialized automatically by Ev . It is accessable via methods of the Ev class, or via EvLoop::defaultLoop method. CLASS SYNOPSIS
EvLoop final EvLoop Properties o public$data o public$backend o public$is_default_loop o public$iteration o public$pending o public$io_interval o public$timeout_interval o public$depth Methods o public int EvLoop::backend (void ) o finalpublic EvCheck EvLoop::check (string $callback, [string $data], [string $priority]) o finalpublic EvChild EvLoop::child (string $pid, string $trace, string $callback, [string $data], [string $priority]) o public EvLoop::__construct ([int $flags], [mixed $data = NULL], [double $io_interval = 0.0], [double $timeout_interval = 0.0]) o publicstatic EvLoop EvLoop::defaultLoop ([int $flags = Ev::FLAG_AUTO], [mixed $data = NULL], [double $io_interval = 0.], [double $timeout_interval = 0.]) o finalpublic EvEmbed EvLoop::embed (string $other, [string $callback], [string $data], [string $priority]) o finalpublic EvFork EvLoop::fork NULL (callable $callback, [mixed $data], [int $priority]) o finalpublic EvIdle EvLoop::idle NULL (callable $callback, [mixed $data], [int $priority]) o public void EvLoop::invokePending (void ) o finalpublic EvIo EvLoop::io NULL (mixed $fd, int $events, callable $callback, [mixed $data], [int $priority]) o public void EvLoop::loopFork (void ) o public double EvLoop::now (void ) o public void EvLoop::nowUpdate (void ) o finalpublic EvPeriodic EvLoop::periodic NULL (double $offset, double $interval, callable $callback, [mixed $data], [int $priority]) o finalpublic EvPrepare EvLoop::prepare NULL (callable $callback, [mixed $data], [int $priority]) o public void EvLoop::resume (void ) o public void EvLoop::run ([int $flags]) o finalpublic EvSignal EvLoop::signal NULL (int $signum, callable $callback, [mixed $data], [int $priority]) o finalpublic EvStat EvLoop::stat NULL (string $path, double $interval, callable $callback, [mixed $data], [int $priority]) o public void EvLoop::stop ([int $how]) o public void EvLoop::suspend (void ) o finalpublic EvTimer EvLoop::timer NULL (double $after, double $repeat, callable $callback, [mixed $data], [int $priority]) o public void EvLoop::verify (void ) PROPERTIES
o $data - Custom data attached to loop o $backend - Readonly . The backend flags indicating the event backend in use. o $is_default_loop - Readonly . TRUE if it is the default event loop. o $iteration - The current iteration count of the loop. See Ev::iteration o $pending - The number of pending watchers. 0 indicates that there are no watchers pending. o $io_interval - Higher $io_interval allows libev to spend more time collecting EvIo events, so more events can be handled per iteration, at the cost of increasing latency. Timeouts (both EvPeriodic and EvTimer ) will not be affected. Setting this to a non-zero value will introduce an additional sleep() call into most loop iterations. The sleep time ensures that libev will not poll for EvIo events more often than once per this interval, on average. Many programs can usually benefit by setting the $io_interval to a value near 0.1 , which is often enough for interactive servers(not for games). It usually doesn't make much sense to set it to a lower value than 0.01 , as this approaches the timing granularity of most systems. See also FUNCTIONS CONTROLLING EVENT LOOPS . o $timeout_interval - Higher $timeout_interval allows libev to spend more time collecting timeouts, at the expense of increased latency/jitter/inex- actness(the watcher callback will be called later). EvIo watchers will not be affected. Setting this to a non-null value will not introduce any overhead in libev . See also FUNCTIONS CONTROLLING EVENT LOOPS . o $depth - The recursion depth. See Ev::depth . PHP Documentation Group EVLOOP(3)
All times are GMT -4. The time now is 08:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy