PHP code example of geangontijo / monolog-opensearch-handler
1. Go to this page and download the library: Download geangontijo/monolog-opensearch-handler library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
geangontijo / monolog-opensearch-handler example snippets
$logger = new \Monolog\Logger('application');
$logger->pushHandler(new \GeanGontijo\MonologOpenSearchHandler\OpenSearchHandler(
\OpenSearch\ClientBuilder::create()->setHosts([
'http://localhost:9200'
])->build(),
'index_name',
));
$logger->info('Hello World');