https://github.com/pinpoint-apm/pinpoint-c-agent/labels/php-aop
- php 7.0 ~ php 8.3
- ext-pinpoint_php: "^0.5.2" ( Guide 📑 )
composer require pinpoint-apm/pinpoint-php-aop
<?php
require_once __DIR__."/../vendor/autoload.php";
// A writable path for caching AOP code, default is /tmp
// define('AOP_CACHE_DIR',__DIR__.'/../Cache/'); // optional
// API for register your own plugins eg:
define('PP_REQ_PLUGINS', Pinpoint\Plugins\DefaultRequestPlugin::class);
require_once __DIR__. '/../vendor/pinpoint-apm/pinpoint-php-aop/auto_pinpointed.php';
Only for developers
- Write your own plugins(if needs). Here are some plugins template.
- Use
AspectClassHandle
to combine target class with plugin class.
$classHandler = new AspectClassHandle(\yii\web\UrlManager::class);
$classHandler->addJoinPoint('parseRequest', \Pinpoint\Plugins\yii2\UrlRule::class);
$cls[] = $classHandler;
- Extend
DefaultRequestPlugin
and implementjoinedClassSet
.
Examples:
- For yii2, Yii2PerRequestPlugins example
- pinpoint-c-agent/SimplePHP
- pinpoint-c-agent/cachethq
- pinpoint-c-agent/flarum
- pinpoint-c-agent/php_phpmyadmin
- pinpoint-c-agent/php_wordpress
- Use
nikic/PHP-Parser
generating glue layer code - Use namespace replace to reuse plugins or hook build-in class/function
- Intercept php classloader to redirect origin class to new class
pinpoint-php-aop wrappers your class with an onBefore/onEnd/onException suite.
Libraries
Type | Name | Version |
---|---|---|
Built-in | curl | |
memcached | 3.2.0 |
|
mysqli | ||
pdo | ||
phpredis | 6.0.2 |
|
apcu | ||
User | guzzlehttp | 8.0.x-dev |
predis | 3.0 |
|
mongodb | v1.19.x |
Frameworks
Name | Version |
---|---|
Yii2 | |
wordpress | |
thinkphp8 | |
laravel |
There are some examples into lib/pinpoint/test/Comparison/pinpoint/test
Copyright 2024-present NAVER Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.