Easily view and search Kohana log messages on a simple Bootstrap interface.
Copyright © 2014. Licensed under the MIT license.
https://github.com/siloor/kohana-logreader
Please, don't forget to star the repository if you like (and use) the plugin. This will let me know how many users it has and then how to proceed with further development :)
http://siloor.com/logreader/demo/?message=&date-from=2014-01-01
MODPATH
bootstrap
file Kohana::modules(array( 'kohana-logreader' => MODPATH.'kohana-logreader', // LogReader ));
http://your-app-root/logreader
On the Messages interface you can see the daily log messages by default.
Use filters to get what you want
You can change the following options
limit
(default: 40
) - Number of messages per pageauto_refresh_interval
(default: 5
) - The interval for auto refresh in secondsstore
(default: File
) - You can easily write your own store if yo use other log solution than the default one. There is an example Store called SQLExample to help you to create your own binding.route
(default: logreader
) - The route to the LogReader interface - http://your-app-root/logreader
static_route
(default: logreader/media
) - The route to the LogReader static files (it could be a remote url) - http://your-app-root/logreader/media
tester
(default: FALSE
) - Show log message tester buttonauthentication
(default: FALSE
) - Use HTTP Basic Authetication - Autheticate user by the users array in the config file