Skip to content

irfan-kurniawan-umn/yii2-elastic-apm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii2-elastic-apm

Elastic Agent for Yii2 Framework

Installation

Let install this module via composer

composer require irfankurniawan/yii2-elastic-apm

Configuration

'apm' => [
    'class' => 'ivoglent\yii2\apm\Module',
    'configs' => [
        'agent' => [
            'serverUrl' => env('APM_SERVER_URL'), // 'localhost:8200', // Host and port of APM server
            'name' => env('APM_SERVICE_NAME'), //'Service name', // Service name
            'token' => env('APM_TOKEN'), // Token
        ],
        'skipExceptions' => [
            // List of exceptions which you want to ignore
            // \yii\web\NotFoundHttpException::class,
            // \yii\web\UnauthorizedHttpException::class,
        ],
        'skipCommands' => [
            // List of command you dont want to track
            // 'rabbitmq/consume',
        ],
    ],
    'enabled' => env('APM_ENABLED') // true // or false,
],

To enable database monitoring, let config the DB command like :

'components' => [
    'db' => [
        'class' => 'yii\db\Connection',
        'dsn' => '',
        'username' => '',
        'password' => '',
        'charset' => 'utf8mb4',
        'commandClass' => APM_ENABLED ? 'ivoglent\yii2\apm\components\db\mysql\Command' : '\yii\db\Command',
    ]
]

NOTE Rememeber add apm module to bootstrap section:

'bootstrap' => ['log', 'apm'],

Transaction

This module will auto start new transaction after BEFORE_REQUEDT event. But you can manual start new transaction on Console application like consumer, etc. Below is the example to see apm transaction

try {
    $transactionId = Uuid::uuid4()->toString();
    $test1 = Yii::$app->getModule('apm')->getAgent()->startTransaction('testet nihhh abwueaue', 'consumer', 222222);
    $test2 = Yii::$app->getModule('apm')->getAgent()->setTransactionId($transactionId);
    $test3 = Yii::$app->getModule('apm')->getAgent()->stopTransaction();
    dd($test1,  $test3);

} catch (\Exception $throwable) {
    $test = Yii::$app->getModule('apm')->getAgent()->notifyException($throwable);
    dd($test);
}

Trace

Start new span

$span = Yii::$app->getModule('apm')->getAgent()->startTrace('Process::'.$reflect->getShortName(), 'process');

and stop :

Yii::$app->getModule('apm')->getAgent()->stopTrace($span->getId());

Error / exception notify

try {

} catch (\Exception $throwable) {
    Yii::$app->getModule('apm')->getAgent()->notifyException($throwable);
}

About

Elastic Agent for Yii2 Framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%