Sha256: 961a5763daf67aa29931cefd721eb02c226fa1d8060437ef38974e7403751004

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

![Codeship Status for semlogr/semlogr](https://codeship.com/projects/9677cdd0-8768-0134-57f3-36c2ccf79a16/status?branch=master)

# Seq sink for Semlogr

This sink provides support for writing logs to [seq](https://getseq.net/), the sink uses [ruby-stud](https://github.com/jordansissel/ruby-stud) to provide batch flushing of events using the Seq HTTP API.

## Installation

To install:

    gem install semlogr-sinks-seq

Or if using bundler, add semlogr to your Gemfile:

    gem 'semlogr-sinks-seq'

then:

    bundle install

## Getting Started

Create an instance of the logger configuring the seq sink with your token.

```ruby
require 'semlogr'
require 'semlogr/sinks/seq'

Semlogr.logger = Semlogr.create_logger do |c|
  c.log_at :info

  c.write_to :seq, server_url: 'http://seq', api_key: '1234'
end

Semlogr.info('Customer {customer_id} did something interesting', customer_id: 1234)
```

## Development

After cloning the repository run `bundle install` to get up and running, to run the specs just run `rake spec`.

## Contributing

See anything broken or something you would like to improve? feel free to submit an issue or better yet a pull request!

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
semlogr-sinks-seq-0.1.1 README.md
semlogr-sinks-seq-0.1.0 README.md