ezyt/atatus

Wrapper for Atatus

Maintainers

Package info

github.com/Ezyt/atatus

pkg:composer/ezyt/atatus

Statistics

Installs: 781

Dependents: 1

Suggesters: 0

Stars: 1

Open Issues: 0

1.0.2 2020-12-09 04:56 UTC

This package is auto-updated.

Last update: 2026-03-09 17:32:05 UTC


README

For license information check the LICENSE-file.

Requirements

Works with atatus agent

Installation

php composer.phar require --prefer-dist ezyt/atatus

or add

"ezyt/atatus": "*"

to the require section of your composer.json.

Example

    $atatus = new \Ezyt\Atatus\Service();
    if ($atatus->isLoaded()) {
        $atatus->endTransaction();
        $atatus->beginTransaction();
        $atatus->setTransactionName('/requested_uri');
    }
    //...
    $atatus->endTransaction();