Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rrcfesc/wrappergraylogzendlogger
Wrapper Graylog an Zend Logger over PSR 1.0.0
https://github.com/rrcfesc/wrappergraylogzendlogger
Last synced: about 2 months ago
JSON representation
Wrapper Graylog an Zend Logger over PSR 1.0.0
- Host: GitHub
- URL: https://github.com/rrcfesc/wrappergraylogzendlogger
- Owner: rrcfesc
- Created: 2017-09-27T16:43:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-25T06:29:03.000Z (almost 7 years ago)
- Last Synced: 2024-04-18T18:45:37.721Z (9 months ago)
- Language: PHP
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WrapperGrayLogZendLogger
[![Build Status](https://travis-ci.org/rrcfesc/WrapperGrayLogZendLogger.svg?branch=master)](https://travis-ci.org/rrcfesc/WrapperGrayLogZendLogger)
[![Coverage Status](https://coveralls.io/repos/github/rrcfesc/WrapperGrayLogZendLogger/badge.svg?branch=master)](https://coveralls.io/github/rrcfesc/WrapperGrayLogZendLogger?branch=master)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/rrcfesc/WrapperGrayLogZendLogger/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/rrcfesc/WrapperGrayLogZendLogger/?branch=master)
[![Dependency Status](https://www.versioneye.com/user/projects/59cc1ae46725bd1213879c40/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/59cc1ae46725bd1213879c40)## About
A php implementation to send log-files to a gelf compatible backend like [Graylog2](http://graylog2.org/).
This library conforms to the PSR standards in regards to structure ([4](http://www.php-fig.org/psr/psr-4/)),
coding-style ([1](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md),
[2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md))
and logging ([3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md)).Usage
-----### Recommended installation via composer:
Add gelf-php to `composer.json` either by running `composer require graylog2/gelf-php` or by defining it manually:
"require": {
// ...
"Rioxygen/Graylog": "~1.0"
// ...
}Reinstall dependencies: `composer install`
@author Ricardo Ruiz Cruz