PHP code example of amantinetti / laravel-influxdb2

1. Go to this page and download the library: Download amantinetti/laravel-influxdb2 library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

amantinetti / laravel-influxdb2 example snippets


'providers' => [
//  ...
    Amantinetti\InfluxDB\Providers\ServiceProvider::class,
]

'aliases' => [
//  ...
    'InfluxDB' => Amantinetti\InfluxDB\Facades\InfluxDB::class,
]



// 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()');





$write_api = InfluxDB::createWriteApi();
$write_api->write('h2o,location=west value=33i 15');

ini
php artisan vendor:publish