PHP code example of codeinternetapplications / monolog-stackdriver
1. Go to this page and download the library: Download codeinternetapplications/monolog-stackdriver 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');
codeinternetapplications / monolog-stackdriver example snippets
$context['stackdriver'] = [
];
define('GOOGLE_APPLICATION_CREDENTIALS', '/path/to/service-account-key-file.json');
define('GOOGLE_CLOUD_PROJECT', 'eg-my-project-id-148223');
use Monolog\Logger;
use CodeInternetApplications\MonologStackdriver\StackdriverHandler;
$projectId = 'eg-my-project-id-148223';
$loggingClientOptions = [
'keyFilePath' => '/path/to/service-account-key-file.json'
];
$stackdriverHandler = new StackdriverHandler(
$projectId,
$loggingClientOptions
);
$logger = new Logger('stackdriver', [$stackdriverHandler]);
$logger->info('New order', ['orderId' => 1001]);
$context = ['orderId' => 1001];
$context['stackdriver'] = [
'labels' => [
'action' => 'paid'
]
];
$logger->info('Order update', $context);
$context = ['orderId' => 1001];
$context['stackdriver'] = [
'labels' => [
'order' => 'draft'
],
'operation' => [
'id' => 'order-1001',
'first' => true,
'last' => false
]
];
$logger->info('Order update', $context);
$context['stackdriver'] = [
'labels' => [
'order' => 'paid'
],
'operation' => [
'id' => 'order-1001',
'first' => false,
'last' => false
]
];
$logger->info('Order update', $context);
$context['stackdriver'] = [
'labels' => [
'order' => 'fulfilled'
],
'operation' => [
'id' => 'order-1001',
'first' => false,
'last' => true
]
];
$logger->info('Order update', $context);