mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
16 lines
308 B
PHP
16 lines
308 B
PHP
<?php
|
|
namespace InfluxDB\Adapter;
|
|
|
|
/**
|
|
* Every InfluxDB adapter implements this interface
|
|
*/
|
|
interface AdapterInterface
|
|
{
|
|
/**
|
|
* Send series into database
|
|
* @param mixed $message
|
|
* @param string|boolean $timePrecision
|
|
*/
|
|
public function send($message, $timePrecision = false);
|
|
}
|