Elasticsearch log storage module based on mirocow/yii2-elasticsearch ¶
Docs are available in english and russian.
- Conclusion is easy to review and administer using Kibana
- The date format is provided in the form YYYY-MM-DD HH:mm:ss and must be UTC
Install ¶
$ composer require --prefer-dist mirocow/yii2-elasticsearch-log
Setup ¶
return [
'components' => [
'log' => [
'targets' => [
[
'class' => 'mirocow\elasticsearch\log\ElasticsearchTarget',
'levels' => ['error', 'warning'],
'index' => 'yii-log',
'type' => 'console',
],
],
],
],
];
Tutorial ¶
How we can use Discover, Visualization and Dashboard with cusom data
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.