Skip to content
forked from phdata/pulse

phData Pulse application log aggregation and monitoring

License

Notifications You must be signed in to change notification settings

juskaiser/pulse

 
 

Repository files navigation

Travis Build Tag

logo.png

Hadoop log aggregation, alerting, and lifecycle management


Pulse

Table of Contents

Pulse Features

Log Aggregation and Search

  • Add log aggregation, search, and alerts to your Java, Scala, Bash, or Python programs and scripts

Alerting

  • Flexible alerting using the Pulse Alert Engine
  • Write alerts using the full solr query syntax. Example alerts:
    • There was an appliction Error in the last 5 minutes
    • My application has stopped logging messages
  • Email and web hook integrations

Log Lifecycle Management

  • Built in rotation of logs.
    • Keep logs for as long as you need them
    • Automatically rotate new log indexes after a configured time period
    • Easily search all logs

Dashboarding

  • Integration with existing dashboards for rich UIs.

Works with:

  • Banana
  • Hue Search
  • Arcadia Data

Hadoop Native

  • Pulse uses Solr for document indexing and search and can be deployed on your Hadoop cluster
  • Use existing Sentry roles to control access to log data

Cloudera Manager Integration

  • Simple deployment using CSDs and Parcels
  • Manage and monitor Pulse from within Cloudera Manager

Adding an application to Pulse

If a new application wants to use Pulse, a block should be created in the Collection Roller config.yml file and the Alert Engine config.yml file. See the Alert Engine readme and Collection Roller readme for more details.

Components

Collection Roller The collection roller is responsible for creating solr indexes for new applications in Pulse and deleting old or expired log collections.

Alert Engine The Alert Engine is a daemon process with a set of alertRules. Alert rules can be configured to notify developers and application users when an event happens.

See the Alerting Engine README for more details and configuration options.

Log Collector The Log Collector is an HTTP server that receives log messages as JSON and puts them into SOLR collections.

See the Log Collector README for more details and configuration options. Log Appender An HTTP log appender for log4j 1.x that will post json messages to the log collector.

See the Log Appender README for more details.

There are also log appenders for Bash and Python in the 'appenders' folder

Architecture Diagram

Arch diagram

Installation

Pulse can be installed as a Cloudera CSD (Custom Service Descriptor). See CSD and PARCEL READMEs for details.

Installing the CSD

  1. Download the latest CSD jar from http://downloads.phdata.io/cdh5/csd/
  2. Place the jar in your Cloudera Manager CSD directory, usually /opt/cloudera/csd
  3. Modify the ownership of the jar chown cloudera-scm:cloudera-scm /opt/cloudera/csd/pulse-<version>.jar
  4. Restart Cloudera Manager to install the jar

Installing the Parcel

  1. The parcel repo should be automatically added with the CSD. The url to add it manually: downloads.phdata.io/cdh5/parcels/
  2. Download, distribute, activate the parcel

Installing the service

Pulse can be installed through the "Add New Service" button for your cluster.

The wizard will ask you for:

  • smtp user: This will be the 'from' address for alerts
  • smtp password: This is only necessary if your smtp server uses authentication
  • smtp address: The hostname of your smtp server
  • smtp port: The port of your smtp server

Deploying config

Pulse has two configuration files, collection-roller.yml and alert-engine.yml

Both of these configs are deployed via safety valves. Alert Engine Example and Collection Roller Example

Place collection-roller.yml in Collection Roller Advanced Configuration Snippet (Safety Valve) for collection-roller.yml

Place the alert-engine.yml in Alert Engine Advanced Configuration Snippet (Safety Valve) for alert-engine.yml

Running the application manually on a cluster

Remove the .template suffix from these two files under the local directory.

  • cp env.sh.template env.sh
  • cp jaas.conf.template jaas.conf

Change the kerberos keyTab and principal in jaas.conf to your own (you need to create one if you don't have it already)

Run individual components:

$ local/run-collection-roller
$ local/run-log-collector
$ local/run-alert-engine

Running tests

Run all tests from the project root:

$ make test

Contributing

Sbt is used for building scala, and Make is added to simplify building tasks.

Makefile targets are run with make <target-name>, some target examples are like this:

  • dist: create a distribution (parcel and csd)
  • test: run all tests
  • package: create jars from source
  • install: install parcel and CSD. This is only valid on a node running Cloudera Manager and will install the csd/parcel to /opt/cloudera/csd and /opt/cloudera/parcel-repo. It will not distribute/activate the parcel or refresh/install the CSD in Cloudera Manager
  • run: run all components locally. This will run log collector, collection roller, and alert engine.

Before submitting a pull request, please make sure make test and make dist both pass successfully.

About

phData Pulse application log aggregation and monitoring

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Scala 63.5%
  • XSLT 10.8%
  • JavaScript 9.4%
  • Java 5.9%
  • Shell 4.7%
  • Makefile 1.7%
  • Other 4.0%