storage_engine.h 289 B

123456789101112
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef NETDATA_STORAGEENGINEAPI_H
  3. #define NETDATA_STORAGEENGINEAPI_H
  4. #include "rrd.h"
  5. // Iterator over existing engines
  6. STORAGE_ENGINE* storage_engine_foreach_init();
  7. STORAGE_ENGINE* storage_engine_foreach_next(STORAGE_ENGINE* it);
  8. #endif