The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

YATG::Retrieve::RPC - Retrieve a set of polled data over the network

VERSION

version 5.130600

DESCRIPTION

You can load this module to retrieve a set of data which has previously been stored by YATG::Store::Disk or YATG::Store::RPC. An implementation of this process is given in the CGI bundled with this distribution, which displays results of SNMP polls.

There is not a lot to describe - it's a very lightweight call which throws data to an instance of YATG::Retrieve::Disk on another system, so read the manual page for that module for more information.

You must of course configure yatg_updater with the location of the RPC service (see below).

Also see RPC::Serialized::Handler::YATG::Retrieve for guidance on setting up the remote RPC server.

The parameter signature for the retrieve subroutine is the same as that for YATG::Store::Retrieve::retrieve().

CONFIGURATION

In the main yatg_updater configuration, you need to specify the location of the remote RPC service. Follow the example in the bundled yatg.yml example file.

You can also override some default settings of RPC::Serialized. For instance the default serializer is set to YAML::Syck so to change that try:

 rpc_serialized_client_inet:
    data_serializer:
        serializer: 'JSON::Syck'

SEE ALSO

RPC::Serialized

AUTHOR

Oliver Gorwits <oliver@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by University of Oxford.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.