Skip to content

Commit

Permalink
Force PHP CLI appname
Browse files Browse the repository at this point in the history
  • Loading branch information
danxexe committed Dec 22, 2017
1 parent e384727 commit 3abf5c9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions recipes/php-agent.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
#configure New Relic INI file and set the daemon related options (documented at /usr/lib/newrelic-php5/scripts/newrelic.ini.template)
#and restart the web server in order to pick up the new settings
[
"#{node['php']['ext_conf_dir']}",
"/etc/php/7.1/cli/conf.d",
"/etc/php5/cli/conf.d",
].each do |dir|
["#{node['php']['ext_conf_dir']}", "Pay"],
["/etc/php/7.1/cli/conf.d", "Pay PHP CLI"],
["/etc/php5/cli/conf.d", "Pay PHP CLI"],
].each do |dir, appname|
template "#{dir}/newrelic.ini" do
source "newrelic.ini.php.erb"
owner "root"
Expand All @@ -48,7 +48,7 @@
:license => license,
:logfile => node['newrelic']['application_monitoring']['logfile'],
:loglevel => node['newrelic']['application_monitoring']['loglevel'],
:appname => node['newrelic']['application_monitoring']['appname'],
:appname => node['newrelic']['application_monitoring']['appname'] || appname,
:daemon_logfile => node['newrelic']['application_monitoring']['daemon']['logfile'],
:daemon_loglevel => node['newrelic']['application_monitoring']['daemon']['loglevel'],
:daemon_port => node['newrelic']['application_monitoring']['daemon']['port'],
Expand Down

0 comments on commit 3abf5c9

Please sign in to comment.