All Projects → zhuravljov → yii2-logreader

zhuravljov / yii2-logreader

Licence: other
Yii2 Log Reader

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to yii2-logreader

Yii2 Slack Log
Pretty Slack log target for Yii 2
Stars: ✭ 24 (-22.58%)
Mutual labels:  yii2, log
Sgf
This is a Smart Game Foundation (Not Framework)
Stars: ✭ 122 (+293.55%)
Mutual labels:  module, log
yii2-queue-monitor
Yii2 Queue Analytics Module
Stars: ✭ 99 (+219.35%)
Mutual labels:  yii2, module
Yii2 Telegram Log
Telegram log target for Yii 2
Stars: ✭ 24 (-22.58%)
Mutual labels:  yii2, log
Yii2 Psr Log Target
Yii 2.0 log target that is able to write messages to PSR-3 compatible logger
Stars: ✭ 58 (+87.1%)
Mutual labels:  yii2, log
Yii2 Rest
Yii2 REST Client
Stars: ✭ 109 (+251.61%)
Mutual labels:  yii2, module
PoShLog
🔩 PoShLog is PowerShell cross-platform logging module. It allows you to log structured event data into console, file and much more places easily. It's built upon great C# logging library Serilog - https://serilog.net/
Stars: ✭ 108 (+248.39%)
Mutual labels:  module, log
Git-API
Gets info from github and transfers into json styled data
Stars: ✭ 18 (-41.94%)
Mutual labels:  module
yii2-time-down-counter
Widget for yii2, to start count down timer with a lot of options, This widget build dependence of timeDownCounter JS library
Stars: ✭ 15 (-51.61%)
Mutual labels:  yii2
ejabberd mod apns
An ejabberd module to send PUSH messages to iOS devices through APNS
Stars: ✭ 31 (+0%)
Mutual labels:  module
yii2-google-analytics
Google Analytics Universal tracking widget.
Stars: ✭ 14 (-54.84%)
Mutual labels:  yii2
FormatPx
Better Formatting in PowerShell
Stars: ✭ 63 (+103.23%)
Mutual labels:  module
pingcrm-yii2
Ping CRM on Yii 2 - A Yii 2 demo application to illustrate how Inertia.js works.
Stars: ✭ 39 (+25.81%)
Mutual labels:  yii2
polybar-dwm-module
A dwm module for polybar
Stars: ✭ 91 (+193.55%)
Mutual labels:  module
WatsonSyslogServer
C# Syslog Server
Stars: ✭ 18 (-41.94%)
Mutual labels:  log
archi cloudnative
Cloud Native Architectural Models using Archi. Contains models for CAAS, Cloud Native Applications, 12/15 Factor Applications with CI/CD/CS, monitoring and log management. Infrastructure components include Red Hat OpenShift, Red Hat Storage, Red Hat Ansible Tower, Red Hat Cloudforms, Red Hat Satellite, Red Hat JBoss Middleware.
Stars: ✭ 55 (+77.42%)
Mutual labels:  log
gdsmod
Godot Module Replayer
Stars: ✭ 32 (+3.23%)
Mutual labels:  module
java9-module-examples
a list of Java 9 module samples to dive into the modular world
Stars: ✭ 25 (-19.35%)
Mutual labels:  module
yii2-websocket
基于swoole的websocket
Stars: ✭ 31 (+0%)
Mutual labels:  yii2
Alter-Entity-Autocomplete
Drupal 8 module to alter Entity Autocomplete suggestion list.
Stars: ✭ 38 (+22.58%)
Mutual labels:  module

Yii2 Log Reader

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist zhuravljov/yii2-logreader "*"

or add

"zhuravljov/yii2-logreader": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply modify your application configuration as follows:

return [
    'bootstrap' => ['logreader'],
    'modules' => [
        'logreader' => [
            'class' => 'zhuravljov\yii\logreader\Module',
            'aliases' => [
                'Frontend Errors' => '@frontend/runtime/logs/app.log',
                'Backend Errors' => '@backend/runtime/logs/app.log',
                'Console Errors' => '@console/runtime/logs/app.log',
            ],
        ],
    ],
];

You can then access Log Reader using the following URL:

http://localhost/path/to/index.php?r=logreader

or if you have enabled pretty URLs, you may use the following URL:

http://localhost/path/to/logreader
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].