darkwolf66 / laravel-influxdb2
A service made to provide, set up and use the library from influxdata influx client php 2 in Laravel.
v1.0.4
2023-08-10 01:35 UTC
Requires
- illuminate/support: ^8.0|^9.0|^10.0
- influxdata/influxdb-client-php: ^1.9.0 | ^2.0
This package is not auto-updated.
Last update: 2025-01-10 06:33:20 UTC
README
A service made to provide, set up and use the library from influxdata influxdb-client-php in Laravel.
Installing
- Install by composer command:
composer require amantinetti/laravel-influxdb2
- Or add this line to require section of
composer.json
and execute on your terminal$ composer install
"require": { "amantinetti/laravel-influxdb2": "^0.0.1" }
This package use auto-discover, if using less than version laravel 5.5 you must use below settings
- Add this lines to yours config/app.php (Use only with Laravel version less than 5.5 )
'providers' => [ // ... Amantinetti\InfluxDB\Providers\ServiceProvider::class, ]
'aliases' => [ // ... 'InfluxDB' => Amantinetti\InfluxDB\Facades\InfluxDB::class, ]
- Define env variables to connect to InfluxDB
INFLUXDB_URL=http://localhost:8086 INFLUXDB_TOKEN=my-token INFLUXDB_BUCKET=my-bucket INFLUXDB_ORG=my-org
- Write this into your terminal inside your project
php artisan vendor:publish
Reading Data
<?php // executing a query will yield a resultset object $query_api = InfluxDB::createQueryApi(); $result = $query_api->query('from(bucket:"my-bucket") |> range(start: 1970-01-01T00:00:00.000000001Z) |> last()');
Writing Data
<?php $write_api = InfluxDB::createWriteApi(); $write_api->write('h2o,location=west value=33i 15');
License
This project is licensed under the MIT License