Successfully reported this slideshow.
Your SlideShare is downloading. ×

Turbo charge your logs

Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Upcoming SlideShare
Shall we play a game?
Shall we play a game?
Loading in …3
×

Check these out next

1 of 55 Ad

More Related Content

Slideshows for you (19)

Similar to Turbo charge your logs (20)

Advertisement

Recently uploaded (20)

Advertisement

Turbo charge your logs

  1. 1. Turbo charge your logs
  2. 2. Who? ● ● ● ● ● Ex-pat Englishman, now living in Southern Ontario. Web developer for 5 years, mostly PHP. (Almost) senior software engineer at TribeHR. Co-organiser of Guelph PHP User Group. Ex-professional musician.
  3. 3. Why logging?
  4. 4. Your app is trying to talk to  you! ● ● ● ● Logs are the way your app speaks to you. Ignore log messages at your peril... Logging is the L in LUCID development. http://crisscott.com/2012/09/11/lucid-developme
  5. 5. It's confessional time...
  6. 6. Using log data is hard ● Not in a human friendly format. ● A lot of data. ● Many log files. ● Potentially many servers.
  7. 7. Use your logs pro­actively How can we stop using log data reactively and start using it pro-actively?
  8. 8. The 'ideal' logging setup ● ● Centralised. Accepts logs from application code, software and the OS. ● Performant. ● Scalable. ● Easily searchable. ● Alarms and alerting.
  9. 9. RFC 5424 logging levels ● Debug ● Info ● Notice ● Warning ● Error ● Critical ● Alert ● Emergency
  10. 10. Logging from your code
  11. 11. What's wrong with  error_log? ● Nothing at all but... ● It's limited: – Have to format the message yourself. – Limited number of destinations. – Doesn't support logging levels defined in RFC 5424.
  12. 12. Introducing Monolog ● PHP 5.3+ logging library by Jordi Boggiano based on Python's Log Book library. ● PSR-3 compliant. ● Supports RFC 5424.
  13. 13. Installing Monolog ● ● ● Symfony2, Laravel4, Silex and PPI all come with Monolog. CakePHP and Slim have have plugins to use it. Most easily installed with Composer:
  14. 14. Monolog concepts ● Channels. ● Handlers. ● Formatters. ● Processors.
  15. 15. Channels ● ● ● A channel is a name or category for a logger. Each logger instance is given a channel when instantiated. Allows for multiple loggers, each with a different channel.
  16. 16. Handlers ● ● ● ● Handlers write log messages to a storage medium. Multiple handlers can be attached to each logger. Set lowest level handler logs at and if it 'bubbles'. Many handlers available or you can write your own.
  17. 17. Example handlers Files/Syslog Notifications ● Stream Handler ● Mail handlers ● Rotating File Handler ● Pushover Handler ● Syslog Handler ● HipChat Handler Debugging Networked Logging ● Socket Handler ● AMQP Handler ● Gelf Handler ● Zend Monitor Handler ● ● FirePHP Handler ChromePHP Handler
  18. 18. Formatters ● ● Processes a log message into the appropriate format for a handler. Each handler has a default formatter to use but this can be overridden.
  19. 19. Simple example
  20. 20. Using multiple handlers
  21. 21. Leveraging bubbling
  22. 22. Processors ● ● ● Used to amend or add to the log message. PHP callable, called when a message is logged. Built in processors available: – IntrospectionProcessor – WebProcessor – MemoryUsageProcessor – MemoryPeakUsageProcessor – ProcessIdProcessor – UidProcessor
  23. 23. Processor example
  24. 24. Where does this get us to? ● ● Centralised. Maybe... Accepts messages from application code, software and the OS. ● Performant. Maybe... ● Scalable. Maybe... ● Easily searchable. ● Alarms and alerting. Yes but crude.
  25. 25. We can do better!
  26. 26. Leveraging Syslog
  27. 27. Why Syslog? ● ● Loggable events don't only happen in code! To get a full picture of what's going on we need to monitor what's going on in other services too.
  28. 28. Syslog basics ● ● ● ● OS daemon to process log messages. Messages are assigned a facility, such as auth, authpriv, daemon or cron or a custom one. Messages are also assigned a severity, defined in RFC 5424. Messages can be sent to files, console or a remote location.
  29. 29. Which Syslog daemon  to use? ● In part will depend on your OS. ● Things to consider: – Syslog is the oldest with not as many features. – Syslog-ng is produced under a dual license. – Rsyslog fully featured and open source.
  30. 30. Introduction to Rsyslog ● Fork of syslog by Rainer Gerhards. ● Drop in replacement for syslog. ● ● Many, many features including plugin system for extending. Default syslogger in Debian, can be installed on other distros too.
  31. 31. Remote logging with  Rsyslog ● Rsyslog can be configured to work in a client-server setup. – – ● One or more machines are setup as clients to forward log messages. One machine is setup to receive and store them. Probably want to filter sender on the receiving machine...
  32. 32. Rsyslog client setup
  33. 33. Rsyslog server setup
  34. 34. Leveling up with Rsyslog ● ● Apache can send all error logs to syslog directly. Rsyslog can also monitor other log files using the Text File Input module. – Example of monitoring Apache access log at https://gist.github.com/joseph12631/2580615
  35. 35. Where does this get us? ● ● Centralised. Yes. Accepts messages from application code, software and the OS. Possibly. ● Performant. Depends. ● Scalable. Depends. ● Easily searchable. ● Alarms and alerting. Yes but crude.
  36. 36. Taking it further with  Logstash
  37. 37. What is Logstash? ● ● ● Tool to collect, filter and output log messages. Built in web interface or richer web interface project called Kibana available. Full information at http://logstash.net/ and Kibana demo at http://demo.logstash.net/
  38. 38. Installing Logstash ● ● Current release is 1.3.3 and can be downloaded from here. Run from cli, use supervisord or an init.d/upstart script (cookbook entry on how to do this at http://cookbook.logstash.net/).
  39. 39. Inputs, filters and outputs Inputs – AMQP/RabbitMQ – Syslog – Varnishlog Outputs – Statsd – XMPP – AMQP/RabbitMQ – Nagios – Graphite Filters – Anonymize – Grok – Geoip – Mutate
  40. 40. Logstash config ● ● ● When starting specify the path to a config file for Logstash to use. Three main sections: input, filter and output. Each section may have multiple instances of each type.
  41. 41. Sample configuration file input { file { path => "/var/log/apache2/*access.log" type => "apache" } } filter { if [type] == "apache" { grok { pattern => "%{COMBINEDAPACHELOG}" } } } output { redis { host => "10.0.0.5" data_type => "list" key => "logstash" } } ● See http://michael.bouvy.net/blog/en/2013/11/19/collect-visualize-your-logs-logstash-elasticsearch-redis-kibana/
  42. 42. Where does this get us? ● ● Centralised. Yes. Accepts messages from application code, software and the OS. Yes. ● Performant. Yes. ● Scalable. Yes. ● Easily searchable. Possibly. ● Alarms and alerting. Yes.
  43. 43. Introducing Graylog2
  44. 44. What is Graylog2? ● ● ● ● Log storage and search application. Can accept thousands of messages per second and store terabytes of data. Web interface for searching and analytics. Built in alerting and metrics.
  45. 45. Installing Graylog2 ● Components: – – Graylog2 server – ● MongoDb – ● Elasticsearch Graylog2 web interface Full info on installing at http://support.torch.sh/help/kb Live demo at http://public-graylog2.taulia.com/login
  46. 46. Getting log messages into  Graylog2 ● Can accept log messages in 3 ways: – – Syslog via UDP or TCP. – ● Graylog Extended Log Format (GELF) via UDP . AMQP. Multiple Graylog2 server instances can be run in parallel.
  47. 47. Graylog2 web interface ● ● Main view shows recent log messages and graphs of recent message numbers. Single message can be clicked on to view all details for it. ● Dashboard views. ● Full search functionality. ● Analytics dashboard and metrics.
  48. 48. Web interface view
  49. 49. Details of an individual  message
  50. 50. Dashboard view
  51. 51. Searches and streams ● ● ● Web interface allows fine grained searching by different fields. Frequently used searches can be saved as streams. Streams can be marked as favourites by users and can be viewed as dashboards.
  52. 52. Stream alarms ● ● Alarms can be sent for a stream with user defined sensitivity. Plugins for sending alarms include: – – PagerDuty – HipChat – Twilio SMS – ● Email Jabber/XMPP You can also write your own
  53. 53. Where does this get to? ● ● Centralised. Yes. Accepts messages from application code, software and the OS. Yes. ● Performant. Yes. ● Scalable. Yes. ● Easily searchable. Yes. ● Alarms and alerting. Yes.
  54. 54. Thanks for listening ● Contact me: – – ● jeremycook0@gmail.com @JCook21 Questions?
  55. 55. Putting it all together A few possible implementations.

Editor's Notes

  • Of all the things you would come to a conference like this to hear about...
  • Crisscott.com seems to be Scott Mattocks.
    Logging
    Unit Testing
    Configuration
    Isolates features
    Documented
    You can't optimise what you can't measure...
  • How many people monitor log files regularly?
    How many only look at them during a major crisis?
  • Many log files generated by many applications/pieces of software.
    Last time want to be digging through this is in a crisis.
  • Mention that I can't tell you how to do this.
    This talk will introduce some tools that can get you to this point.
    Combination of tools will get you to a pro-active log monitoring solution.
    Also mention that for each tool I'm talking about there are many alternatives...
    Mention closed source alternatives.
    Mention that this is being used in production at MRX.
  • Of course this will be different for everyone!
  • Also mention that it's specifically for logging errors, not informational or debug messages.
    Difficult to format messages.
    Destinations: file or email.
    Define log levels in RFC 5425
  • Mention that there are many logging libraries but Monolog has seemed to have gained the most traction.
    Describe what PSR-3 is.
  • PPI takes pieces of Zend 2, Sf2 and Doctrine2 and mashes them!
    Silex allows you to register a Monolog provider.
  • Channel equates to facility in Syslog.
    Makes it easy to use different loggers for different parts/functionality in an app.
  • The handlers constructor accepts the minimum log level that the handler should accept. Defaults differently depending on handler.
    Handlers can be shared between multiple loggers.
    Needs care when not bubbling! Add more specific handlers later.
  • Rotating File Handler: Creates one file per day but meant as a quick + dirty solution.
    Mail handlers include native mail and Swiftmail handlers.
    Pushover handler sends mobile notifications through the Pushover API.
    HipChatHandler send notification to a HipChat chat room (Rafael Dohms wrote it)
    FirePHP and ChromePHP write to FireBug or Chrome consoles. DEV ONLY!!
  • Use Handler::setFormatter() method to set the formatter for a handler.
  • Mention that logging a message accepts up to two arguments:
    The message (string) and an array of context.
  • Mention that handlers added last are called first.
  • Mention that this takes away some of the repetition of adding context to each log message.
    IntrospectionProcessor: Adds the line/file/class/method from which the log call originated.
    WebProcessor: Adds the current request URI, request method and client IP to a log record.
    MemoryUsageProcessor: Adds the current memory usage to a log record.
    MemoryPeakUsageProcessor: Adds the peak memory usage to a log record.
    ProcessIdProcessor: Adds the process id to a log record.
    UidProcessor: Adds a unique identifier to a log record.
  • Problems often caused by the intersection of different pieces of software.
  • Mention that you can often replace the default syslog daemon in an OS.
  • Mention that not going into all features of Rsyslog, just focusing on remote logging.
    Suggest 'man rsyslog' or 'man rsyslog.conf'.
    Also mention that can use something like Rsyslog or IPTables to filter remote loggers.
  • Note this should be added to main rsyslog config file or a file that's included in it.
    This is for UDP forwarding. TCP would use @@.
  • Mention that normally you would need just one of these.
    Also that the corresponding port needs to be opened in the server config.
    This would only load the handler for the remote logs. Still needs to be processed with other directives.
  • Note that if all you want is to centralise all of your logs this could be the solution...
  • Mention that Logstash is written in Java.
    34 inputs, has 28 filters and 47 different outputs.
  • Varnishlog – input from Varnishes memory log.
    Anonymize – anonymise fields using a consistent hash.
    Grok – regex library for parsing log messages and processing matches.
    Geoip – add geo data to ip addresses in log messages.
    Mutate – General mutations (rename, remove, replace, modify) to fields.
  • Of course this will be different for everyone!
  • Discuss advantages and disadvantages to using Graylog or Logstash.
  • Mention that graylog server and elasticsearch are written in Java, web interface is a Rails app.
    Mention login details for the demo – username admin or user, password graylog2.
  • Benefits of UDP – 'Fire and forget'.
    Drawbacks of UDP – Lack of acknowledgement of receiving messages.
    TCP can mitigate packet loss but slower.
    AMQP guarantees delivery, but more complex to setup and run.
    GELF is basically JSON. Ideal for sending messages from app code. Libraries in many languages, including a Monolog handler.
  • Of course this will be different for everyone!

×