summaryrefslogtreecommitdiff
path: root/src/ingestor.hpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-08-23 17:28:37 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2025-08-25 16:02:41 +0100
commit7ec58bf3f72fd7e0396a37f43ff023731697ff8a (patch)
tree067bea2150c1efc9423d06e784cd0a19f29f3397 /src/ingestor.hpp
parentb9b25dc52ad73f1be70f42d649b7b52bc4807208 (diff)
downloadwebstat-7ec58bf3f72fd7e0396a37f43ff023731697ff8a.tar.bz2
webstat-7ec58bf3f72fd7e0396a37f43ff023731697ff8a.tar.xz
webstat-7ec58bf3f72fd7e0396a37f43ff023731697ff8a.zip
Store log lines in full using entity ids
Diffstat (limited to 'src/ingestor.hpp')
-rw-r--r--src/ingestor.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ingestor.hpp b/src/ingestor.hpp
index 899f179..07a9a7d 100644
--- a/src/ingestor.hpp
+++ b/src/ingestor.hpp
@@ -27,6 +27,7 @@ namespace WebStat {
template<typename T> void storeEntity(const T &) const;
void storeEntity(Entity) const;
void storeEntity(std::optional<Entity>) const;
+ template<typename... T> void storeLogLine(const std::tuple<T...> &) const;
protected:
size_t linesRead = 0;