├── .codeclimate.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── HttpSegment.php ├── HttpTrait.php ├── RemoteSegment.php ├── Segment.php ├── SqlSegment.php ├── Submission │ ├── DaemonSegmentSubmitter.php │ └── SegmentSubmitter.php └── Trace.php └── tests ├── AbstractDaemonSegmentSubmitterTest.php ├── HostnameDaemonSegmentSubmitterTest.php ├── HttpSegmentTest.php ├── Ipv4DaemonSegmentSubmitterTest.php ├── Ipv6DaemonSegmentSubmitterTest.php ├── RemoteSegmentTest.php ├── SegmentTest.php ├── SqlSegmentTest.php └── TraceTest.php /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/HttpSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/src/HttpSegment.php -------------------------------------------------------------------------------- /src/HttpTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/src/HttpTrait.php -------------------------------------------------------------------------------- /src/RemoteSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/src/RemoteSegment.php -------------------------------------------------------------------------------- /src/Segment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/src/Segment.php -------------------------------------------------------------------------------- /src/SqlSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/src/SqlSegment.php -------------------------------------------------------------------------------- /src/Submission/DaemonSegmentSubmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/src/Submission/DaemonSegmentSubmitter.php -------------------------------------------------------------------------------- /src/Submission/SegmentSubmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/src/Submission/SegmentSubmitter.php -------------------------------------------------------------------------------- /src/Trace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/src/Trace.php -------------------------------------------------------------------------------- /tests/AbstractDaemonSegmentSubmitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/AbstractDaemonSegmentSubmitterTest.php -------------------------------------------------------------------------------- /tests/HostnameDaemonSegmentSubmitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/HostnameDaemonSegmentSubmitterTest.php -------------------------------------------------------------------------------- /tests/HttpSegmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/HttpSegmentTest.php -------------------------------------------------------------------------------- /tests/Ipv4DaemonSegmentSubmitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/Ipv4DaemonSegmentSubmitterTest.php -------------------------------------------------------------------------------- /tests/Ipv6DaemonSegmentSubmitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/Ipv6DaemonSegmentSubmitterTest.php -------------------------------------------------------------------------------- /tests/RemoteSegmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/RemoteSegmentTest.php -------------------------------------------------------------------------------- /tests/SegmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/SegmentTest.php -------------------------------------------------------------------------------- /tests/SqlSegmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/SqlSegmentTest.php -------------------------------------------------------------------------------- /tests/TraceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkerrigan/php-xray/HEAD/tests/TraceTest.php --------------------------------------------------------------------------------