| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_RRDDIM_BACKFILL_H |
| 4 | #define NETDATA_RRDDIM_BACKFILL_H |
| 5 | |
| 6 | typedef enum __attribute__ ((__packed__)) { |
| 7 | RRD_BACKFILL_NONE = 0, |
| 8 | RRD_BACKFILL_FULL, |
| 9 | RRD_BACKFILL_NEW |
| 10 | } RRD_BACKFILL; |
| 11 | |
| 12 | #include "rrddim.h" |
| 13 | |
| 14 | bool backfill_tier_from_smaller_tiers(RRDDIM *rd, size_t tier, time_t now_s); |
| 15 | |
| 16 | #endif //NETDATA_RRDDIM_BACKFILL_H |