We use the device_parsers from regexes.yaml for identifying the device family from a user agent. An unusually large number of Windows/PC user agents are not identified by any of the device definitions defined in device_parsers.
I was wondering what would be a better way of handling this:
Add a generic Windows PC as a device in device_parsers
When there is no match in device_parsers, identify the OS with os_parsers and if Windows, classify it as Windows PC
Hi,
We use the device_parsers from regexes.yaml for identifying the device family from a user agent. An unusually large number of Windows/PC user agents are not identified by any of the device definitions defined in
device_parsers
.I was wondering what would be a better way of handling this:
device_parsers
device_parsers
, identify the OS withos_parsers
and if Windows, classify it asWindows PC
Are there any other approaches that might work here?
Thanks in advance!