You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org
Logstash: Difference between revisions
imported>BryanDavis (→Prototype (Beta) Logstash: point to openstack-browser for vm info) |
imported>Herron (Added supported log interfaces section) |
||
Line 1: | Line 1: | ||
{{Navigation Wikimedia infrastructure|expand=logging}} | {{Navigation Wikimedia infrastructure|expand=logging}} | ||
{{Ptag|Wikimedia-Logstash}} | {{Ptag|Wikimedia-Logstash}} | ||
'''Logstash''' is a tool for managing events and logs. When used generically, the term encompasses a larger system of log collection, processing, storage and searching activities | '''Logstash''' is a tool for managing events and logs. When used generically, the term encompasses a larger system of log collection, processing, storage and searching activities | ||
==Overview ("ELK")== | ==Overview ("ELK+")== | ||
[[File:ELK_Tech_Talk_2015-08-20.pdf|thumb|Slides from TechTalk on ELK by Bryan Davis]] | [[File:ELK_Tech_Talk_2015-08-20.pdf|thumb|Slides from TechTalk on ELK by Bryan Davis]] | ||
[[File:Wikipedia webrequest flow 2015-10.png|thumb|Wikipedia request flow]] | [[File:Wikipedia webrequest flow 2015-10.png|thumb|Wikipedia request flow]] | ||
[[File:Using_Kibana4_to_read_logs_at_Wikimedia_Tech_Talk_2016-11-14.pdf|thumb|Slides from TechTalk on Kibana4 by Bryan Davis]] | [[File:Using_Kibana4_to_read_logs_at_Wikimedia_Tech_Talk_2016-11-14.pdf|thumb|Slides from TechTalk on Kibana4 by Bryan Davis]] | ||
Various Wikimedia applications send log events to '''[[Logstash]]''', which gathers the messages, converts them into json documents, and stores them in an '''[[Elasticsearch]]''' cluster. Wikimedia uses '''Kibana''' as a front-end client to filter and display messages from the Elasticsearch cluster. | Various Wikimedia applications send log events to '''[[Logstash]]''', which gathers the messages, converts them into json documents, and stores them in an '''[[Elasticsearch]]''' cluster. Wikimedia uses '''Kibana''' as a front-end client to filter and display messages from the Elasticsearch cluster. Below are the core components of our ELK stack, and additional components used. Since we utilize more than the core ELK components, we'll refer to our stack as "ELK+" | ||
<br /> | |||
===Elasticsearch=== | |||
[http://www.elasticsearch.org/ Elasticsearch] is a multi-node [https://lucene.apache.org/ Lucene] implementation. The same technology powers the [[mw:Extension:CirrusSearch|CirrusSearch]] on WMF wikis. | |||
===Logstash=== | ===Logstash=== | ||
Line 14: | Line 19: | ||
[http://logstash.net/ Logstash] is a tool to collect, process, and forward events and log messages. Collection is accomplished via configurable input plugins including raw socket/packet communication, file tailing, and several message bus clients. Once an input plugin has collected data it can be processed by any number of filters which modify and annotate the event data. Finally logstash routes events to output plugins which can forward the events to a variety of external programs including Elasticsearch, local files and several message bus implementations. | [http://logstash.net/ Logstash] is a tool to collect, process, and forward events and log messages. Collection is accomplished via configurable input plugins including raw socket/packet communication, file tailing, and several message bus clients. Once an input plugin has collected data it can be processed by any number of filters which modify and annotate the event data. Finally logstash routes events to output plugins which can forward the events to a variety of external programs including Elasticsearch, local files and several message bus implementations. | ||
=== | ===Kibana=== | ||
[http://www.elasticsearch.org/overview/kibana/ Kibana] is a browser-based analytics and search interface for Elasticsearch that was developed primarily to view Logstash event data. | |||
[ | === Kafka === | ||
[https://kafka.apache.org/intro Apache Kafka] is a distributed steaming system. In our ELK stack Kafka buffers the stream of log messages produced by rsyslog (on behalf of applications) for consumption by Logstash. Nothing should output logs to logstash directly, logs should always be sent by way of Kafka. | |||
=== | === Rsyslog === | ||
[https://www.rsyslog.com Rsyslog] is the "rocket-fast system for log processing". In our ELK stack rsyslog is used as the host "log agent". Rsyslog ingests log messages in various formats and from varying protocols, normalizes them and outputs to Kafka. | |||
[ | === Elastalert === | ||
[https://elastalert.readthedocs.io/en/latest/elastalert.html#overview Elastalert] is a utility to query log message data in order to generate alerts. Many conditions, thresholds and output mechanisms are supported. | |||
==Systems feeding into logstash== | ==Systems feeding into logstash== | ||
Line 26: | Line 36: | ||
Writing new filters is easy. | Writing new filters is easy. | ||
=== Supported log shipping protocols & formats ("interfaces") === | |||
'''''Support of logs shipped directly from application to Logstash has been deprecated'''''. | |||
Please see [[Logstash/Interface]] for details regarding long-term supported log shipping interfaces. | |||
===Systems not feeding into logstash=== | ===Systems not feeding into logstash=== | ||
Line 33: | Line 48: | ||
*MediaWiki logs usually go to both logstash and log files, but a few log channels aren't. You can check which in <code>$wmgMonologChannels</code> in [https://noc.wikimedia.org/conf/InitialiseSettings.php.txt InitialiseSettings.php]. | *MediaWiki logs usually go to both logstash and log files, but a few log channels aren't. You can check which in <code>$wmgMonologChannels</code> in [https://noc.wikimedia.org/conf/InitialiseSettings.php.txt InitialiseSettings.php]. | ||
==Production Logstash== | ==Production Logstash Architecture== | ||
As of FY2019 Logstash infrastructure is owned by SRE. See also [[Logstash/SRE_onboard]] for more information on how to migrate services/applications. | As of FY2019 Logstash infrastructure is owned by SRE. See also [[Logstash/SRE_onboard]] for more information on how to migrate services/applications. | ||
===== '''Architecture Diagram''' ===== | |||
<br /> | |||
[[File:Logging Pipeline Arch Diag.jpg|center]] | |||
<br /> | |||
===== Web interface ===== | |||
:[https://logstash.wikimedia.org logstash.wikimedia.org] runs Kibana | :[https://logstash.wikimedia.org logstash.wikimedia.org] runs Kibana | ||
===== Authentication ===== | |||
:wikitech LDAP username and password and membership in one of the following LDAP groups: nda, ops, wmf | :wikitech LDAP username and password and membership in one of the following LDAP groups: nda, ops, wmf | ||
===== Configuration ===== | |||
:The cluster contains two types of nodes, configured by puppet. | |||
:*role::logstash manages the Logstash "collector" instances. These run logstash, a no-data Elasticsearch node, and an Apache vhost serving the Kibana application. The Apache vhosts also act as reverse proxies to the Elasticsearch cluster and perform LDAP-based authentication to restrict access to the potentially sensitive log information. | |||
:*role::logstash::elasticsearch manages the Elasticsearch data nodes, and the Kafka-logging brokers. These provide the inbound message buffering, and long-term storage layer for log data. | |||
===Kibana quick intro | ===== Hostname Convention ===== | ||
====== Current ====== | |||
:logstash1NNN Logstash related servers in [[Eqiad]]. | |||
:logstash2NNN Logstash related servers in Codfw. | |||
====== Future ====== | |||
:logstashNNNN - Logstash "collector" hosts | |||
:elasticsearch-loggingNNNN - Logstash Elasticsearch hosts | |||
:kafka-loggingNNNN - Logstash Kafka broker hosts | |||
===== Operating Systems ===== | |||
All hosts run Debian Stretch as a base operating system | |||
===== Load Balancing and TLS ===== | |||
The misc Varnish cluster is being used to provide ssl termination and load balancing support for the Kibana application. | |||
==Kibana quick intro== | |||
*Start from one of the blue Dashboard links near the top, more are available from the Load icon near the top right. | *Start from one of the blue Dashboard links near the top, more are available from the Load icon near the top right. | ||
Line 68: | Line 106: | ||
Note: The [https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html _search] endpoint can only be used '''without''' a request body (see {{Phabricator|T174960}}). Use [https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html _msearch] instead for complex queries that need a request body. | Note: The [https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html _search] endpoint can only be used '''without''' a request body (see {{Phabricator|T174960}}). Use [https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html _msearch] instead for complex queries that need a request body. | ||
===Extract data from Logstash with Python=== | |||
To get the last 100 log entries matching the Lucene query '''logger_name:varnishfetcherr AND layer:backend''' | |||
<source lang="python"> | |||
#!/usr/bin/env python3 | |||
import os | |||
import sys | |||
import json | |||
import requests | |||
query = "logger_name:varnishfetcherr AND layer:backend" | |||
results = 100 | |||
ldap_user = os.getenv("LDAP_USER") | |||
ldap_pass = os.getenv("LDAP_PASS") | |||
if ldap_user is None or ldap_pass is None: | |||
print("You need to set LDAP_USER and LDAP_PASS") | |||
sys.exit(1) | |||
url = "https://logstash.wikimedia.org/elasticsearch/_search?size={}&q={}".format( | |||
results, query | |||
) | |||
resp = requests.get(url, auth=requests.auth.HTTPBasicAuth(ldap_user, ldap_pass)) | |||
if resp.status_code != 200: | |||
print("Something's wrong, response status code={}".format(resp.status_code)) | |||
sys.exit(1) | |||
data = resp.json() | |||
for line in data["hits"]["hits"]: | |||
print(json.dumps(line["_source"])) | |||
</source> | |||
==Plugins== | ==Plugins== | ||
We maintain a WMF specific process to build and distribute Logstash plugins to servers. | We maintain a WMF specific process to build and distribute Logstash plugins to servers. |
Revision as of 15:44, 21 June 2019
Logstash is a tool for managing events and logs. When used generically, the term encompasses a larger system of log collection, processing, storage and searching activities
Overview ("ELK+")
File:ELK Tech Talk 2015-08-20.pdf
File:Using Kibana4 to read logs at Wikimedia Tech Talk 2016-11-14.pdf
Various Wikimedia applications send log events to Logstash, which gathers the messages, converts them into json documents, and stores them in an Elasticsearch cluster. Wikimedia uses Kibana as a front-end client to filter and display messages from the Elasticsearch cluster. Below are the core components of our ELK stack, and additional components used. Since we utilize more than the core ELK components, we'll refer to our stack as "ELK+"
Elasticsearch
Elasticsearch is a multi-node Lucene implementation. The same technology powers the CirrusSearch on WMF wikis.
Logstash
Logstash is a tool to collect, process, and forward events and log messages. Collection is accomplished via configurable input plugins including raw socket/packet communication, file tailing, and several message bus clients. Once an input plugin has collected data it can be processed by any number of filters which modify and annotate the event data. Finally logstash routes events to output plugins which can forward the events to a variety of external programs including Elasticsearch, local files and several message bus implementations.
Kibana
Kibana is a browser-based analytics and search interface for Elasticsearch that was developed primarily to view Logstash event data.
Kafka
Apache Kafka is a distributed steaming system. In our ELK stack Kafka buffers the stream of log messages produced by rsyslog (on behalf of applications) for consumption by Logstash. Nothing should output logs to logstash directly, logs should always be sent by way of Kafka.
Rsyslog
Rsyslog is the "rocket-fast system for log processing". In our ELK stack rsyslog is used as the host "log agent". Rsyslog ingests log messages in various formats and from varying protocols, normalizes them and outputs to Kafka.
Elastalert
Elastalert is a utility to query log message data in order to generate alerts. Many conditions, thresholds and output mechanisms are supported.
Systems feeding into logstash
See 2015-08 Tech talk slides
Writing new filters is easy.
Supported log shipping protocols & formats ("interfaces")
Support of logs shipped directly from application to Logstash has been deprecated.
Please see Logstash/Interface for details regarding long-term supported log shipping interfaces.
Systems not feeding into logstash
- EventLogging (of program-defined events with schemas), despite its name, uses a different pipeline.
- Varnish logs of the billions of pageviews of WMF wikis would require a lot more hardware. Instead we use Kafka to feed web requests into Hadoop. A notable exception to this rule: varnish user-facing errors (HTTP status 500-599) are sent to logstash to make debugging easier.
- MediaWiki logs usually go to both logstash and log files, but a few log channels aren't. You can check which in
$wmgMonologChannels
in InitialiseSettings.php.
Production Logstash Architecture
As of FY2019 Logstash infrastructure is owned by SRE. See also Logstash/SRE_onboard for more information on how to migrate services/applications.
Architecture Diagram
Web interface
- logstash.wikimedia.org runs Kibana
Authentication
- wikitech LDAP username and password and membership in one of the following LDAP groups: nda, ops, wmf
Configuration
- The cluster contains two types of nodes, configured by puppet.
- role::logstash manages the Logstash "collector" instances. These run logstash, a no-data Elasticsearch node, and an Apache vhost serving the Kibana application. The Apache vhosts also act as reverse proxies to the Elasticsearch cluster and perform LDAP-based authentication to restrict access to the potentially sensitive log information.
- role::logstash::elasticsearch manages the Elasticsearch data nodes, and the Kafka-logging brokers. These provide the inbound message buffering, and long-term storage layer for log data.
Hostname Convention
Current
- logstash1NNN Logstash related servers in Eqiad.
- logstash2NNN Logstash related servers in Codfw.
Future
- logstashNNNN - Logstash "collector" hosts
- elasticsearch-loggingNNNN - Logstash Elasticsearch hosts
- kafka-loggingNNNN - Logstash Kafka broker hosts
Operating Systems
All hosts run Debian Stretch as a base operating system
Load Balancing and TLS
The misc Varnish cluster is being used to provide ssl termination and load balancing support for the Kibana application.
Kibana quick intro
- Start from one of the blue Dashboard links near the top, more are available from the Load icon near the top right.
- In "Events over time" click to zoom out to see what you want, or select a region with the mouse to zoom in.
- smaller time intervals are faster
- be careful you may see no events at all... because you're viewing the future
- When you get lost, click the Home icon near the top right
- As an example query,
wfDebugLog( 'Flow', ...)
in MediaWiki PHP corresponds totype:mediawiki AND channel:flow
- switch to using mw:Structured logging and you can query for ...
AND level:ERROR
- switch to using mw:Structured logging and you can query for ...
Read slide 11 and onwards in the TechTalk on ELK by Bryan Davis, they highlight features of the Kibana web page.
API
The Elasticsearch API is accessible at https://logstash.wikimedia.org/elasticsearch/
Note: The _search endpoint can only be used without a request body (see task T174960). Use _msearch instead for complex queries that need a request body.
Extract data from Logstash with Python
To get the last 100 log entries matching the Lucene query logger_name:varnishfetcherr AND layer:backend
#!/usr/bin/env python3
import os
import sys
import json
import requests
query = "logger_name:varnishfetcherr AND layer:backend"
results = 100
ldap_user = os.getenv("LDAP_USER")
ldap_pass = os.getenv("LDAP_PASS")
if ldap_user is None or ldap_pass is None:
print("You need to set LDAP_USER and LDAP_PASS")
sys.exit(1)
url = "https://logstash.wikimedia.org/elasticsearch/_search?size={}&q={}".format(
results, query
)
resp = requests.get(url, auth=requests.auth.HTTPBasicAuth(ldap_user, ldap_pass))
if resp.status_code != 200:
print("Something's wrong, response status code={}".format(resp.status_code))
sys.exit(1)
data = resp.json()
for line in data["hits"]["hits"]:
print(json.dumps(line["_source"]))
Plugins
We maintain a WMF specific process to build and distribute Logstash plugins to servers.
The build script and plugin git repository is located at https://gerrit.wikimedia.org/r/#/admin/projects/operations/software/logstash/plugins
Plugin build process
Pre-requisites:
- An up to date Debian stable host with the Logstash package installed
- Membership to LDAP group cn=archiva-deployers,ou=groups,dc=wikimedia,dc=org
Build Process
First, create a ~/.m2/settings.xml file containing the below (see Archiva#Deploy to Archiva for additional details)
# ~/.m2/settings.xml
<settings>
<servers>
<server>
<id>wikimedia.releases</id>
<username>$USERNAME</username>
<password>XXXXXXXX</password>
</server>
</servers>
</settings>
Then, check out https://gerrit.wikimedia.org/r/#/admin/projects/operations/software/logstash/plugins
git clone https://gerrit.wikimedia.org/r/operations/software/logstash/plugins
In the newly created directory 'plugins' , initialize git-fat
cd plugins
git-fat init
Then execute the build script, providing the logstash version for which plugins should be built as the first argument
./build.sh 5.6.15 # 5.6.15 is used as an example, substitute in desired logstash version
Or, if rebuilding plugins at the same version, for example to add a new plugin, you may append a local version number like so
# To optionally rebuild plugins for the same logstash version
./build.sh 5.6.15-1 # 5.6.15 local version 1
Also git add and git commit the changes. Then send it for review
git add .
git commit -m "Upgrade logstash plugin to 5.X.X"
git review -R
After review and merging the change, you'll need to pull the change onto the deployment server, and run a scap deploy. Currently the deploy server is deploy1001
# ssh to deploy master, currently deploy1001
cd /srv/deployment/logstash/plugins/
# have a look at what is in the local working copy. you'll want to bring this up to date
# with the gerrit repository but also not inadvertantly clobber manual changes
git pull
# if you wish to see what would happen without actually running the deploy
scap deploy --dry-run --no-log-message
# deploy the updated plugins
scap deploy "updating logstash plugins to $version"
After a successful scap deploy, puppet should do the right thing upon the next agent run to fetch and install the update plugins
Puppet will not restart logstash. This must be done manually in a rolling fashion, and it's strongly suggested to perform this in step with the plugin deploy.
Prototype (Beta) Logstash
- Web interface
- logstash-beta.wmflabs.org
- Hosts
- deployment-logstash2.deployment-prep.eqiad.wmflabs
- Configuration
- It hosts a functional Logstash + Elasticsearch + Kibana stack at logstash-beta.wmflabs.org that aggregates log data produced by the beta cluster. Credentials for this can be found on deployment-deploy01.deployment-prep.eqiad.wmflabs in /root/secrets.txt.
Gotchas
GELF transport
Make sure logging events sent to the GELF input don't have a "type" or "_type" field set, or if set, that it contains the value "gelf". The gelf/logstash config discards any events that have a different value set for "type" or "_type". The final "type" seen in Kibana/Elasticsearch will be take from the "facility" element of the original GELF packet. The application sending the log data to Logstash should set "facility" to a reasonably unique value that identifies your application.
Documents
See also
- mw:Manual:Structured logging (MediaWiki part of the job to feed into Logstash)
- Logs#mw-log (the old method of viewing logs)