2017 © Pedro Peláez
 

symfony-bundle logger-bundle

A symfony bundle to log messages from external applications over a REST API

image

aboutcoders/logger-bundle

A symfony bundle to log messages from external applications over a REST API

  • Sunday, July 22, 2018
  • by aboutcoders
  • Repository
  • 3 Watchers
  • 3 Stars
  • 702 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 19 % Grown

The README.md

AbcLoggerBundle

A symfony bundle that provides a REST-API to log messages from external client applications., (*1)

Build Status: Build Status, (*2)

Installation

Follow the installation instructions of the required third party bundles: * SensioFrameworkExtraBundle * NelmioApiDocBundle * FOSRestBundle, (*3)

Add the AbcLoggerBundle to your composer.json file, (*4)

{
    "require": {
        "aboutcoders/logger-bundle": "~1.0"
    }
}

Include the bundle in the AppKernel.php class, (*5)

public function registerBundles()
{
    $bundles = array(
        // ...
        new Abc\Bundle\LoggerBundle\AbcLoggerBundle(),
    );

    return $bundles;
}

Import the routing files, (*6)

abc-rest-logger:
    type: rest
    resource: "@AbcLoggerBundle/Resources/config/routing/rest.yml"
    prefix: /api

Configuration

All you need to do is define the names of the applications which are allowed to log and configure the Monolog logging channel to use for each of them. Please refer to the offical symfony documentation on how-to define custom channels or log to different files., (*7)

abc_logger:
    applications:
        my_application:
            channel: my_channel

Usage

With the above configuration example you can now post log entries to the following url: http://localhost/api/log/my_application, (*8)

The request body must contain the following parameters:, (*9)

  • level: The log level [emergency|alert|critical|error|warning|notice|info|debug]
  • message: The log message
  • context: Optional, an array of context data as defined by Monolog

Please refer to the API documentation that can be generated with the NelmioApiDocBundle to get more detailed information about the API method., (*10)

The Versions

22/07 2018

dev-master

9999999-dev http://aboutcoders.com

A symfony bundle to log messages from external applications over a REST API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Hannes Schulz

logger log rest bundle client

22/07 2018

1.2.0

1.2.0.0 http://aboutcoders.com

A symfony bundle to log messages from external applications over a REST API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Hannes Schulz

logger log rest bundle client

22/07 2016

1.1.0

1.1.0.0 http://aboutcoders.com

A symfony bundle to log messages from external applications over a REST API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Hannes Schulz

logger log rest bundle client

02/05 2016

1.0.0

1.0.0.0 http://aboutcoders.com

A symfony bundle to log messages from external applications over a REST API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Hannes Schulz

logger log rest bundle client