diff options
Diffstat (limited to 'database/storage_engine.h')
-rw-r--r-- | database/storage_engine.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/database/storage_engine.h b/database/storage_engine.h new file mode 100644 index 00000000..b7fb7383 --- /dev/null +++ b/database/storage_engine.h @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: GPL-3.0-or-later + +#ifndef NETDATA_STORAGEENGINEAPI_H +#define NETDATA_STORAGEENGINEAPI_H + +#include "rrd.h" + +// Iterator over existing engines +STORAGE_ENGINE* storage_engine_foreach_init(); +STORAGE_ENGINE* storage_engine_foreach_next(STORAGE_ENGINE* it); + +#endif |