. * * @link https://www.librenms.org * * @copyright 2020 Tony Murray * @author Tony Murray */ namespace LibreNMS\Interfaces\Polling; use LibreNMS\Interfaces\Data\DataStorageInterface; interface OSPolling { /** * Poll additional OS data. * Data must be manually saved within this method. */ public function pollOS(DataStorageInterface $datastore): void; }