You can install Palzin Monitor package using composer:
composer require palzin-apm/palzin-php
Be sure to include the composer autoload in your application. The first step is to create an instance of the Configuration class using the Ingestion Key.
<?php
require __DIR__ . '/../vendor/autoload.php';
use Palzin\Palzin;
use Palzin\Configuration;
// Create a configuration instance.
$configuration = new Configuration('YOUR_INGESTION_KEY');
// Pass the configuration to the Palzin Monitor constructor.
$palzin = new Palzin($configuration);
Get a new Ingestion Key by signing up for Palzin Monitor (https://www.palzin.app/register) and creating a new application.
It takes less than a minutes to setup your first monitoring.