compaa 0.0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +8 -0
- data/.travis.yml +8 -0
- data/Gemfile +3 -0
- data/Guardfile +14 -0
- data/LICENSE.txt +22 -0
- data/README.md +32 -0
- data/Rakefile +18 -0
- data/app.rb +9 -0
- data/bin/compaa +65 -0
- data/compaa.gemspec +37 -0
- data/config.ru +6 -0
- data/features/compaa.feature +38 -0
- data/features/step_definitions/compaa_steps.rb +51 -0
- data/features/support/env.rb +29 -0
- data/features/support/file_helpers.rb +23 -0
- data/features/support/matchers.rb +13 -0
- data/fixtures/sample_generated.png +0 -0
- data/fixtures/sample_generated.png_difference.gif +0 -0
- data/fixtures/sample_reference.png +0 -0
- data/lib/compaa.rb +3 -0
- data/lib/compaa/difference_image.rb +37 -0
- data/lib/compaa/generated_image.rb +36 -0
- data/lib/compaa/version.rb +3 -0
- data/log/newrelic_agent.log +416 -0
- data/spec/difference_image_spec.rb +56 -0
- data/spec/generated_image_spec.rb +68 -0
- data/spec/spec_helper.rb +6 -0
- data/views/index.haml +86 -0
- metadata +232 -0
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'fileutils'
|
2
|
+
|
3
|
+
module Compaa
|
4
|
+
class GeneratedImage < Struct.new(:path)
|
5
|
+
attr_writer :file_manager
|
6
|
+
|
7
|
+
def self.all
|
8
|
+
Dir.glob(File.join %w[artifacts screenshots_generated_this_run ** *.png]).map { |path|
|
9
|
+
new path
|
10
|
+
}
|
11
|
+
end
|
12
|
+
|
13
|
+
def create_reference_image
|
14
|
+
copy_and_create_directory reference_path
|
15
|
+
end
|
16
|
+
|
17
|
+
def has_reference_image?
|
18
|
+
File.exists? reference_path
|
19
|
+
end
|
20
|
+
|
21
|
+
def reference_path
|
22
|
+
path.gsub 'screenshots_generated_this_run', 'reference_screenshots'
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def copy_and_create_directory dest
|
28
|
+
file_manager.mkdir_p File.dirname dest
|
29
|
+
file_manager.cp path, dest
|
30
|
+
end
|
31
|
+
|
32
|
+
def file_manager
|
33
|
+
@file_manager ||= FileUtils
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,416 @@
|
|
1
|
+
# Logfile created on 2012-12-14 10:32:32 +0000 by logger.rb/31641
|
2
|
+
[12/14/12 10:32:32 +0000 ubuntu (4893)] INFO : Dispatcher: thin
|
3
|
+
[12/14/12 10:32:32 +0000 ubuntu (4893)] INFO : Application: development
|
4
|
+
[12/14/12 10:32:32 +0000 ubuntu (4893)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
5
|
+
[12/14/12 10:32:32 +0000 ubuntu (4893)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 4893
|
6
|
+
[12/14/12 10:32:32 +0000 ubuntu (4893)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
7
|
+
[12/14/12 10:33:39 +0000 ubuntu (4982)] INFO : Dispatcher: thin
|
8
|
+
[12/14/12 10:33:39 +0000 ubuntu (4982)] INFO : Application: development
|
9
|
+
[12/14/12 10:33:39 +0000 ubuntu (4982)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
10
|
+
[12/14/12 10:33:39 +0000 ubuntu (4982)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 4982
|
11
|
+
[12/14/12 10:33:39 +0000 ubuntu (4982)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
12
|
+
[12/14/12 10:35:01 +0000 ubuntu (5070)] INFO : Dispatcher: thin
|
13
|
+
[12/14/12 10:35:01 +0000 ubuntu (5070)] INFO : Application: development
|
14
|
+
[12/14/12 10:35:01 +0000 ubuntu (5070)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
15
|
+
[12/14/12 10:35:01 +0000 ubuntu (5070)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5070
|
16
|
+
[12/14/12 10:35:01 +0000 ubuntu (5070)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
17
|
+
[12/14/12 10:56:42 +0000 ubuntu (5338)] INFO : Dispatcher: thin
|
18
|
+
[12/14/12 10:56:42 +0000 ubuntu (5338)] INFO : Application: development
|
19
|
+
[12/14/12 10:56:42 +0000 ubuntu (5338)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
20
|
+
[12/14/12 10:56:42 +0000 ubuntu (5338)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5338
|
21
|
+
[12/14/12 10:56:42 +0000 ubuntu (5338)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
22
|
+
[12/14/12 10:57:27 +0000 ubuntu (5434)] INFO : Dispatcher: thin
|
23
|
+
[12/14/12 10:57:27 +0000 ubuntu (5434)] INFO : Application: development
|
24
|
+
[12/14/12 10:57:27 +0000 ubuntu (5434)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
25
|
+
[12/14/12 10:57:27 +0000 ubuntu (5434)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5434
|
26
|
+
[12/14/12 10:57:27 +0000 ubuntu (5434)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
27
|
+
[12/14/12 11:41:30 +0000 ubuntu (5993)] INFO : Dispatcher: thin
|
28
|
+
[12/14/12 11:41:30 +0000 ubuntu (5993)] INFO : Application: development
|
29
|
+
[12/14/12 11:41:30 +0000 ubuntu (5993)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
30
|
+
[12/14/12 11:41:30 +0000 ubuntu (5993)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5993
|
31
|
+
[12/14/12 11:41:30 +0000 ubuntu (5993)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
32
|
+
[12/14/12 11:44:00 +0000 ubuntu (6111)] INFO : Dispatcher: thin
|
33
|
+
[12/14/12 11:44:00 +0000 ubuntu (6111)] INFO : Application: development
|
34
|
+
[12/14/12 11:44:00 +0000 ubuntu (6111)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
35
|
+
[12/14/12 11:44:00 +0000 ubuntu (6111)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6111
|
36
|
+
[12/14/12 11:44:00 +0000 ubuntu (6111)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
37
|
+
[12/14/12 11:45:14 +0000 ubuntu (6429)] INFO : Dispatcher: thin
|
38
|
+
[12/14/12 11:45:14 +0000 ubuntu (6429)] INFO : Application: development
|
39
|
+
[12/14/12 11:45:14 +0000 ubuntu (6429)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
40
|
+
[12/14/12 11:45:14 +0000 ubuntu (6429)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6429
|
41
|
+
[12/14/12 11:45:14 +0000 ubuntu (6429)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
42
|
+
[12/14/12 11:52:10 +0000 ubuntu (6569)] INFO : Dispatcher: thin
|
43
|
+
[12/14/12 11:52:10 +0000 ubuntu (6569)] INFO : Application: development
|
44
|
+
[12/14/12 11:52:10 +0000 ubuntu (6569)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
45
|
+
[12/14/12 11:52:10 +0000 ubuntu (6569)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6569
|
46
|
+
[12/14/12 11:52:10 +0000 ubuntu (6569)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
47
|
+
[12/14/12 11:56:06 +0000 ubuntu (6672)] INFO : Dispatcher: thin
|
48
|
+
[12/14/12 11:56:06 +0000 ubuntu (6672)] INFO : Application: development
|
49
|
+
[12/14/12 11:56:06 +0000 ubuntu (6672)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
50
|
+
[12/14/12 11:56:06 +0000 ubuntu (6672)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6672
|
51
|
+
[12/14/12 11:56:06 +0000 ubuntu (6672)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
52
|
+
[12/14/12 11:56:33 +0000 ubuntu (6772)] INFO : Dispatcher: thin
|
53
|
+
[12/14/12 11:56:33 +0000 ubuntu (6772)] INFO : Application: development
|
54
|
+
[12/14/12 11:56:33 +0000 ubuntu (6772)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
55
|
+
[12/14/12 11:56:33 +0000 ubuntu (6772)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6772
|
56
|
+
[12/14/12 11:56:33 +0000 ubuntu (6772)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
57
|
+
[12/14/12 11:57:24 +0000 ubuntu (6870)] INFO : Dispatcher: thin
|
58
|
+
[12/14/12 11:57:24 +0000 ubuntu (6870)] INFO : Application: development
|
59
|
+
[12/14/12 11:57:24 +0000 ubuntu (6870)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
60
|
+
[12/14/12 11:57:24 +0000 ubuntu (6870)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6870
|
61
|
+
[12/14/12 11:57:24 +0000 ubuntu (6870)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
62
|
+
[12/14/12 14:31:43 +0000 ubuntu (8164)] INFO : Dispatcher: thin
|
63
|
+
[12/14/12 14:31:43 +0000 ubuntu (8164)] INFO : Application: development
|
64
|
+
[12/14/12 14:31:43 +0000 ubuntu (8164)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
65
|
+
[12/14/12 14:31:43 +0000 ubuntu (8164)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 8164
|
66
|
+
[12/14/12 14:31:43 +0000 ubuntu (8164)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
67
|
+
[12/14/12 14:32:30 +0000 ubuntu (8248)] INFO : Dispatcher: thin
|
68
|
+
[12/14/12 14:32:30 +0000 ubuntu (8248)] INFO : Application: development
|
69
|
+
[12/14/12 14:32:30 +0000 ubuntu (8248)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
70
|
+
[12/14/12 14:32:30 +0000 ubuntu (8248)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 8248
|
71
|
+
[12/14/12 14:32:30 +0000 ubuntu (8248)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
72
|
+
[12/14/12 15:03:12 +0000 ubuntu (9680)] INFO : Dispatcher: thin
|
73
|
+
[12/14/12 15:03:12 +0000 ubuntu (9680)] INFO : Application: development
|
74
|
+
[12/14/12 15:03:12 +0000 ubuntu (9680)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
75
|
+
[12/14/12 15:03:12 +0000 ubuntu (9680)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 9680
|
76
|
+
[12/14/12 15:03:12 +0000 ubuntu (9680)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
77
|
+
[12/14/12 15:05:10 +0000 ubuntu (9787)] INFO : Dispatcher: thin
|
78
|
+
[12/14/12 15:05:10 +0000 ubuntu (9787)] INFO : Application: development
|
79
|
+
[12/14/12 15:05:10 +0000 ubuntu (9787)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
80
|
+
[12/14/12 15:05:10 +0000 ubuntu (9787)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 9787
|
81
|
+
[12/14/12 15:05:10 +0000 ubuntu (9787)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
82
|
+
[12/14/12 15:07:46 +0000 ubuntu (9882)] INFO : Dispatcher: thin
|
83
|
+
[12/14/12 15:07:46 +0000 ubuntu (9882)] INFO : Application: development
|
84
|
+
[12/14/12 15:07:46 +0000 ubuntu (9882)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
85
|
+
[12/14/12 15:07:46 +0000 ubuntu (9882)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 9882
|
86
|
+
[12/14/12 15:07:46 +0000 ubuntu (9882)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
87
|
+
[12/14/12 15:12:41 +0000 ubuntu (10008)] INFO : Dispatcher: thin
|
88
|
+
[12/14/12 15:12:41 +0000 ubuntu (10008)] INFO : Application: development
|
89
|
+
[12/14/12 15:12:41 +0000 ubuntu (10008)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
90
|
+
[12/14/12 15:12:41 +0000 ubuntu (10008)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 10008
|
91
|
+
[12/14/12 15:12:41 +0000 ubuntu (10008)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
92
|
+
[12/14/12 15:17:48 +0000 ubuntu (10304)] INFO : Dispatcher: thin
|
93
|
+
[12/14/12 15:17:48 +0000 ubuntu (10304)] INFO : Application: development
|
94
|
+
[12/14/12 15:17:48 +0000 ubuntu (10304)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
95
|
+
[12/14/12 15:17:48 +0000 ubuntu (10304)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 10304
|
96
|
+
[12/14/12 15:17:48 +0000 ubuntu (10304)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
97
|
+
[12/14/12 15:20:55 +0000 ubuntu (10416)] INFO : Dispatcher: thin
|
98
|
+
[12/14/12 15:20:55 +0000 ubuntu (10416)] INFO : Application: development
|
99
|
+
[12/14/12 15:20:55 +0000 ubuntu (10416)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
100
|
+
[12/14/12 15:20:55 +0000 ubuntu (10416)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 10416
|
101
|
+
[12/14/12 15:20:55 +0000 ubuntu (10416)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
102
|
+
[12/14/12 15:21:52 +0000 ubuntu (10525)] INFO : Dispatcher: thin
|
103
|
+
[12/14/12 15:21:52 +0000 ubuntu (10525)] INFO : Application: development
|
104
|
+
[12/14/12 15:21:52 +0000 ubuntu (10525)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
105
|
+
[12/14/12 15:21:52 +0000 ubuntu (10525)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 10525
|
106
|
+
[12/14/12 15:21:52 +0000 ubuntu (10525)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
107
|
+
[12/14/12 15:26:06 +0000 ubuntu (10642)] INFO : Dispatcher: thin
|
108
|
+
[12/14/12 15:26:06 +0000 ubuntu (10642)] INFO : Application: development
|
109
|
+
[12/14/12 15:26:06 +0000 ubuntu (10642)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
110
|
+
[12/14/12 15:26:06 +0000 ubuntu (10642)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 10642
|
111
|
+
[12/14/12 15:26:06 +0000 ubuntu (10642)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
112
|
+
[12/14/12 15:33:31 +0000 ubuntu (10878)] INFO : Dispatcher: thin
|
113
|
+
[12/14/12 15:33:31 +0000 ubuntu (10878)] INFO : Application: development
|
114
|
+
[12/14/12 15:33:31 +0000 ubuntu (10878)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
115
|
+
[12/14/12 15:33:31 +0000 ubuntu (10878)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 10878
|
116
|
+
[12/14/12 15:33:31 +0000 ubuntu (10878)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
117
|
+
[12/14/12 15:39:37 +0000 ubuntu (11030)] INFO : Dispatcher: thin
|
118
|
+
[12/14/12 15:39:37 +0000 ubuntu (11030)] INFO : Application: development
|
119
|
+
[12/14/12 15:39:37 +0000 ubuntu (11030)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
120
|
+
[12/14/12 15:39:37 +0000 ubuntu (11030)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 11030
|
121
|
+
[12/14/12 15:39:37 +0000 ubuntu (11030)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
122
|
+
[12/14/12 15:58:08 +0000 ubuntu (11347)] INFO : Dispatcher: thin
|
123
|
+
[12/14/12 15:58:08 +0000 ubuntu (11347)] INFO : Application: development
|
124
|
+
[12/14/12 15:58:08 +0000 ubuntu (11347)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
125
|
+
[12/14/12 15:58:08 +0000 ubuntu (11347)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 11347
|
126
|
+
[12/14/12 15:58:08 +0000 ubuntu (11347)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
127
|
+
[12/14/12 15:59:57 +0000 ubuntu (11452)] INFO : Dispatcher: thin
|
128
|
+
[12/14/12 15:59:57 +0000 ubuntu (11452)] INFO : Application: development
|
129
|
+
[12/14/12 15:59:57 +0000 ubuntu (11452)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
130
|
+
[12/14/12 15:59:57 +0000 ubuntu (11452)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 11452
|
131
|
+
[12/14/12 15:59:57 +0000 ubuntu (11452)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
132
|
+
[12/14/12 16:20:33 +0000 ubuntu (12023)] INFO : Dispatcher: thin
|
133
|
+
[12/14/12 16:20:33 +0000 ubuntu (12023)] INFO : Application: development
|
134
|
+
[12/14/12 16:20:33 +0000 ubuntu (12023)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
135
|
+
[12/14/12 16:20:33 +0000 ubuntu (12023)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12023
|
136
|
+
[12/14/12 16:20:33 +0000 ubuntu (12023)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
137
|
+
[12/14/12 16:23:57 +0000 ubuntu (12132)] INFO : Dispatcher: thin
|
138
|
+
[12/14/12 16:23:57 +0000 ubuntu (12132)] INFO : Application: development
|
139
|
+
[12/14/12 16:23:57 +0000 ubuntu (12132)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
140
|
+
[12/14/12 16:23:57 +0000 ubuntu (12132)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12132
|
141
|
+
[12/14/12 16:23:57 +0000 ubuntu (12132)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
142
|
+
[12/14/12 16:26:58 +0000 ubuntu (12278)] INFO : Dispatcher: thin
|
143
|
+
[12/14/12 16:26:58 +0000 ubuntu (12278)] INFO : Application: development
|
144
|
+
[12/14/12 16:26:58 +0000 ubuntu (12278)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
145
|
+
[12/14/12 16:26:58 +0000 ubuntu (12278)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12278
|
146
|
+
[12/14/12 16:26:58 +0000 ubuntu (12278)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
147
|
+
[12/14/12 16:36:20 +0000 ubuntu (12431)] INFO : Dispatcher: thin
|
148
|
+
[12/14/12 16:36:20 +0000 ubuntu (12431)] INFO : Application: development
|
149
|
+
[12/14/12 16:36:20 +0000 ubuntu (12431)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
150
|
+
[12/14/12 16:36:20 +0000 ubuntu (12431)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12431
|
151
|
+
[12/14/12 16:36:20 +0000 ubuntu (12431)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
152
|
+
[12/14/12 16:37:22 +0000 ubuntu (12519)] INFO : Dispatcher: thin
|
153
|
+
[12/14/12 16:37:22 +0000 ubuntu (12519)] INFO : Application: development
|
154
|
+
[12/14/12 16:37:22 +0000 ubuntu (12519)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
155
|
+
[12/14/12 16:37:22 +0000 ubuntu (12519)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12519
|
156
|
+
[12/14/12 16:37:22 +0000 ubuntu (12519)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
157
|
+
[12/14/12 16:41:29 +0000 ubuntu (12636)] INFO : Dispatcher: thin
|
158
|
+
[12/14/12 16:41:29 +0000 ubuntu (12636)] INFO : Application: development
|
159
|
+
[12/14/12 16:41:29 +0000 ubuntu (12636)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
160
|
+
[12/14/12 16:41:29 +0000 ubuntu (12636)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12636
|
161
|
+
[12/14/12 16:41:29 +0000 ubuntu (12636)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
162
|
+
[12/14/12 16:44:31 +0000 ubuntu (12749)] INFO : Dispatcher: thin
|
163
|
+
[12/14/12 16:44:31 +0000 ubuntu (12749)] INFO : Application: development
|
164
|
+
[12/14/12 16:44:31 +0000 ubuntu (12749)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
165
|
+
[12/14/12 16:44:31 +0000 ubuntu (12749)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12749
|
166
|
+
[12/14/12 16:44:31 +0000 ubuntu (12749)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
167
|
+
[12/14/12 16:49:25 +0000 ubuntu (12877)] INFO : Dispatcher: thin
|
168
|
+
[12/14/12 16:49:25 +0000 ubuntu (12877)] INFO : Application: development
|
169
|
+
[12/14/12 16:49:25 +0000 ubuntu (12877)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
170
|
+
[12/14/12 16:49:25 +0000 ubuntu (12877)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12877
|
171
|
+
[12/14/12 16:49:25 +0000 ubuntu (12877)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
172
|
+
[12/14/12 16:51:58 +0000 ubuntu (12978)] INFO : Dispatcher: thin
|
173
|
+
[12/14/12 16:51:58 +0000 ubuntu (12978)] INFO : Application: development
|
174
|
+
[12/14/12 16:51:58 +0000 ubuntu (12978)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
175
|
+
[12/14/12 16:51:58 +0000 ubuntu (12978)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 12978
|
176
|
+
[12/14/12 16:51:58 +0000 ubuntu (12978)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
177
|
+
[12/14/12 16:56:22 +0000 ubuntu (13127)] INFO : Dispatcher: thin
|
178
|
+
[12/14/12 16:56:22 +0000 ubuntu (13127)] INFO : Application: development
|
179
|
+
[12/14/12 16:56:22 +0000 ubuntu (13127)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
180
|
+
[12/14/12 16:56:22 +0000 ubuntu (13127)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 13127
|
181
|
+
[12/14/12 16:56:22 +0000 ubuntu (13127)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
182
|
+
[12/14/12 16:56:57 +0000 ubuntu (13227)] INFO : Dispatcher: thin
|
183
|
+
[12/14/12 16:56:57 +0000 ubuntu (13227)] INFO : Application: development
|
184
|
+
[12/14/12 16:56:57 +0000 ubuntu (13227)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
185
|
+
[12/14/12 16:56:57 +0000 ubuntu (13227)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 13227
|
186
|
+
[12/14/12 16:56:57 +0000 ubuntu (13227)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
187
|
+
[12/14/12 17:00:15 +0000 ubuntu (13351)] INFO : Dispatcher: thin
|
188
|
+
[12/14/12 17:00:15 +0000 ubuntu (13351)] INFO : Application: development
|
189
|
+
[12/14/12 17:00:15 +0000 ubuntu (13351)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
190
|
+
[12/14/12 17:00:15 +0000 ubuntu (13351)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 13351
|
191
|
+
[12/14/12 17:00:15 +0000 ubuntu (13351)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
192
|
+
[12/14/12 17:00:55 +0000 ubuntu (13437)] INFO : Dispatcher: thin
|
193
|
+
[12/14/12 17:00:55 +0000 ubuntu (13437)] INFO : Application: development
|
194
|
+
[12/14/12 17:00:55 +0000 ubuntu (13437)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
195
|
+
[12/14/12 17:00:55 +0000 ubuntu (13437)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 13437
|
196
|
+
[12/14/12 17:00:55 +0000 ubuntu (13437)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
197
|
+
[12/14/12 17:08:48 +0000 ubuntu (13585)] INFO : Dispatcher: thin
|
198
|
+
[12/14/12 17:08:48 +0000 ubuntu (13585)] INFO : Application: development
|
199
|
+
[12/14/12 17:08:48 +0000 ubuntu (13585)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
200
|
+
[12/14/12 17:08:48 +0000 ubuntu (13585)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 13585
|
201
|
+
[12/14/12 17:08:48 +0000 ubuntu (13585)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
202
|
+
[12/15/12 17:46:59 +0000 ubuntu (4519)] INFO : Dispatcher: thin
|
203
|
+
[12/15/12 17:46:59 +0000 ubuntu (4519)] INFO : Application: development
|
204
|
+
[12/15/12 17:46:59 +0000 ubuntu (4519)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
205
|
+
[12/15/12 17:46:59 +0000 ubuntu (4519)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 4519
|
206
|
+
[12/15/12 17:46:59 +0000 ubuntu (4519)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
207
|
+
[12/15/12 17:47:41 +0000 ubuntu (4592)] INFO : Dispatcher: thin
|
208
|
+
[12/15/12 17:47:41 +0000 ubuntu (4592)] INFO : Application: development
|
209
|
+
[12/15/12 17:47:41 +0000 ubuntu (4592)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
210
|
+
[12/15/12 17:47:41 +0000 ubuntu (4592)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 4592
|
211
|
+
[12/15/12 17:47:41 +0000 ubuntu (4592)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
212
|
+
[12/15/12 18:16:53 +0000 ubuntu (5005)] INFO : Dispatcher: thin
|
213
|
+
[12/15/12 18:16:53 +0000 ubuntu (5005)] INFO : Application: development
|
214
|
+
[12/15/12 18:16:53 +0000 ubuntu (5005)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
215
|
+
[12/15/12 18:16:53 +0000 ubuntu (5005)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5005
|
216
|
+
[12/15/12 18:16:53 +0000 ubuntu (5005)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
217
|
+
[12/15/12 18:19:24 +0000 ubuntu (5397)] INFO : Dispatcher: thin
|
218
|
+
[12/15/12 18:19:24 +0000 ubuntu (5397)] INFO : Application: development
|
219
|
+
[12/15/12 18:19:24 +0000 ubuntu (5397)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
220
|
+
[12/15/12 18:19:24 +0000 ubuntu (5397)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5397
|
221
|
+
[12/15/12 18:19:24 +0000 ubuntu (5397)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
222
|
+
[12/15/12 18:27:04 +0000 ubuntu (5484)] INFO : Dispatcher: thin
|
223
|
+
[12/15/12 18:27:04 +0000 ubuntu (5484)] INFO : Application: development
|
224
|
+
[12/15/12 18:27:04 +0000 ubuntu (5484)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
225
|
+
[12/15/12 18:27:04 +0000 ubuntu (5484)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5484
|
226
|
+
[12/15/12 18:27:04 +0000 ubuntu (5484)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
227
|
+
[12/15/12 18:33:11 +0000 ubuntu (5572)] INFO : Dispatcher: thin
|
228
|
+
[12/15/12 18:33:11 +0000 ubuntu (5572)] INFO : Application: development
|
229
|
+
[12/15/12 18:33:11 +0000 ubuntu (5572)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
230
|
+
[12/15/12 18:33:11 +0000 ubuntu (5572)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5572
|
231
|
+
[12/15/12 18:33:11 +0000 ubuntu (5572)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
232
|
+
[12/15/12 18:38:50 +0000 ubuntu (5729)] INFO : Dispatcher: thin
|
233
|
+
[12/15/12 18:38:50 +0000 ubuntu (5729)] INFO : Application: development
|
234
|
+
[12/15/12 18:38:50 +0000 ubuntu (5729)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
235
|
+
[12/15/12 18:38:50 +0000 ubuntu (5729)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5729
|
236
|
+
[12/15/12 18:38:50 +0000 ubuntu (5729)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
237
|
+
[12/15/12 18:49:07 +0000 ubuntu (5845)] INFO : Dispatcher: thin
|
238
|
+
[12/15/12 18:49:07 +0000 ubuntu (5845)] INFO : Application: development
|
239
|
+
[12/15/12 18:49:07 +0000 ubuntu (5845)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
240
|
+
[12/15/12 18:49:07 +0000 ubuntu (5845)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5845
|
241
|
+
[12/15/12 18:49:07 +0000 ubuntu (5845)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
242
|
+
[12/15/12 18:54:23 +0000 ubuntu (5926)] INFO : Dispatcher: thin
|
243
|
+
[12/15/12 18:54:23 +0000 ubuntu (5926)] INFO : Application: development
|
244
|
+
[12/15/12 18:54:23 +0000 ubuntu (5926)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
245
|
+
[12/15/12 18:54:23 +0000 ubuntu (5926)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 5926
|
246
|
+
[12/15/12 18:54:23 +0000 ubuntu (5926)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
247
|
+
[12/15/12 18:57:05 +0000 ubuntu (6003)] INFO : Dispatcher: thin
|
248
|
+
[12/15/12 18:57:05 +0000 ubuntu (6003)] INFO : Application: development
|
249
|
+
[12/15/12 18:57:05 +0000 ubuntu (6003)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
250
|
+
[12/15/12 18:57:05 +0000 ubuntu (6003)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6003
|
251
|
+
[12/15/12 18:57:05 +0000 ubuntu (6003)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
252
|
+
[12/15/12 19:03:07 +0000 ubuntu (6083)] INFO : Dispatcher: thin
|
253
|
+
[12/15/12 19:03:07 +0000 ubuntu (6083)] INFO : Application: development
|
254
|
+
[12/15/12 19:03:07 +0000 ubuntu (6083)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
255
|
+
[12/15/12 19:03:07 +0000 ubuntu (6083)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6083
|
256
|
+
[12/15/12 19:03:07 +0000 ubuntu (6083)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
257
|
+
[12/15/12 19:03:49 +0000 ubuntu (6156)] INFO : Dispatcher: thin
|
258
|
+
[12/15/12 19:03:49 +0000 ubuntu (6156)] INFO : Application: development
|
259
|
+
[12/15/12 19:03:49 +0000 ubuntu (6156)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
260
|
+
[12/15/12 19:03:49 +0000 ubuntu (6156)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6156
|
261
|
+
[12/15/12 19:03:49 +0000 ubuntu (6156)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
262
|
+
[12/15/12 19:07:16 +0000 ubuntu (6230)] INFO : Dispatcher: thin
|
263
|
+
[12/15/12 19:07:16 +0000 ubuntu (6230)] INFO : Application: development
|
264
|
+
[12/15/12 19:07:16 +0000 ubuntu (6230)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
265
|
+
[12/15/12 19:07:16 +0000 ubuntu (6230)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6230
|
266
|
+
[12/15/12 19:07:16 +0000 ubuntu (6230)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
267
|
+
[12/15/12 19:12:52 +0000 ubuntu (6322)] INFO : Dispatcher: thin
|
268
|
+
[12/15/12 19:12:52 +0000 ubuntu (6322)] INFO : Application: development
|
269
|
+
[12/15/12 19:12:52 +0000 ubuntu (6322)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
270
|
+
[12/15/12 19:12:52 +0000 ubuntu (6322)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6322
|
271
|
+
[12/15/12 19:12:52 +0000 ubuntu (6322)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
272
|
+
[12/15/12 19:40:56 +0000 ubuntu (6428)] INFO : Dispatcher: thin
|
273
|
+
[12/15/12 19:40:56 +0000 ubuntu (6428)] INFO : Application: development
|
274
|
+
[12/15/12 19:40:56 +0000 ubuntu (6428)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
275
|
+
[12/15/12 19:40:56 +0000 ubuntu (6428)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 6428
|
276
|
+
[12/15/12 19:40:56 +0000 ubuntu (6428)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
277
|
+
[12/17/12 09:30:55 +0000 ubuntu (15560)] INFO : Dispatcher: thin
|
278
|
+
[12/17/12 09:30:55 +0000 ubuntu (15560)] INFO : Application: development
|
279
|
+
[12/17/12 09:30:55 +0000 ubuntu (15560)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
280
|
+
[12/17/12 09:30:55 +0000 ubuntu (15560)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 15560
|
281
|
+
[12/17/12 09:30:55 +0000 ubuntu (15560)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
282
|
+
[12/17/12 10:26:40 +0000 ubuntu (16139)] INFO : Dispatcher: thin
|
283
|
+
[12/17/12 10:26:40 +0000 ubuntu (16139)] INFO : Application: development
|
284
|
+
[12/17/12 10:26:40 +0000 ubuntu (16139)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
285
|
+
[12/17/12 10:26:40 +0000 ubuntu (16139)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 16139
|
286
|
+
[12/17/12 10:26:40 +0000 ubuntu (16139)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
287
|
+
[12/17/12 10:29:43 +0000 ubuntu (16244)] INFO : Dispatcher: thin
|
288
|
+
[12/17/12 10:29:43 +0000 ubuntu (16244)] INFO : Application: development
|
289
|
+
[12/17/12 10:29:43 +0000 ubuntu (16244)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
290
|
+
[12/17/12 10:29:43 +0000 ubuntu (16244)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 16244
|
291
|
+
[12/17/12 10:29:43 +0000 ubuntu (16244)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
292
|
+
[12/17/12 10:38:59 +0000 ubuntu (16396)] INFO : Dispatcher: thin
|
293
|
+
[12/17/12 10:38:59 +0000 ubuntu (16396)] INFO : Application: development
|
294
|
+
[12/17/12 10:38:59 +0000 ubuntu (16396)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
295
|
+
[12/17/12 10:38:59 +0000 ubuntu (16396)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 16396
|
296
|
+
[12/17/12 10:38:59 +0000 ubuntu (16396)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
297
|
+
[12/17/12 10:44:11 +0000 ubuntu (16571)] INFO : Dispatcher: thin
|
298
|
+
[12/17/12 10:44:11 +0000 ubuntu (16571)] INFO : Application: development
|
299
|
+
[12/17/12 10:44:11 +0000 ubuntu (16571)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
300
|
+
[12/17/12 10:44:11 +0000 ubuntu (16571)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 16571
|
301
|
+
[12/17/12 10:44:11 +0000 ubuntu (16571)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
302
|
+
[12/17/12 10:46:20 +0000 ubuntu (16676)] INFO : Dispatcher: thin
|
303
|
+
[12/17/12 10:46:20 +0000 ubuntu (16676)] INFO : Application: development
|
304
|
+
[12/17/12 10:46:20 +0000 ubuntu (16676)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
305
|
+
[12/17/12 10:46:20 +0000 ubuntu (16676)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 16676
|
306
|
+
[12/17/12 10:46:20 +0000 ubuntu (16676)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
307
|
+
[12/17/12 10:48:02 +0000 ubuntu (16780)] INFO : Dispatcher: thin
|
308
|
+
[12/17/12 10:48:02 +0000 ubuntu (16780)] INFO : Application: development
|
309
|
+
[12/17/12 10:48:02 +0000 ubuntu (16780)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
310
|
+
[12/17/12 10:48:02 +0000 ubuntu (16780)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 16780
|
311
|
+
[12/17/12 10:48:02 +0000 ubuntu (16780)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
312
|
+
[12/17/12 10:52:03 +0000 ubuntu (16894)] INFO : Dispatcher: thin
|
313
|
+
[12/17/12 10:52:03 +0000 ubuntu (16894)] INFO : Application: development
|
314
|
+
[12/17/12 10:52:03 +0000 ubuntu (16894)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
315
|
+
[12/17/12 10:52:03 +0000 ubuntu (16894)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 16894
|
316
|
+
[12/17/12 10:52:03 +0000 ubuntu (16894)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
317
|
+
[12/17/12 10:52:59 +0000 ubuntu (16989)] INFO : Dispatcher: thin
|
318
|
+
[12/17/12 10:52:59 +0000 ubuntu (16989)] INFO : Application: development
|
319
|
+
[12/17/12 10:52:59 +0000 ubuntu (16989)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
320
|
+
[12/17/12 10:52:59 +0000 ubuntu (16989)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 16989
|
321
|
+
[12/17/12 10:52:59 +0000 ubuntu (16989)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
322
|
+
[12/17/12 11:04:44 +0000 ubuntu (17192)] INFO : Dispatcher: thin
|
323
|
+
[12/17/12 11:04:44 +0000 ubuntu (17192)] INFO : Application: development
|
324
|
+
[12/17/12 11:04:44 +0000 ubuntu (17192)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
325
|
+
[12/17/12 11:04:44 +0000 ubuntu (17192)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 17192
|
326
|
+
[12/17/12 11:04:44 +0000 ubuntu (17192)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
327
|
+
[12/17/12 11:07:22 +0000 ubuntu (17293)] INFO : Dispatcher: thin
|
328
|
+
[12/17/12 11:07:22 +0000 ubuntu (17293)] INFO : Application: development
|
329
|
+
[12/17/12 11:07:22 +0000 ubuntu (17293)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
330
|
+
[12/17/12 11:07:22 +0000 ubuntu (17293)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 17293
|
331
|
+
[12/17/12 11:07:22 +0000 ubuntu (17293)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
332
|
+
[12/17/12 11:27:32 +0000 ubuntu (17536)] INFO : Dispatcher: thin
|
333
|
+
[12/17/12 11:27:32 +0000 ubuntu (17536)] INFO : Application: development
|
334
|
+
[12/17/12 11:27:32 +0000 ubuntu (17536)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
335
|
+
[12/17/12 11:27:32 +0000 ubuntu (17536)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 17536
|
336
|
+
[12/17/12 11:27:32 +0000 ubuntu (17536)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
337
|
+
[12/17/12 11:34:38 +0000 ubuntu (17731)] INFO : Dispatcher: thin
|
338
|
+
[12/17/12 11:34:38 +0000 ubuntu (17731)] INFO : Application: development
|
339
|
+
[12/17/12 11:34:38 +0000 ubuntu (17731)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
340
|
+
[12/17/12 11:34:38 +0000 ubuntu (17731)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 17731
|
341
|
+
[12/17/12 11:34:38 +0000 ubuntu (17731)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
342
|
+
[12/17/12 11:37:22 +0000 ubuntu (17835)] INFO : Dispatcher: thin
|
343
|
+
[12/17/12 11:37:22 +0000 ubuntu (17835)] INFO : Application: development
|
344
|
+
[12/17/12 11:37:22 +0000 ubuntu (17835)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
345
|
+
[12/17/12 11:37:22 +0000 ubuntu (17835)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 17835
|
346
|
+
[12/17/12 11:37:22 +0000 ubuntu (17835)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
347
|
+
[12/17/12 11:44:06 +0000 ubuntu (18030)] INFO : Dispatcher: thin
|
348
|
+
[12/17/12 11:44:06 +0000 ubuntu (18030)] INFO : Application: development
|
349
|
+
[12/17/12 11:44:06 +0000 ubuntu (18030)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
350
|
+
[12/17/12 11:44:06 +0000 ubuntu (18030)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 18030
|
351
|
+
[12/17/12 11:44:06 +0000 ubuntu (18030)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
352
|
+
[12/17/12 11:59:14 +0000 ubuntu (18233)] INFO : Dispatcher: thin
|
353
|
+
[12/17/12 11:59:14 +0000 ubuntu (18233)] INFO : Application: development
|
354
|
+
[12/17/12 11:59:14 +0000 ubuntu (18233)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
355
|
+
[12/17/12 11:59:14 +0000 ubuntu (18233)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 18233
|
356
|
+
[12/17/12 11:59:14 +0000 ubuntu (18233)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
357
|
+
[12/17/12 12:13:05 +0000 ubuntu (18472)] INFO : Dispatcher: thin
|
358
|
+
[12/17/12 12:13:05 +0000 ubuntu (18472)] INFO : Application: development
|
359
|
+
[12/17/12 12:13:05 +0000 ubuntu (18472)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
360
|
+
[12/17/12 12:13:05 +0000 ubuntu (18472)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 18472
|
361
|
+
[12/17/12 12:13:05 +0000 ubuntu (18472)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
362
|
+
[12/17/12 12:45:22 +0000 ubuntu (18918)] INFO : Dispatcher: thin
|
363
|
+
[12/17/12 12:45:22 +0000 ubuntu (18918)] INFO : Application: development
|
364
|
+
[12/17/12 12:45:22 +0000 ubuntu (18918)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
365
|
+
[12/17/12 12:45:22 +0000 ubuntu (18918)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 18918
|
366
|
+
[12/17/12 12:45:22 +0000 ubuntu (18918)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
367
|
+
[12/17/12 12:46:56 +0000 ubuntu (19068)] INFO : Dispatcher: thin
|
368
|
+
[12/17/12 12:46:56 +0000 ubuntu (19068)] INFO : Application: development
|
369
|
+
[12/17/12 12:46:56 +0000 ubuntu (19068)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
370
|
+
[12/17/12 12:46:56 +0000 ubuntu (19068)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 19068
|
371
|
+
[12/17/12 12:46:56 +0000 ubuntu (19068)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
372
|
+
[12/17/12 12:51:38 +0000 ubuntu (19504)] INFO : Dispatcher: thin
|
373
|
+
[12/17/12 12:51:38 +0000 ubuntu (19504)] INFO : Application: development
|
374
|
+
[12/17/12 12:51:38 +0000 ubuntu (19504)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
375
|
+
[12/17/12 12:51:38 +0000 ubuntu (19504)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 19504
|
376
|
+
[12/17/12 12:51:38 +0000 ubuntu (19504)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
377
|
+
[12/17/12 12:55:18 +0000 ubuntu (19619)] INFO : Dispatcher: thin
|
378
|
+
[12/17/12 12:55:18 +0000 ubuntu (19619)] INFO : Application: development
|
379
|
+
[12/17/12 12:55:18 +0000 ubuntu (19619)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
380
|
+
[12/17/12 12:55:18 +0000 ubuntu (19619)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 19619
|
381
|
+
[12/17/12 12:55:18 +0000 ubuntu (19619)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
382
|
+
[12/17/12 12:56:10 +0000 ubuntu (19705)] INFO : Dispatcher: thin
|
383
|
+
[12/17/12 12:56:10 +0000 ubuntu (19705)] INFO : Application: development
|
384
|
+
[12/17/12 12:56:10 +0000 ubuntu (19705)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
385
|
+
[12/17/12 12:56:10 +0000 ubuntu (19705)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 19705
|
386
|
+
[12/17/12 12:56:10 +0000 ubuntu (19705)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
387
|
+
[12/17/12 12:57:05 +0000 ubuntu (19791)] INFO : Dispatcher: thin
|
388
|
+
[12/17/12 12:57:05 +0000 ubuntu (19791)] INFO : Application: development
|
389
|
+
[12/17/12 12:57:05 +0000 ubuntu (19791)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
390
|
+
[12/17/12 12:57:05 +0000 ubuntu (19791)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 19791
|
391
|
+
[12/17/12 12:57:05 +0000 ubuntu (19791)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
392
|
+
[12/17/12 12:57:52 +0000 ubuntu (19883)] INFO : Dispatcher: thin
|
393
|
+
[12/17/12 12:57:52 +0000 ubuntu (19883)] INFO : Application: development
|
394
|
+
[12/17/12 12:57:52 +0000 ubuntu (19883)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
395
|
+
[12/17/12 12:57:52 +0000 ubuntu (19883)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 19883
|
396
|
+
[12/17/12 12:57:52 +0000 ubuntu (19883)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
397
|
+
[12/17/12 13:07:16 +0000 ubuntu (20030)] INFO : Dispatcher: thin
|
398
|
+
[12/17/12 13:07:16 +0000 ubuntu (20030)] INFO : Application: development
|
399
|
+
[12/17/12 13:07:16 +0000 ubuntu (20030)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
400
|
+
[12/17/12 13:07:16 +0000 ubuntu (20030)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 20030
|
401
|
+
[12/17/12 13:07:16 +0000 ubuntu (20030)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
402
|
+
[12/17/12 13:07:53 +0000 ubuntu (20116)] INFO : Dispatcher: thin
|
403
|
+
[12/17/12 13:07:53 +0000 ubuntu (20116)] INFO : Application: development
|
404
|
+
[12/17/12 13:07:53 +0000 ubuntu (20116)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
405
|
+
[12/17/12 13:07:53 +0000 ubuntu (20116)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 20116
|
406
|
+
[12/17/12 13:07:53 +0000 ubuntu (20116)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
407
|
+
[12/17/12 13:08:42 +0000 ubuntu (20203)] INFO : Dispatcher: thin
|
408
|
+
[12/17/12 13:08:42 +0000 ubuntu (20203)] INFO : Application: development
|
409
|
+
[12/17/12 13:08:42 +0000 ubuntu (20203)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
410
|
+
[12/17/12 13:08:42 +0000 ubuntu (20203)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 20203
|
411
|
+
[12/17/12 13:08:42 +0000 ubuntu (20203)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|
412
|
+
[12/17/12 13:09:10 +0000 ubuntu (20286)] INFO : Dispatcher: thin
|
413
|
+
[12/17/12 13:09:10 +0000 ubuntu (20286)] INFO : Application: development
|
414
|
+
[12/17/12 13:09:10 +0000 ubuntu (20286)] ERROR : No license key found. Please edit your newrelic.yml file and insert your license key.
|
415
|
+
[12/17/12 13:09:10 +0000 ubuntu (20286)] INFO : New Relic Ruby Agent 3.4.2.1 Initialized: pid = 20286
|
416
|
+
[12/17/12 13:09:10 +0000 ubuntu (20286)] INFO : Agent Log at /home/user/workspace/compaa/log/newrelic_agent.log
|