Skip to content

pinpoint-apm/pinpoint-php-aop

Repository files navigation

Build LICENSE

Issues

https://github.com/pinpoint-apm/pinpoint-c-agent/labels/php-aop

Requirements

  • php 7.0 ~ php 8.3
  • ext-pinpoint_php: "^0.5.2" ( Guide 📑 )

How to use

1. Import from packagist

composer require pinpoint-apm/pinpoint-php-aop

2. Add pinpoint entry into your entry file(eg: index.php)

<?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';

Write your own plugins

Only for developers

Steps

  1. Write your own plugins(if needs). Here are some plugins template.
  1. 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;
  1. Extend DefaultRequestPlugin and implement joinedClassSet.

Examples:

Our test project

How it works

  • 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.

Supported libraries/framework

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

Data Chart Map

how it works

There are some examples into lib/pinpoint/test/Comparison/pinpoint/test

Needs Help/Issues

create an issue

Copyright

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.