diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-10-15 23:22:54 +0100 |
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-10-15 23:22:54 +0100 |
| commit | 0845347d76868142af5d23bac1e22cfb55415e0a (patch) | |
| tree | 8cb3561cdf4b78342baac9f00c58612fe72cf17e /src/ingestor.cpp | |
| parent | b4b57337e69f1ee0b816369ed6b7d657ee11da8c (diff) | |
| download | webstat-0845347d76868142af5d23bac1e22cfb55415e0a.tar.bz2 webstat-0845347d76868142af5d23bac1e22cfb55415e0a.tar.xz webstat-0845347d76868142af5d23bac1e22cfb55415e0a.zip | |
Update comments on custom_log format
Diffstat (limited to 'src/ingestor.cpp')
| -rw-r--r-- | src/ingestor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ingestor.cpp b/src/ingestor.cpp index 0b102db..cb758cd 100644 --- a/src/ingestor.cpp +++ b/src/ingestor.cpp @@ -82,11 +82,11 @@ namespace WebStat { Ingestor::scanLogLine(std::string_view input) { return scn::scan< // Field : Apache format specifier : example - std::string_view, // virtual_host : %v : some.host.name + std::string_view, // virtual_host : %V : some.host.name std::string_view, // remoteip : %a : 1.2.3.4 (or ipv6) uint64_t, // request_time : %{usec}t : 123456790 std::string_view, // method : %m : GET - QuotedString, // URL : "%u" : "/foo/bar" + QuotedString, // path : "%u" : "/foo/bar" QueryString, // query_string : "%q" : "?query=string" or "" std::string_view, // protocol : %r : HTTPS/2.0 unsigned short, // status : %>s : 200 |
