| Nagios-Plugin-OverHTTP documentation | view source | Contained in the Nagios-Plugin-OverHTTP distribution. |
Nagios::Plugin::OverHTTP::Parser - Moose role for output parsers
This documentation refers to Nagios::Plugin::OverHTTP::Parser version 0.14
package My::Custom::Parser; use Moose; with 'Nagios::Plugin::OverHTTP::Parser'; # use the role (required) # Implement the parser and define # any required methods no Moose; # unimport Moose 1;
This module is a Moose role that defines the required API for parsers.
This must return a new instance of Nagios::Plugin::OverHTTP::Response. The only argument accepted is a HTTP::Response object.
my $parsed = $parser->parse($http_response);
This module has no methods.
This module is dependent on the following modules:
Douglas Christopher Wilson, <doug at somethingdoug.com>
Please report any bugs or feature requests to
bug-nagios-plugin-overhttp at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Nagios-Plugin-OverHTTP. I
will be notified, and then you'll automatically be notified of progress on your
bug as I make changes.
Copyright 2010 Douglas Christopher Wilson, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of either:
| Nagios-Plugin-OverHTTP documentation | view source | Contained in the Nagios-Plugin-OverHTTP distribution. |