stefanotorresi/influxdb-php-async

Async PHP client for InfluxDB

Maintainers

👁 stefanotorresi

Package info

github.com/stefanotorresi/influxdb-php-async

pkg:composer/stefanotorresi/influxdb-php-async

Statistics

Installs: 880

Dependents: 0

Suggesters: 5

Stars: 11

Open Issues: 0

0.5.0 2017-10-16 08:02 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 7d038461f23870f77526f3dcdc5236f79ad7dc01

  • Stefano Torresi <stefano.woop@torresi.io>

This package is auto-updated.

Last update: 2026-06-12 08:44:27 UTC


README

An asyncronous client for InfluxDB, implemented via ReactPHP.

👁 Build Status
👁 Latest Stable Version
👁 License

Installation

Use Composer

composer require stefanotorresi/influxdb-php-async

Usage

Each client implementation exposes three main methods:

interface AsyncClient
{
 public function query(string $query, array $params = []): Promise;
 public function write(string $payload, array $params = []): Promise;
 public function ping(): Promise;
 /* etc. */
}

The default implementation uses Buzz React and we'll use it throughout the rest of this document.

Here is a basic usage example where we first create a database, then write a line to it:

$client = new ReactHttpClient();

$client
 ->query('CREATE DATABASE test')
 ->then(function($response) use ($client) {
 return $client->write('measure,tag="foo" value="bar"', ['db' => 'test']);
 })
 ->done()
;

$client->run();

Note that you need to run the ReactPHP event loop. If you don't inject your own, a default loop is composed by the client, and can be started via the run method.

This API assumes that you're familiar with ReactPHP promises.

Configuration

These are the default options:

[
 'host' => 'localhost',
 'port' => 8086,
 'database' => '',
 'username' => '',
 'password' => '',
 'socket_options' => [],
];

You can change them at instantion time, defaults will be merged with the one passed:

$options = [ 
 'host' => 'influx-db.domain.tld', 
 'socket_options' => [
 'tls' => true,
 ], 
];

$client = new ReactHttpClient($options);

For details about the socket_options key, please refer to react/socket documentation.

Future developments / TO-DO list

  • An UDP client implemented with react/datagram.
  • A QueryBuilder, possibly identical to the one in the official influxdb-php client.
  • A set of response decoders that convert the JSON body from PSR-7 Responses to something more readily consumable.
  • Explore the possibility of merging this package into the official sdk.

License

This package is released under the MIT license.