honeytail.
Honeytail will tail your existing log files, parse the content, and send it up to Honeycomb.
If you already have structured data in an existing log, this is the easiest method to get that data in to Honeycomb.
The quality of your dataset within Honeycomb depends entirely upon the quality of the data going into the log file.
To get the most useful insight out of Honeycomb, you must provide high quality data in your log file.
In addition to as much detail about each event as you can include, it is best to always include some host-level information to give each event in the log context.
For example, the host on which the log exists.
Honeytail is designed to run as a daemon so that it can continuously consume new content as it appears in the log files as well as detect when a log file rotates.
It must be configured with your team API key and the name of the Dataset to which you want to write data.
You specify one of the available parser modules depending on how your log data is structured.
Once running, honeytail will take care of uploading all the data in your log file and picking up new data as it comes in.
Honeytail is open source—we encourage auditing the software you will run on your servers.
We also happily consider pull requests with new log format parsers and other improvements.
To see an example of Honeytail in action, try out our Honeytail Example.
Installation
honeytail will tail existing log files, parse the content, and send it up to Honeycomb.
You can view its source here.
Download and install the latest honeytail by running:
- deb-amd64
- deb-arm64
- rpm
- bin-linux-amd64
- bin-linux-arm64
- bin-darwin-amd64
- source
Download the Verify the package.Install the package.The packages install
honeytail_1.10.0_amd64.deb package.honeytail, its config file /etc/honeytail/honeytail.conf,
and some start scripts.
Build honeytail from source if you need it in an unpackaged form or for ad-hoc use.ParserNameto the appropriate one ofjson,nginx,mysql,arangodb,regexWriteKeyto your API keyLogFilesto the path for the log file you want to ingest, or-forstdinDatasetto the name of the dataset you wish to create with this log file.
honeytail by hand with honeytail -c /etc/honeytail/honeytail.conf or using the standard sudo initctl start honeytail (upstart) or sudo systemctl start honeytail (systemd) commands.
honeytail will automatically start back up after rebooting your system.
To disable this, put the word manual in /etc/init/honeytail.override (upstart) or run systemctl disable honeytail (systemd).
Launch the Agent
Start up ahoneytail process using upstart or systemd, or by launching the process by hand.
This will tail the log file specified in the configuration and leave the process running as a daemon.
- upstart
- systemd
- manual
nginx), its associated options, such as where the log files are found, and the API key.
We enforce a rate limit in order to protect our servers from abuse.
This can be raised on a case-by-case basis; please contact us to lift your limit.
Data Formats
Honeytail has predefined formats for many different use cases. It has built-in support for many existing log formats, including popular services like:- MySQL
- PostgresSQL
- Nginx
- Mongo
- ArangoDB
Reading from Standard Input (stdin)
Honeytail can read directly from standard input (stdin) by setting the file as-.
In this example, the honeytail invocation uses standard input as the data source:
Backfilling Existing Data
If you have events in older log files that you would like to load into Honeycomb, usehoneytail with the --backfill option.
Honeytail does not unzip log files, so you will need to do this before backfilling.
honeytail invocation to pull in multiple existing logs and as much as the current log as possible.
--parser=json: For the purposes of this example, all logs are already JSON formatted. Take a look at the timestamp section of the JSON connector to make sure your historical logs have their times interpreted correctly.--file=/var/log/app/myapp.log.*: Honeycomb understands file globs and will ingest all of the files in series.--file=/var/log/app/myapp.log: Specify the--file(or its short form,-f) as many times as necessary to include additional files that do not match a glob. Ingest as much of the current file as exists.--backfill: This flag tellshoneytailto read the specified files in their entirety, stop when finished reading, and to respond to rate limited responses (HTTP 429) by slowing down the rate at which it sends events.
honeytail will keep track of its progress through a file, and if interrupted, will pick back up where it left off.
By launching honeytail pointing at the main app log, it will find the state file it created while reading in the backlog and start up where it left off.
Here is the second honeytail invocation, where it will tail the current log file and send in recent entries:
Globs with Same File Names
If using a glob that returns files with the same name in different directories, such as log files within multiple websites, use thetail.hash_statefile_paths option to ensure each tailed file gets its own state file.
This option prevents a single state file from being used for multiple files, and avoids unnecessary file write contentions and load.
Sampling High Volume Data
Let us say you have an incredible volume of log content and your website gets hit frequently enough that you will still get excellent data quality even if you are only looking at 1/20th the traffic. Honeytail can sample the log file and for each 20 lines, only send one of them. It does so randomly, so you will not see every 20th line being sent - instead each line will have a 5% chance of being sent. When these log lines reach Honeycomb, they will include metadata indicating that each one represents 20 similar lines, so all your graphs will show accurate total counts.status field in your nginx traffic will have this effect.
The actual sample rate applied will vary based on the cardinality of the chosen field and the frequency of each value, but it will be in the ballpark of the samplerate specified.
dynsampling flag multiple times and it will sample traffic based on the frequency and uniqueness of concatenating all the values of the fields you specify.
Sampling Deterministically
In addition to static and dynamic sampling support, Honeytail also has support for sampling data deterministically based on the value of a field. This is useful for making sampling decisions based on properties like a request ID or trace ID. Approximately 1/N events will be sampled (where N is the sample rate), and any events, which have the same value for the field passed to the--deterministic_sampling flag, will be sampled consistently.
This flag must be used with --samplerate to specify the sampling rate.
--samplerate and --deterministic_sampling, it would sample the same subset of requests.
Adding Extra Information into Your Events
It is not unusual for a log to omit interesting information like the name of the machine on which the process is running. After all, you are on that machine, right? Why would you add the hostname? Log transports likersyslog will prepend logs with the hostname sending them, but if you are sending logs from each host, this data may not exist.
Honeytail lets you add in extra fields to each event sent up to Honeycomb with the --add_field flag.
For this example, let us assume that you have nginx running as a web server in both your production and staging environments.
Your shell sets $ENV with the environment (prod or staging).
Here is how to run honeytail to consume your nginx log and insert the hostname and environment along with each log line:
--da_map_file.
As an example, your log file might contain the IP address of the host connecting to this service, but you would really like to include the hostname in your events.
Or your log file contains user ID and you would like to add user name and group.
If you can build a map of source values to new fields, then you can use the --da_map_file flag to augment your data.
As our example, let us add hostname and AWS availability zone to a log file that contains a IP addresses.
The IP address is stored in a field called ip_addr in the events we are processing.
The first step is to build a JSON file containing the name of the source column (ip_addr), and a map of values to new fields (10.0.0.6 should add a field hostname with the value app21 and aws_az of c, 10.0.0.7 has different fields).
"ip_addr":"10.0.0.6", it will add the two additional fields "hostname":"app21","aws_az":"c".
Note that additional source column names may be specified (each with their own translation map) by extending the content of the JSON map file.
The recommended method to deploy this is to generate a map of all the values to the new fields that should be added and distribute it to all the hosts that will be running Honeytail.
Example use cases:
- a mysql slow query log includes the IP address of the client; translate those IP addresses to names and host groups to identify unexpected servers connecting to your database
- ssh can log the fingerprint of the key used to authenticate; distribute a mapping of key fingerprint to key owners to make it easier to see who is logging in to what servers
- different users are sharded to different backend clusters; use the authenticated user ID to add information about which shard they are on, making it easier to spot problems that are localized to individual shards
Dropping or Scrubbing Fields
Sometimes you will have fields in your log file that you do not want to send to Honeycomb or that you want to obscure before letting them leave your servers. For this example, let us say that you have in your log a large text field with the contents of an email. It is large enough that you do not want it sent up to Honeycomb. Also in this log you have a some sensitive information like a person’s birthday. You want to be able to ask questions about the most common birthdays, but you do not want to expose the actual birthdays outside your infrastructure. Honeytail has two flags that will help you accomplish these goals.--drop_field will remove a field before sending the event to Honeycomb and --scrub_field will subject the value of a field to a SHA256 hash before sending it along.
You will still be able to do inclusion and frequency analysis on the hashed fields (as there will be a 1-1 mapping of value to hashed value) but the actual value will be obscured.
Here is your honeytail invocation:
Versioning honeytail Configuration
Convert Command Lines to YAML Configuration
Thehoneytail binary supports reading its configuration from a YAML configuration file, as well as command line arguments.
To get started, if you have already been using a few command line arguments, add an additional flag: --write_current_yaml.
This flag will write your command line configuration as YAML to STDOUT so you can use it as a starting point.
scrubbed_mysql.yaml.
honeytail use, or for providing additional configuration when using advanced honeytail features, like scrubbing sensitive fields or parsing custom URL structures.
Convert from an INI configuration to YAML
Previous versions ofhoneytail used the INI file format (.ini) for configuration, but this is now deprecated.
To create a YAML configuration file that is equivalent to an existing INI configuration, use this command with your .ini configuration file name:
STDOUT.
Using a Configuration File
Once the configuration file is created, runhoneytail with a --config_yaml argument in lieu of all of the other flags:
Notes on Using YAML Configuration
- When using YAML configuration, any configuration flags specified on the command line are ignored.
- The names of fields in the YAML file are the same “long” names you see in the Honeytail help file.
For example,
honeytail -h - Any field with help that notes “May have multiple values” is specified in YAML as an array. For example:
- Any values with dotted names in help are specified as YAML objects, with appropriate indentation.
For example,
--mysql.host=my.fake.host.combecomes:
Parsing URL Patterns
honeytail can break URLs up into their component parts, storing extra information in additional columns.
This behavior is turned on by default for the request field on nginx datasets, but can become more useful with a little bit of guidance from you.
There are several flags that adjust the behavior of honeytail as it breaks apart URLs.
Identifying the URL Field
When using thenginx parser, honeytail looks for a field named request.
When using a different parser (such as the JSON parser), you should specify the name of the field that contains the URL with the --request_shape flag.
Using this flag creates a few generated fields.
Given a request field containing a value like:
nginx events for Honeycomb that look like:
(The generated fields will all be prefixed by the field name specified by --request_shape— in the above example request.
Use the --shape_prefix field to prepend an additional string to these generated fields.)
If the URL field contains just the URL, the request_method and request_protocol_version fields will be omitted.
URL Normalization
The path portion of the URL (from the beginning/ up to the ? that separates the path from the query) can be grouped by common patterns, as is common for REST interfaces.
For example, given a URL fragments like:
/books/:isbn) and a separate field for the ISBN number itself by specifying a --request_pattern flag:
--request_pattern flags and they will be considered in order.
The first one to match a URL will be used.
Patterns should represent the entire path portion of the URL - include a ”*” at the end to match arbitrary additional segments.
For example, if we have a wider variety of URL fragments, like:
--request_pattern flags and track a wider variety of request_shapes:
request_path_isbn populated as before, as the :isbn parameter is respected in both patterns:
A URL’s query string can be broken apart similarly, with the --request_query_keys flag, with generated fields named like <field>_query_<keyname>.
If, on top of our previous examples, our URL fragments had query strings like:
--request_query_keys=borrower_id would return us a Honeycomb event with a request_query_borrower_id field with a value of 23597.
If you would like to automatically create a field for every key in the query string, you can use the flag --request_parse_query=all.
This will automatically create a new field <field>_query_<key> for every query parameter encountered in the query string.
For any publicly accessible web server, it is likely that this will quickly create many useless columns because of all the random traffic on the internet.
For more detail and examples, see our urlshaper package on GitHub.