mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
10 lines
156 B
PHP
10 lines
156 B
PHP
#!/usr/bin/php
|
|
|
|
<?php
|
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
$host = 'localhost';
|
|
$port = 8086;
|
|
|
|
$client = new \Leaseweb\InfluxDB\Client($host, $port); |