mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-22 16:11:57 +02: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); |