summaryrefslogtreecommitdiffstats
path: root/logsmanagement/db_api.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:19:22 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:19:22 +0000
commitc21c3b0befeb46a51b6bf3758ffa30813bea0ff0 (patch)
tree9754ff1ca740f6346cf8483ec915d4054bc5da2d /logsmanagement/db_api.h
parentAdding upstream version 1.43.2. (diff)
downloadnetdata-upstream/1.44.3.tar.xz
netdata-upstream/1.44.3.zip
Adding upstream version 1.44.3.upstream/1.44.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--logsmanagement/db_api.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/logsmanagement/db_api.h b/logsmanagement/db_api.h
new file mode 100644
index 000000000..3f4fe0d30
--- /dev/null
+++ b/logsmanagement/db_api.h
@@ -0,0 +1,22 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+/** @file db_api.h
+ * @brief Header of db_api.c
+ */
+
+#ifndef DB_API_H_
+#define DB_API_H_
+
+#include "../database/sqlite/sqlite3.h"
+#include <uv.h>
+#include "query.h"
+#include "file_info.h"
+
+#define LOGS_MANAG_DB_SUBPATH "/logs_management_db"
+
+int db_user_version(sqlite3 *const db, const int set_user_version);
+void db_set_main_dir(char *const dir);
+int db_init(void);
+void db_search(logs_query_params_t *const p_query_params, struct File_info *const p_file_infos[]);
+
+#endif // DB_API_H_