You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the New Relic dashboard I see this "Service Name" name in the Application list, but, all transaction are tracked under default name from the newrelic.ini file.
My application is the console one and unfortunately, I see there only main command: bin/console nothing deeper which command exactly is run, because bin/console has arguments, of course, and it is multiprocessing application.
I'm new with New Relic and do not know how it works in details. Any help or hint here is welcome.
The text was updated successfully, but these errors were encountered:
Thank for the report, I personnaly use the .ini file to configure my application_name, BUT, I didn't see why this parameter wouldn't work (neither does the transaction naming).
Could you, please, help us by "debugging your application by adding "logs" or "dumps" in the NewRelicInteractor file?
public function setApplicationName(string $name, string $license = null, bool $xmit = false): bool
{
dump($name);
return newrelic_set_appname($name, $license, $xmit);
}
public function setTransactionName(string $name): bool
{
dump($name);
return newrelic_name_transaction($name);
}
And check if those 2 methods are called with the right parameters.
I also notice that you open issue in Monolog's repository, did you configured the Monolog Handler with an other application name ? Or are you sending logs with a context containing the keys transaction_name or appname?
My configuration is like:
In the New Relic dashboard I see this "Service Name" name in the Application list, but, all transaction are tracked under default name from the newrelic.ini file.
My application is the console one and unfortunately, I see there only main command:
bin/console
nothing deeper which command exactly is run, becausebin/console
has arguments, of course, and it is multiprocessing application.I'm new with New Relic and do not know how it works in details. Any help or hint here is welcome.
The text was updated successfully, but these errors were encountered: