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

NAME

Told::Client - A client to log messages into a told log recorder. See https://github.com/petershaw/told-LogRecorder to lern more about told.

SYNOPSIS

  my $told = Told::Client->new();
  $told->setHost('http://told.my-domain.com');
  $told->tell('This message should be logged.');

DESCRIPTION

Sends a message to the server. Noting more, nothing less.

CONFIGURATION

First of all you have to initiate the Client with a few minimal configurations. It is up to you how you set them. It is possible to pass an config array to the init method of the client, or to initiate the client blank and set the config-params later on.

EXAMPLE

    my $told = Told::Client->new({
       "host"   => 'http://told.my-domain.com'
    });
    $told->tell('This message should be logged.');

- or -

    my $told = Told::Client->new();
    $told->setHost('http://told.my-domain.com');
    $told->tell('This message should be logged.');

The 'host' parameter is **mandatory**.! Optional parameters are: type, tags, defaulttage and debug.

tag Description

type Describes the type of this log message. Choose the type wisely, because you will group by type at the administration frontend. | tags These tags will be send ALWAYS right next to the tags that are send by the call it self. It is a good decision to add your application-id and maybe customer-id as tags. | defaultags To set some default tags that will be overwritten by the call . If no tags are given, than the defaulttags take place. |

Again, it is possible to set the global type and tags in the constructor, or via setters later on.

SEND

After initialisation the client is ready to use. To send a message with the default tags and type, just call

     $told->tell("This is my little test message");

Each call can have special types and tags. For example: to send a message with a type of 'Testing' and the Tag 'Honigkuchen' call

    $told->tell("This is my little test message", "Testing", "Honigkuchen");

Or to send multiple tags, like Honigkuchen and Zuckerschlecken it is possible to pass a array:

    $told->tell("This is my little test message", "Testing", ["Honigkuchen", "Zuckerschlecken"]);

It is also possible to send the information in one single hash:

    $told->tell({
            'message' => "This is my little test message"
            , 'type' => "Testing"
            , 'tags' => ["Honigkuchen", "Zuckerschlecken"]
    });

The above example is valid for all the three transportation types. Set the connection type with _setCOnnectionType()_ to GET, POST or UDP.

Complex structured messages can not be send with GET. If you try to choose GET and send a komplex data, than this module choose POST instead. Turn the debug mode on to get verbose output about the internal correction.

    $told->setConnectionType("POST");
    $told->setDebug(1);

A Complex example:

    my $told = Told::Client->new({
            'host' => 'http://told.my-domain.com'
            , 'type' => 'Demo'
            , 'defaulttags' => ['perl', 'told-client', 'manual']
            , 'tags' => 'notag'
    });
    $told->setDebug(1);
    $told->tell({
            'message' => {
                    'said' => "This is my little test message"
                    , 'thrown' => 'Exception'
            }
            , 'type' => "Testing"
            , 'tags' => ["Honigkuchen", "Zuckerschlecken"]
    });

PROTOKOLL

As default, this client use http POST over tcp ip. GET is also available and UDP is in planing.

EXPORT

        tell
    setDebug
    setConnectionType
    setHost
    setType
    setTags
    setDefaulttags

SEE ALSO

Told Log-Recorder: https://github.com/petershaw/told-LogRecorder The github page: https://github.com/petershaw/told-perl-client

AUTHOR

Peter Shaw, <lt>unthoughted@googlemail.com<gt>

NO COPYRIGHT AND LICENSE

This library is free software; you can redistribute it and/or modify it. Do what ever you like.