PHP code example of nicko170 / laravel-influxdb2

1. Go to this page and download the library: Download nicko170/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/ */

    

nicko170 / laravel-influxdb2 example snippets


return [
    'url' => env('INFLUXDB_URL', 'http://localhost:8086'),
    'token' => env('INFLUXDB_TOKEN'),
    'bucket' => env('INFLUXDB_BUCKET'),
    'org' => env('INFLUXDB_ORG'),
    'precision' => \InfluxDB2\Model\WritePrecision::S
];

$influxdb = new \Nicko170\InfluxDB2\InfluxDB2()
$writer = $influxdb->createWriteApi();
$writer->write(new \InfluxDB2\Point('cpu_load', ['host' => 'serverA'], ['value' => 0.64]));
bash
php artisan vendor:publish --tag="laravel-influxdb2-config"