skylight 0.5.0 → 0.5.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -2
- data/ext/libskylight.yml +4 -4
- data/lib/skylight/config.rb +3 -3
- data/lib/skylight/railtie.rb +0 -2
- data/lib/skylight/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c59f70c1556245efc3af0fd078ed0f64dc7a40e3
|
|
4
|
+
data.tar.gz: bdd4aa72b59a1d4daaea897333af8dbaf53f37d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69d0e17922d7f90dacfd18acea941f44a8f39b1120d3ef6ad941821ebdc7f7a3f43098322b737abebc12cdc68c181599e8d49eb3dd64478045fbb27c3df90fb2
|
|
7
|
+
data.tar.gz: 790ef037ec76e412c124c1c1deb21c04adbf783eb38af45a706e64192fdc8208d1bb78bbadf9f248ad88fc90b37c0ed0857b3dc0e3de0450cf4c05912289bfa5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
## 0.5.0 (December 4, 2014)
|
|
2
2
|
* [IMPROVEMENT] Automatically load configuration from ENV
|
|
3
|
-
* [BUGFIX] Fix Moped integration
|
|
4
3
|
* [FEATURE] Track object allocations per span
|
|
5
|
-
* [BUGFIX] Fix exit status in 1.9.2
|
|
6
4
|
* [IMPROVEMENT] Fix C warnings
|
|
7
5
|
|
|
6
|
+
## 0.4.3 (November 17, 2014)
|
|
7
|
+
|
|
8
|
+
* [BUGFIX] Fix Moped integration when queries include times
|
|
9
|
+
|
|
8
10
|
## 0.4.2 (November 12, 2014)
|
|
9
11
|
|
|
10
12
|
* [BUGFIX] Fix exit status on MRI 1.9.2
|
data/ext/libskylight.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
version: "0.5.0-
|
|
2
|
+
version: "0.5.0-fbaa3ed"
|
|
3
3
|
checksums:
|
|
4
|
-
x86-linux: "
|
|
5
|
-
x86_64-linux: "
|
|
6
|
-
x86_64-darwin: "
|
|
4
|
+
x86-linux: "926a77991c02dfb399de5bc08a39d989803f63eb4992183285e9e663df6e3c7b"
|
|
5
|
+
x86_64-linux: "d44821e2955758d84db1f50b2c2bd0025252f67ab3d42b57e241a8a3f492dbbc"
|
|
6
|
+
x86_64-darwin: "35ac0581f439ffb66a0563f74bce957cd6ec718143a21af9f82fb5e2c43bb80e"
|
data/lib/skylight/config.rb
CHANGED
|
@@ -277,16 +277,16 @@ module Skylight
|
|
|
277
277
|
|
|
278
278
|
if File.exist?(pidfile)
|
|
279
279
|
if !FileTest.writable?(pidfile)
|
|
280
|
-
raise "`#{pidfile}` not writable. Please set daemon.pidfile_path or daemon.sockdir_path in your config to a writable path
|
|
280
|
+
raise ConfigError, "File `#{pidfile}` not writable. Please set daemon.pidfile_path or daemon.sockdir_path in your config to a writable path"
|
|
281
281
|
end
|
|
282
282
|
else
|
|
283
283
|
if !FileTest.writable?(pidfile_root)
|
|
284
|
-
raise "`#{pidfile_root}` not writable. Please set daemon.pidfile_path or daemon.sockdir_path in your config to a writable path
|
|
284
|
+
raise ConfigError, "Directory `#{pidfile_root}` not writable. Please set daemon.pidfile_path or daemon.sockdir_path in your config to a writable path"
|
|
285
285
|
end
|
|
286
286
|
end
|
|
287
287
|
|
|
288
288
|
unless FileTest.writable?(sockdir_path)
|
|
289
|
-
raise "`#{sockdir_path}` not writable. Please set daemon.sockdir_path in your config to a writable path
|
|
289
|
+
raise ConfigError, "Directory `#{sockdir_path}` not writable. Please set daemon.sockdir_path in your config to a writable path"
|
|
290
290
|
end
|
|
291
291
|
end
|
|
292
292
|
|
data/lib/skylight/railtie.rb
CHANGED
|
@@ -31,8 +31,6 @@ module Skylight
|
|
|
31
31
|
else
|
|
32
32
|
Rails.logger.info "[SKYLIGHT] [#{Skylight::VERSION}] Unable to start"
|
|
33
33
|
end
|
|
34
|
-
else
|
|
35
|
-
Rails.logger.warn "[SKYLIGHT] [#{Skylight::VERSION}] No configuration found; disabling Skylight agent"
|
|
36
34
|
end
|
|
37
35
|
elsif Rails.env.development?
|
|
38
36
|
log_warning config, "[SKYLIGHT] [#{Skylight::VERSION}] Running Skylight in development mode. No data will be reported until you deploy your app.\n" \
|
data/lib/skylight/version.rb
CHANGED