PHP code example of tiden / telemetry-php
1. Go to this page and download the library: Download tiden/telemetry-php 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/ */
tiden / telemetry-php example snippets
use Tiden\Sdk;
Sdk::init([
'dsn' => getenv('TIDEN_DSN'), // http://<publicKey>@<host:ingestPort>/<projectId>
'release' => '[email protected]',
'environment' => 'production',
// 'send_default_pii' => false, // default: scrub likely-PII before send
]);
// With captureGlobals (default), uncaught exceptions + fatals are reported
// automatically. Manual capture:
try {
risky();
} catch (\Throwable $e) {
Sdk::captureException($e);
}
Sdk::captureMessage('checkout completed', 'info');
Sdk::addBreadcrumb(new \Tiden\Breadcrumb('cache miss', category: 'cache'));
Sdk::configureScope(fn ($s) => $s->setTag('tenant', 'acme'));
bash
composer