Skip to content

algolia/owl

Repository files navigation

owl logo

Build Status

Features

  • Write (colored) logs on standard/error outputs
  • Also write logs as JSON lines on disk
  • Automatically send logged errors to Sentry
  • Send metrics to Wavefront via StatsD proxy
  • Send metrics to Wavefront via Wavefront proxy
  • Send messages to Slack channel(s)

Installation for your own project

Local development

git clone git@github.com:algolia/owl.git $GOPATH/src/github.com/algolia/owl

How to use?

Logging and monitoring should be easy to use in any project to avoid friction. With this goal in mind, owl was written in a way it should be really straightforward to use out of the box:

  1. Generate a minimal owl.Configuration object (either in your code Go code or unmarshal it from a JSON file.
  2. Pass it to the owl.Init function at the very beginning of your main and check its error return value to make sure the configuration was valid.
  3. Put a defer owl.Stop() right after to make sure everything will clean up by itself when your program will terminate.

To prevent you from logging/sending metrics from your code when testing without changing your own code or the owl configuration, some features are only enabled if specific OWL_USE_* environment variables are set.

Examples

Log messages and errors

owlConfig := owl.Configuration{
	AppName: "my-project",
	Logger: &owl.LoggerConfiguration{
		DisplayLogs: true,
		LogFilePath: "logs.json",
		UseColors:   true,
	},
}

err := owl.Init(owlConfig)
defer owl.Stop()
if err != nil {
	fmt.Println(err)
}

owl.Info("this is an info")
owl.Warning("this is a warning %s", "message")
err = owl.Error("this is an error")
owl.Info("this error is displayed on the standard output: %s", err)

Log errors to Sentry

To let you enable/disable Sentry easily without changing the configuration, the OWL_USE_SENTRY environment variable must to be set in order to send errors to Sentry.

You should find the Sentry DSN token here if you're logged to Sentry website with your own account.

owlConfig := owl.Configuration{
	AppName: "my-project",
	Logger: &owl.LoggerConfiguration{
		SentryDsn: "https://*****@sentry.io/124548",
	},
}

err := owl.Init(owlConfig)
defer owl.Stop()
if err != nil {
	fmt.Println(err)
}

owl.Info("this is an info message: it won't be logged to Sentry")
owl.Error("this is an error: it will be recorded by Sentry")

Log metrics to Wavefront

To let you enable/disable Metric logging easily without changing the configuration, the OWL_USE_METRIC environment variable must to be set in order to metrics to Wavefront.

The following code shows how to configure owl and send few metrics to Wavefront when your program runs, sending the metrics via the StatsD proxy running. If you'd like to run it on a Kubernetes cluster instead, replace the StatsdUrl configuration parameter with WavefrontUrl and set it with the Wavefront proxy URL instead (usually localhost:2878). In this case, you can use the exact same Metric* functions but also pass extra maps of tags with *WithTags function variants.

owlConfig := owl.Configuration{
	AppName: "my-project",
	Metric: &owl.MetricConfiguration{
		StatsdUrl: "127.0.0.1:8125",
	},
}

err := owl.Init(owlConfig)
defer owl.Stop()
if err != nil {
	fmt.Println(err)
}

t := owl.NewMetricTimer()

owl.MetricIncByOne("my_counter")
owl.MetricGauge("temperature", int64(30))

t.Stop("time_spent.main_function")

Send message to a Slack channel

To let you enable/disable Slack logging easily without changing the configuration, the OWL_USE_SLACK environment variable must to be set in order to send messages to Slack.

You should generate a Slack token from here if you're logged to Slack with your own account.

owlConfig := owl.Configuration{
	AppName: "my-project",
	Slack: &owl.SlackConfiguration{
		Token: "your-slack-token",
	},
}

err := owl.Init(owlConfig)
defer owl.Stop()
if err != nil {
	fmt.Println(err)
}

owl.Slack("general", "This message will be seen in the *general* Slack")
owl.Slack("specific-channel", "And you can still use %s %s", "format", "strings")

About

🦉 Owl is a lightweight Go package to log messages and metrics of all Go projects at Algolia

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published