You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not 100% sure if the other components of the user agent version string - major, minor and build - are never not numbers. However, I've just ingested 300K log lines successfully and no error came up.
The text was updated successfully, but these errors were encountered:
I would suggest we switch the type here to a keyword. It would be great to have support for "version strings" in Lucene directly so someone could search for > 1.x but as far as I know this is not possible.
Version: Filebeat 5.3.0
In https://github.com/elastic/beats/blob/master/filebeat/module/apache2/access/_meta/fields.yml, we assume the browser patch version is a number:
That is not a safe assumption, e.g. Firefox beta versions had a patch versions such as "b12". A full user agent string then looks like this:
Mozilla/5.0 (X11; Linux x86_64; rv:2.0b12) Gecko/20110222 Firefox/4.0b12
There are a bunch of them, see for example http://www.useragentstring.com/pages/useragentstring.php?name=Firefox
I'm not 100% sure if the other components of the user agent version string - major, minor and build - are never not numbers. However, I've just ingested 300K log lines successfully and no error came up.
The text was updated successfully, but these errors were encountered: