osquery is designed to work with any environment's existing data infrastructure. Since the problem space of forwarding logs is so well developed, osquery does not implement log forwarding internally.
In short, the act of forwarding logs and analyzing logs is mostly left as an exercise for the reader. This page offers advice and some options for you to consider, but at the end of the day, you know your infrastructure best and you should make your decisions based on that knowledge.
## Aggregating logs
When it comes to aggregating the logs that osqueryd generates, you have several options. If you use the filesystem logger plugin (which is the default), then you're responsible for shipping the logs off somewhere. There are many open source and commercial products which excel in this area. This section will explore a few of those options.
### Logstash
[LogStash](http://www.elasticsearch.org/overview/logstash/) is an open source tool enabling you to collect, parse, index and forward logs.
Logstash enables you to ingest osquery logs with its [file](http://logstash.net/docs/1.4.2/inputs/file) input plugin and then send the data to an aggregator via its extensive list of [output plugins](http://logstash.net/docs/1.4.2/).
A common datastore for logstash logs is [ElasticSearch](http://www.elasticsearch.org/overview/elasticsearch/).
An example Logstash to ElasticSearch config may look like this:
```
input {
file {
path => "/var/log/osquery/osqueryd.results.log"
type => "osquery_json"
codec => "json"
}
}
filter {
if [type] == "osquery_json" {
date {
match => [ "unixTime", "UNIX" ]
}
}
}
output {
stdout {}
elasticsearch_http {
host=> "127.0.0.1"
port=> 9200
}
}
```
This will send the JSON formatted logs from the results log to an elasticsearch instance listening on 127.0.0.1. This can be an Elasticsearch node at any endpoint address.
### Splunk
If you use Splunk, you're probably already familiar with the [Splunk Universal Forwarder](http://docs.splunk.com/Splexicon:Universalforwarder). If you have an existing Splunk deployment in your organization, then this is the product for you.
An example Splunk forwarder (inputs) config may look as follows:
```
[monitor:///var/log/osquery/osqueryd.results.log]
index = main
sourcetype = osquery_results
[monitor:///var/log/osquery/osqueryd.*INFO*]
index = main
sourcetype = osquery_info
[monitor:///var/log/osquery/osqueryd.*ERROR*]
index = main
sourcetype = osquery_error
[monitor:///var/log/osquery/osqueryd.*WARNING*]
index = main
sourcetype = osquery_warning
```
### Fluentd
[Fluentd](http://www.fluentd.org/) is an open source data collector and log forwarder. It's very extensible and many people swear by it.
### Rsyslog
[rsyslog](http://www.rsyslog.com/) is a tried and testing unix log forwarding service. If you're deploying osqueryd in a production linux environment where you don't have to worry about lossy network connections, this may be your best option.
## Analyzing logs
The way in which you analyze logs is very dependent on how you're aggregating logs. At the end of the day, osquery produces results logs in JSON format, so the logs are very easy to analyze on most modern backend log aggregation platforms.
### Kibana
If you're forwarding logs with [LogStash](http://www.elasticsearch.org/overview/logstash/) to [ElasticSearch](http://www.elasticsearch.org/overview/elasticsearch/), then you'd probably want to perform your analytics using [Kibana](http://www.elasticsearch.org/overview/kibana/).
Logstash will index logs into ElasticSearch using a default index format of logstash-YYYY-MM-DD.
Kibana has a default logstash dashboard and automatically field-extracts all log lines making them available for search.
If you're forwarding logs with the [Splunk Universal Forwarder](http://docs.splunk.com/Splexicon:Universalforwarder), then you're most likely going to be doing all of your analytics in Splunk.
Splunk will automatically extract the relevant fields for analytics, as shown below:
If you're using a log forwarder which has less requirements on how data is stored (ie: Splunk Forwarders require the use of Splunk, etc), then you have many options on how you can interact with osqueryd data. It is recommended that you use whatever log analytics platform that you're comfortable with.
Many people are very comfortable with [Logstash](http://logstash.net/). If you already have an existing Logstash/Elasticsearch deployment, that is a great option to exercise. If your organization uses a different backend log management solution, osquery should tie into that with minimal effort.