Update file names. (#18638)
vkalintiris committed
Sep 30, 2024 at 15:48 UTC
2f12797f93bed79b446c944ce82e2309076935a1
11 files changed
+17
-17
CMakeLists.txt
+8
-8
@@ -1125,14 +1125,14 @@ endif()
1125
1126
set(INTERNAL_COLLECTORS_FILES
1127
src/collectors/common-contexts/common-contexts.h
1128
- src/collectors/common-contexts/disk.io.h
1129
- src/collectors/common-contexts/system.io.h
1130
- src/collectors/common-contexts/system.interrupts.h
1131
- src/collectors/common-contexts/system.processes.h
1132
- src/collectors/common-contexts/system.ram.h
1133
- src/collectors/common-contexts/mem.swap.h
1134
- src/collectors/common-contexts/mem.pgfaults.h
1135
- src/collectors/common-contexts/mem.available.h
1128
+ src/collectors/common-contexts/disk-io.h
1129
+ src/collectors/common-contexts/system-io.h
1130
+ src/collectors/common-contexts/system-interrupts.h
1131
+ src/collectors/common-contexts/system-processes.h
1132
+ src/collectors/common-contexts/system-ram.h
1133
+ src/collectors/common-contexts/mem-swap.h
1134
+ src/collectors/common-contexts/mem-pgfaults.h
1135
+ src/collectors/common-contexts/mem-available.h
1136
)
1137
1138
set(PLUGINSD_PLUGIN_FILES
src/collectors/common-contexts/common-contexts.h
+9
-9
@@ -18,14 +18,14 @@
18
19
typedef void (*instance_labels_cb_t)(RRDSET *st, void *data);
20
21
-#include "system.io.h"
22
-#include "system.ram.h"
23
-#include "system.interrupts.h"
24
-#include "system.processes.h"
25
-#include "system.ipc.h"
26
-#include "mem.swap.h"
27
-#include "mem.pgfaults.h"
28
-#include "mem.available.h"
29
-#include "disk.io.h"
21
+#include "system-io.h"
22
+#include "system-ram.h"
23
+#include "system-interrupts.h"
24
+#include "system-processes.h"
25
+#include "system-ipc.h"
26
+#include "mem-swap.h"
27
+#include "mem-pgfaults.h"
28
+#include "mem-available.h"
29
+#include "disk-io.h"
30
31
#endif //NETDATA_COMMON_CONTEXTS_H