mirror of
https://github.com/netdata/netdata.git
synced 2025-04-26 22:04:46 +00:00

This reverts commit 440bd51e08
.
dbengine was still being used for non-zero tiers
even on non-dbengine modes.
12 lines
289 B
C
12 lines
289 B
C
// 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
|