Skip to content

Commit 306c67f

Browse files
committed
Merge branch 'release/0.9.4'
2 parents 919a635 + 60ea54b commit 306c67f

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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+
16
## 0.9.3 (release date: 2016-01-10)
27

38
* Removed latest version of nodejs installation

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ All services are defined and managed using the phusion/baseimage methodology. Lo
1313
* Nginx
1414
* PHP-FPM (5.6)
1515
* NTPD
16+
* New Relic APM
1617

1718
### Default Settings
1819
The container sets up a www root folder in the following location:

build/newrelic.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
#!/usr/bin/env bash
2-
set -e
2+
3+
# Fail on error
4+
#set -e
35

46
echo "Enabling APM metrics for ${NR_APP_NAME}"
57
newrelic-install install
68

79
# Update the application name
810
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

0 commit comments

Comments
 (0)