arku31 / roadrunner-newrelic
Implementation of the communication between the golang and php sides of roadrunner
Installs: 10 531
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: >=7.4
- psr/http-message: >=1.0
Requires (Dev)
- nyholm/psr7: 1.4.*
- phpunit/phpunit: 9.*
This package is auto-updated.
Last update: 2025-03-21 16:21:39 UTC
README
Usage
$transactionDetail = new TransactionDetail();
$transactionDetail->setName('test');
$transactionDetail->setCustomData('key', 'value');
$segment = new Segment();
$segment->setName('testSegment');
$segment->setDuration('1');
$segment->setMeta(['testmetakey' => 'testmetavalue']);
$transactionDetail->addSegment($segment);
$enricher = new EnrichResponse(new TransactionDetailTransformer());
$response = $enricher->enrich($response, $transactionDetail);
Note: Duration tracking is not available atm due to restriction of the newrelic golang library.
Transaction can be marked as ignored with
$transactionDetail->ignoreTransaction();
In this case, roadrunner will not send this transaction to newrelic. This is useful f.e. for some health
endpoints
License: MIT
See https://github.com/arku31/newrelic-roadrunner-sample for example