bilalbaraz/laravel-kibana is a Laravel package for this allows you to use your kibana api.
It currently has 0 GitHub stars and 8 downloads on Packagist (latest version v0.1.1).
Install it with composer require bilalbaraz/laravel-kibana.
Discover more Laravel packages by bilalbaraz
or browse all Laravel packages to compare alternatives.
Last updated
An easy way to use the official Kibana REST API in your Laravel applications.
Install the current version of the bilalbaraz/laravel-kibana package via composer:
composer require bilalbaraz/laravel-kibana
The package's service provider will automatically register its service provider.
Publish the configuration file:
php artisan vendor:publish --provider="Bilalbaraz\LaravelKibana\KibanaServiceProvider"
After you publish the configuration file as suggested above, you may configure Kibana by adding the following to your application's .env file (with appropriate values):
KIBANA_VERSION=7.6.2
KIBANA_HOST=127.0.0.1
KIBANA_PORT=5601
KIBANA_SECURITY_ENABLED=true
KIBANA_USERNAME=admin
KIBANA_PASSWORD=password
T.B.D.
Have a look at the documentation here.
./vendor/bin/phpunit tests
Contributions are welcome and will be fully credited.
We accept contributions via pull requests via Github.
composer install --dev in the root directory to install required testing packages./tests/ directory.vendor/bin/phpunit and make sure everything passes (new and old tests).master branch.laravel-kibana was written by Bilal Baraz and is released under the MIT License.