Atatus automatically detects the WordPress path as transaction name. If you would like to see the URI as transaction name, you can use the below snippet.

Please set the below code in the first line of wp-config.php file in WordPress root directory.

<?php
if (extension_loaded('atatus')) {
    $uri = preg_replace('~\?.*~', '', $_SERVER['REQUEST_URI']);
    atatus_set_transaction_name($uri);
}