AnyEvent-InfluxDB
view release on metacpan or search on metacpan
my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.28"
},
"configure_requires" => {
"ExtUtils::MakeMaker" => 0,
"Module::Build" => "0.28"
},
"dist_abstract" => "An asynchronous library for InfluxDB time-series database",
"dist_author" => [
"Alex J. G. Burzy\x{144}ski <ajgb\@cpan.org>"
],
"dist_name" => "AnyEvent-InfluxDB",
"dist_version" => "1.0.2.0",
"license" => "perl",
"module_name" => "AnyEvent::InfluxDB",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
{
"abstract" : "An asynchronous library for InfluxDB time-series database",
"author" : [
"Alex J. G. BurzyÅski <ajgb@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 5.036, CPAN::Meta::Converter version 2.150001",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
---
abstract: 'An asynchronous library for InfluxDB time-series database'
author:
- 'Alex J. G. BurzyÅski <ajgb@cpan.org>'
build_requires:
Module::Build: '0.28'
configure_requires:
ExtUtils::MakeMaker: '0'
Module::Build: '0.28'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.036, CPAN::Meta::Converter version 2.150001'
license: perl
Makefile.PL view on Meta::CPAN
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.036.
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "An asynchronous library for InfluxDB time-series database",
"AUTHOR" => "Alex J. G. Burzy\x{144}ski <ajgb\@cpan.org>",
"BUILD_REQUIRES" => {
"Module::Build" => "0.28"
},
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"Module::Build" => "0.28"
},
"DISTNAME" => "AnyEvent-InfluxDB",
"EXE_FILES" => [],
NAME
AnyEvent::InfluxDB - An asynchronous library for InfluxDB time-series
database
VERSION
version 1.0.2.0
SYNOPSIS
use EV;
use AnyEvent;
use AnyEvent::Socket;
use AnyEvent::Handle;
undef $hdl;
}
);
},
);
};
EV::run;
DESCRIPTION
Asynchronous client library for InfluxDB time-series database
<https://influxdb.com>.
This version is meant to be used with InfluxDB v1.0.0 or newer.
METHODS
new
my $db = AnyEvent::InfluxDB->new(
server => 'http://localhost:8086',
# authenticate using Basic credentials
lib/AnyEvent/InfluxDB.pm view on Meta::CPAN
#ABSTRACT: An asynchronous library for InfluxDB time-series database
use strict;
use warnings;
package AnyEvent::InfluxDB;
our $AUTHORITY = 'cpan:AJGB';
$AnyEvent::InfluxDB::VERSION = '1.0.2.0';
use AnyEvent;
use AnyEvent::HTTP;
use URI;
use URI::QueryParam;
use JSON qw(decode_json);
lib/AnyEvent/InfluxDB.pm view on Meta::CPAN
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
AnyEvent::InfluxDB - An asynchronous library for InfluxDB time-series database
=head1 VERSION
version 1.0.2.0
=head1 SYNOPSIS
use EV;
use AnyEvent;
use AnyEvent::Socket;
lib/AnyEvent/InfluxDB.pm view on Meta::CPAN
}
);
},
);
};
EV::run;
=head1 DESCRIPTION
Asynchronous client library for InfluxDB time-series database L<https://influxdb.com>.
This version is meant to be used with InfluxDB v1.0.0 or newer.
=head1 METHODS
=head2 new
my $db = AnyEvent::InfluxDB->new(
server => 'http://localhost:8086',
( run in 0.302 second using v1.01-cache-2.11-cpan-0d8aa00de5b )