File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.9.4 (release date: 2016-01-11)
2
+
3
+ * Bugfix for removing multiple newrelic instances
4
+ * Bugfix for newrelic install fails gracefully
5
+
1
6
## 0.9.3 (release date: 2016-01-10)
2
7
3
8
* Removed latest version of nodejs installation
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ All services are defined and managed using the phusion/baseimage methodology. Lo
13
13
* Nginx
14
14
* PHP-FPM (5.6)
15
15
* NTPD
16
+ * New Relic APM
16
17
17
18
### Default Settings
18
19
The container sets up a www root folder in the following location:
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- set -e
2
+
3
+ # Fail on error
4
+ # set -e
3
5
4
6
echo " Enabling APM metrics for ${NR_APP_NAME} "
5
7
newrelic-install install
6
8
7
9
# Update the application name
8
10
sed -i " s/newrelic.appname = \" PHP Application\" /newrelic.appname = \" ${NR_APP_NAME} \" /" /etc/php5/fpm/conf.d/newrelic.ini
11
+
12
+ # Remove extra new relic config file (causes log spamming)
13
+ rm /etc/php5/cli/conf.d/newrelic.ini
You can’t perform that action at this time.
0 commit comments