ezyt/atatus

Wrapper for Atatus

Maintainers

Details

github.com/Ezyt/atatus

Source

Issues

Installs: 781

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ezyt/atatus

1.0.2 2020-12-09 04:56 UTC

This package is auto-updated.

Last update: 2025-09-09 16:30:34 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();