A Review of Zabbix - Zabbix Rules! (Part 2)

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Infrastructure Monitoring A Review of Zabbix - Zabbix Rules! (Part 2)
# 1  
Old 03-23-2009
A Review of Zabbix - Zabbix Rules! (Part 2)

Tim Bass
03-23-2009 03:45 PM


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Infrastructure Monitoring

Installing Zabbix on Solaris 10

Anyone has a step by step guide in installing Zabbix on Solaris 10? I'm new in this, and every help is appreciated. :) (4 Replies)
Discussion started by: jolie
4 Replies

2. Infrastructure Monitoring

A Review of Zabbix - Zabbix Rules! (Part 1)

Tim Bass 03-20-2009 07:02 AM Source... (0 Replies)
Discussion started by: Linux Bot
0 Replies

3. Infrastructure Monitoring

ZABBIX: 1.6.1 released

ZABBIX is an enterprise-class open source distributed monitoring solution designed to monitor and track performance and availability of network servers, devices and other IT resources. It supports distributed and WEB monitoring, auto-discovery, and more. ... (0 Replies)
Discussion started by: Linux Bot
0 Replies

4. Infrastructure Monitoring

ZABBIX 1.6.1 (Stable branch)

http://c.fsdn.com/fm/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery, real-time... (0 Replies)
Discussion started by: Linux Bot
0 Replies

5. Infrastructure Monitoring

ZABBIX 1.6 (Stable branch)

http://c.fsdn.com/fm/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery, real-time... (0 Replies)
Discussion started by: Linux Bot
0 Replies

6. Infrastructure Monitoring

ZABBIX 1.5.4 (Development branch)

http://c.fsdn.com/fm/screenshots/13929_thumb.pngZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery, real-time... (0 Replies)
Discussion started by: Linux Bot
0 Replies

7. Infrastructure Monitoring

ZABBIX 1.4.6 (Stable branch)

http://c.fsdn.com/fm/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery, real-time... (0 Replies)
Discussion started by: Linux Bot
0 Replies

8. Infrastructure Monitoring

ZABBIX 1.5 (Development branch)

http://images.freshmeat.net/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery,... (0 Replies)
Discussion started by: Linux Bot
0 Replies
Login or Register to Ask a Question
TAP::Parser::Source::Perl(3pm)				 Perl Programmers Reference Guide			    TAP::Parser::Source::Perl(3pm)

NAME
TAP::Parser::Source::Perl - Stream Perl output VERSION
Version 3.17 SYNOPSIS
use TAP::Parser::Source::Perl; my $perl = TAP::Parser::Source::Perl->new; my $stream = $perl->source( [ $filename, @args ] )->get_stream; DESCRIPTION
Takes a filename and hopefully returns a stream from it. The filename should be the name of a Perl program. Note that this is a subclass of TAP::Parser::Source. See that module for more methods. METHODS
Class Methods "new" my $perl = TAP::Parser::Source::Perl->new; Returns a new "TAP::Parser::Source::Perl" object. Instance Methods "source" Getter/setter the name of the test program and any arguments it requires. my ($filename, @args) = @{ $perl->source }; $perl->source( [ $filename, @args ] ); "croak"s if $filename could not be found. "switches" my $switches = $perl->switches; my @switches = $perl->switches; $perl->switches( @switches ); Getter/setter for the additional switches to pass to the perl executable. One common switch would be to set an include directory: $perl->switches( ['-Ilib'] ); "get_stream" my $stream = $source->get_stream($parser); Returns a stream of the output generated by executing "source". Must be passed an object that implements a "make_iterator" method. Typically this is a TAP::Parser instance. "shebang" Get the shebang line for a script file. my $shebang = TAP::Parser::Source::Perl->shebang( $some_script ); May be called as a class method "get_taint" Decode any taint switches from a Perl shebang line. # $taint will be 't' my $taint = TAP::Parser::Source::Perl->get_taint( '#!/usr/bin/perl -t' ); # $untaint will be undefined my $untaint = TAP::Parser::Source::Perl->get_taint( '#!/usr/bin/perl' ); SUBCLASSING
Please see "SUBCLASSING" in TAP::Parser for a subclassing overview. Example package MyPerlSource; use strict; use vars '@ISA'; use Carp qw( croak ); use TAP::Parser::Source::Perl; @ISA = qw( TAP::Parser::Source::Perl ); sub source { my ($self, $args) = @_; if ($args) { $self->{file} = $args->[0]; return $self->SUPER::source($args); } return $self->SUPER::source; } # use the version of perl from the shebang line in the test file sub _get_perl { my $self = shift; if (my $shebang = $self->shebang( $self->{file} )) { $shebang =~ /^#!(.*perl.*?)(?:(?:s)|(?:$))/; return $1 if $1; } return $self->SUPER::_get_perl(@_); } SEE ALSO
TAP::Object, TAP::Parser, TAP::Parser::Source, perl v5.12.1 2010-04-26 TAP::Parser::Source::Perl(3pm)