Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryandotsmith/lpxc
Fast & simple ruby client for Heroku's logplex.
https://github.com/ryandotsmith/lpxc
Last synced: 2 months ago
JSON representation
Fast & simple ruby client for Heroku's logplex.
- Host: GitHub
- URL: https://github.com/ryandotsmith/lpxc
- Owner: ryandotsmith
- Created: 2013-05-21T18:37:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-15T17:44:25.000Z (about 10 years ago)
- Last Synced: 2024-04-25T14:03:25.878Z (9 months ago)
- Language: Ruby
- Homepage:
- Size: 353 KB
- Stars: 1
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
#lpxc
The canonical repository for lpxc is now [the heroku fork](https://github.com/heroku/lpxc).
Lpxc is a fast & efficient client for sending log messages to Heroku's logplex. It uses batching and keep-alive connections to enable high-throughput with little overhead.
## Dependencies
All dependencies come from the standard library. The following version of Ruby are supported:* 1.9.3
* 2.0.0
* 2.1.0## Documentation
[Rdoc](http://rubydoc.info/github/ryandotsmith/lpxc/master/Lpxc)
## Usage
```bash
$ gem install lpxc
``````ruby
require 'lpxc'
lpxc = Lpxc.new
lpxc.puts("hello world", 't.123')
```## Runing Tests
[![Build Status](https://travis-ci.org/ryandotsmith/lpxc.png?branch=master)](https://travis-ci.org/ryandotsmith/lpxc)```bash
$ ruby test.rb
```