appsignal 2.11.0.beta.5-java → 2.11.3-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.semaphore/semaphore.yml +197 -0
- data/CHANGELOG.md +18 -0
- data/README.md +16 -1
- data/Rakefile +11 -5
- data/build_matrix.yml +13 -0
- data/ext/agent.yml +17 -25
- data/ext/appsignal_extension.c +1 -1
- data/ext/base.rb +12 -9
- data/gemfiles/no_dependencies.gemfile +7 -0
- data/gemfiles/resque-2.gemfile +0 -1
- data/gemfiles/webmachine.gemfile +1 -0
- data/lib/appsignal/cli/diagnose/utils.rb +8 -11
- data/lib/appsignal/cli/install.rb +5 -8
- data/lib/appsignal/config.rb +47 -15
- data/lib/appsignal/helpers/instrumentation.rb +32 -0
- data/lib/appsignal/hooks.rb +1 -0
- data/lib/appsignal/hooks/action_mailer.rb +22 -0
- data/lib/appsignal/hooks/active_support_notifications.rb +72 -0
- data/lib/appsignal/hooks/shoryuken.rb +43 -4
- data/lib/appsignal/transaction.rb +30 -2
- data/lib/appsignal/version.rb +1 -1
- data/spec/lib/appsignal/config_spec.rb +18 -1
- data/spec/lib/appsignal/hooks/action_mailer_spec.rb +54 -0
- data/spec/lib/appsignal/hooks/active_support_notifications/finish_with_state_shared_examples.rb +35 -0
- data/spec/lib/appsignal/hooks/active_support_notifications/instrument_shared_examples.rb +145 -0
- data/spec/lib/appsignal/hooks/active_support_notifications/start_finish_shared_examples.rb +69 -0
- data/spec/lib/appsignal/hooks/active_support_notifications_spec.rb +9 -137
- data/spec/lib/appsignal/hooks/resque_spec.rb +10 -2
- data/spec/lib/appsignal/hooks/shoryuken_spec.rb +151 -104
- data/spec/lib/appsignal/hooks/sidekiq_spec.rb +4 -2
- data/spec/lib/appsignal/transaction_spec.rb +55 -0
- data/spec/lib/appsignal_spec.rb +30 -0
- data/spec/support/helpers/dependency_helper.rb +4 -0
- metadata +14 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7f987568de0465681e378f999401d10053106029050f2e27c66e03634654534
|
4
|
+
data.tar.gz: 9d3bda2c23f46391752218d6a08290e19ffe59a9cdabd3d89841f208a5a4499c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 626bba54cb4d1e1c5990f7e6636f07fef4b3f211e2bc5943a5bbf8ffa6e0d4eaa78abf5a203b491e32ee4d75fb3a5a6d339aaafa9a0bc12973fce90e0eaa5861
|
7
|
+
data.tar.gz: 62052287406db0bb8e95c6e9130886f9db8f7e9822b9d835a9faec3090facd4990addf13b99f107a26e777a37354bbe8ea795c392917cfe2c0884772000b0b3c
|
data/.semaphore/semaphore.yml
CHANGED
@@ -31,6 +31,7 @@ global_job_config:
|
|
31
31
|
prologue:
|
32
32
|
commands:
|
33
33
|
- checkout
|
34
|
+
- rm -f $HOME/.rbenv/plugins/rbenv-gem-rehash/etc/rbenv.d/exec/~gem-rehash.bash
|
34
35
|
- sem-version ruby $RUBY_VERSION
|
35
36
|
- "./support/check_versions"
|
36
37
|
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
@@ -992,6 +993,202 @@ blocks:
|
|
992
993
|
commands:
|
993
994
|
- "./support/bundler_wrapper exec rake test"
|
994
995
|
- "./support/bundler_wrapper exec rake test:failure"
|
996
|
+
- name: Ruby 3.0.0
|
997
|
+
dependencies:
|
998
|
+
- Validation
|
999
|
+
task:
|
1000
|
+
prologue:
|
1001
|
+
commands:
|
1002
|
+
- "./support/bundler_wrapper exec rake extension:install"
|
1003
|
+
jobs:
|
1004
|
+
- name: Ruby 3.0.0 for no_dependencies
|
1005
|
+
env_vars:
|
1006
|
+
- name: RUBY_VERSION
|
1007
|
+
value: 3.0.0
|
1008
|
+
- name: GEMSET
|
1009
|
+
value: no_dependencies
|
1010
|
+
- name: BUNDLE_GEMFILE
|
1011
|
+
value: gemfiles/no_dependencies.gemfile
|
1012
|
+
- name: _RUBYGEMS_VERSION
|
1013
|
+
value: latest
|
1014
|
+
- name: _BUNDLER_VERSION
|
1015
|
+
value: latest
|
1016
|
+
commands:
|
1017
|
+
- "./support/bundler_wrapper exec rake test"
|
1018
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1019
|
+
- name: Ruby 3.0.0 - Gems
|
1020
|
+
dependencies:
|
1021
|
+
- Ruby 3.0.0
|
1022
|
+
task:
|
1023
|
+
prologue:
|
1024
|
+
commands:
|
1025
|
+
- "./support/bundler_wrapper exec rake extension:install"
|
1026
|
+
jobs:
|
1027
|
+
- name: Ruby 3.0.0 for capistrano2
|
1028
|
+
env_vars:
|
1029
|
+
- name: RUBY_VERSION
|
1030
|
+
value: 3.0.0
|
1031
|
+
- name: GEMSET
|
1032
|
+
value: capistrano2
|
1033
|
+
- name: BUNDLE_GEMFILE
|
1034
|
+
value: gemfiles/capistrano2.gemfile
|
1035
|
+
- name: _RUBYGEMS_VERSION
|
1036
|
+
value: latest
|
1037
|
+
- name: _BUNDLER_VERSION
|
1038
|
+
value: latest
|
1039
|
+
commands:
|
1040
|
+
- "./support/bundler_wrapper exec rake test"
|
1041
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1042
|
+
- name: Ruby 3.0.0 for capistrano3
|
1043
|
+
env_vars:
|
1044
|
+
- name: RUBY_VERSION
|
1045
|
+
value: 3.0.0
|
1046
|
+
- name: GEMSET
|
1047
|
+
value: capistrano3
|
1048
|
+
- name: BUNDLE_GEMFILE
|
1049
|
+
value: gemfiles/capistrano3.gemfile
|
1050
|
+
- name: _RUBYGEMS_VERSION
|
1051
|
+
value: latest
|
1052
|
+
- name: _BUNDLER_VERSION
|
1053
|
+
value: latest
|
1054
|
+
commands:
|
1055
|
+
- "./support/bundler_wrapper exec rake test"
|
1056
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1057
|
+
- name: Ruby 3.0.0 for grape
|
1058
|
+
env_vars:
|
1059
|
+
- name: RUBY_VERSION
|
1060
|
+
value: 3.0.0
|
1061
|
+
- name: GEMSET
|
1062
|
+
value: grape
|
1063
|
+
- name: BUNDLE_GEMFILE
|
1064
|
+
value: gemfiles/grape.gemfile
|
1065
|
+
- name: _RUBYGEMS_VERSION
|
1066
|
+
value: latest
|
1067
|
+
- name: _BUNDLER_VERSION
|
1068
|
+
value: latest
|
1069
|
+
commands:
|
1070
|
+
- "./support/bundler_wrapper exec rake test"
|
1071
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1072
|
+
- name: Ruby 3.0.0 for padrino
|
1073
|
+
env_vars:
|
1074
|
+
- name: RUBY_VERSION
|
1075
|
+
value: 3.0.0
|
1076
|
+
- name: GEMSET
|
1077
|
+
value: padrino
|
1078
|
+
- name: BUNDLE_GEMFILE
|
1079
|
+
value: gemfiles/padrino.gemfile
|
1080
|
+
- name: _RUBYGEMS_VERSION
|
1081
|
+
value: latest
|
1082
|
+
- name: _BUNDLER_VERSION
|
1083
|
+
value: latest
|
1084
|
+
commands:
|
1085
|
+
- "./support/bundler_wrapper exec rake test"
|
1086
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1087
|
+
- name: Ruby 3.0.0 for que
|
1088
|
+
env_vars:
|
1089
|
+
- name: RUBY_VERSION
|
1090
|
+
value: 3.0.0
|
1091
|
+
- name: GEMSET
|
1092
|
+
value: que
|
1093
|
+
- name: BUNDLE_GEMFILE
|
1094
|
+
value: gemfiles/que.gemfile
|
1095
|
+
- name: _RUBYGEMS_VERSION
|
1096
|
+
value: latest
|
1097
|
+
- name: _BUNDLER_VERSION
|
1098
|
+
value: latest
|
1099
|
+
commands:
|
1100
|
+
- "./support/bundler_wrapper exec rake test"
|
1101
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1102
|
+
- name: Ruby 3.0.0 for que_beta
|
1103
|
+
env_vars:
|
1104
|
+
- name: RUBY_VERSION
|
1105
|
+
value: 3.0.0
|
1106
|
+
- name: GEMSET
|
1107
|
+
value: que_beta
|
1108
|
+
- name: BUNDLE_GEMFILE
|
1109
|
+
value: gemfiles/que_beta.gemfile
|
1110
|
+
- name: _RUBYGEMS_VERSION
|
1111
|
+
value: latest
|
1112
|
+
- name: _BUNDLER_VERSION
|
1113
|
+
value: latest
|
1114
|
+
commands:
|
1115
|
+
- "./support/bundler_wrapper exec rake test"
|
1116
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1117
|
+
- name: Ruby 3.0.0 for rails-6.0
|
1118
|
+
env_vars:
|
1119
|
+
- name: RUBY_VERSION
|
1120
|
+
value: 3.0.0
|
1121
|
+
- name: GEMSET
|
1122
|
+
value: rails-6.0
|
1123
|
+
- name: BUNDLE_GEMFILE
|
1124
|
+
value: gemfiles/rails-6.0.gemfile
|
1125
|
+
- name: _RUBYGEMS_VERSION
|
1126
|
+
value: latest
|
1127
|
+
- name: _BUNDLER_VERSION
|
1128
|
+
value: latest
|
1129
|
+
commands:
|
1130
|
+
- "./support/bundler_wrapper exec rake test"
|
1131
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1132
|
+
- name: Ruby 3.0.0 for resque-2
|
1133
|
+
env_vars:
|
1134
|
+
- name: RUBY_VERSION
|
1135
|
+
value: 3.0.0
|
1136
|
+
- name: GEMSET
|
1137
|
+
value: resque-2
|
1138
|
+
- name: BUNDLE_GEMFILE
|
1139
|
+
value: gemfiles/resque-2.gemfile
|
1140
|
+
- name: _RUBYGEMS_VERSION
|
1141
|
+
value: latest
|
1142
|
+
- name: _BUNDLER_VERSION
|
1143
|
+
value: latest
|
1144
|
+
commands:
|
1145
|
+
- "./support/bundler_wrapper exec rake test"
|
1146
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1147
|
+
- name: Ruby 3.0.0 for sequel
|
1148
|
+
env_vars:
|
1149
|
+
- name: RUBY_VERSION
|
1150
|
+
value: 3.0.0
|
1151
|
+
- name: GEMSET
|
1152
|
+
value: sequel
|
1153
|
+
- name: BUNDLE_GEMFILE
|
1154
|
+
value: gemfiles/sequel.gemfile
|
1155
|
+
- name: _RUBYGEMS_VERSION
|
1156
|
+
value: latest
|
1157
|
+
- name: _BUNDLER_VERSION
|
1158
|
+
value: latest
|
1159
|
+
commands:
|
1160
|
+
- "./support/bundler_wrapper exec rake test"
|
1161
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1162
|
+
- name: Ruby 3.0.0 for sinatra
|
1163
|
+
env_vars:
|
1164
|
+
- name: RUBY_VERSION
|
1165
|
+
value: 3.0.0
|
1166
|
+
- name: GEMSET
|
1167
|
+
value: sinatra
|
1168
|
+
- name: BUNDLE_GEMFILE
|
1169
|
+
value: gemfiles/sinatra.gemfile
|
1170
|
+
- name: _RUBYGEMS_VERSION
|
1171
|
+
value: latest
|
1172
|
+
- name: _BUNDLER_VERSION
|
1173
|
+
value: latest
|
1174
|
+
commands:
|
1175
|
+
- "./support/bundler_wrapper exec rake test"
|
1176
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
1177
|
+
- name: Ruby 3.0.0 for webmachine
|
1178
|
+
env_vars:
|
1179
|
+
- name: RUBY_VERSION
|
1180
|
+
value: 3.0.0
|
1181
|
+
- name: GEMSET
|
1182
|
+
value: webmachine
|
1183
|
+
- name: BUNDLE_GEMFILE
|
1184
|
+
value: gemfiles/webmachine.gemfile
|
1185
|
+
- name: _RUBYGEMS_VERSION
|
1186
|
+
value: latest
|
1187
|
+
- name: _BUNDLER_VERSION
|
1188
|
+
value: latest
|
1189
|
+
commands:
|
1190
|
+
- "./support/bundler_wrapper exec rake test"
|
1191
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
995
1192
|
- name: Ruby jruby-9.1.17.0
|
996
1193
|
dependencies:
|
997
1194
|
- Validation
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
# 2.11.3
|
4
|
+
- Support Shoryuken batch workers. PR #687
|
5
|
+
|
6
|
+
# 2.11.2
|
7
|
+
- Support Ruby 3.0. PR #681
|
8
|
+
- Support breadcrumbs. PR #666
|
9
|
+
- Log Ruby errors on extension download. PR #679
|
10
|
+
- Fix Ruby 1.9 build. PR #680
|
11
|
+
|
12
|
+
# 2.11.1
|
13
|
+
- Support AS notifications instrumenters that use `start` and `finish`.
|
14
|
+
- Updated agent with better logging and an IO stats fix.
|
15
|
+
- ActionMailer magic dashboard
|
16
|
+
|
3
17
|
# 2.11.0
|
4
18
|
- Track queue time regardless of namespace. Support custom namespaces. PR #602
|
5
19
|
- Improve deprecation message from frontend error middleware. PR #620
|
@@ -27,6 +41,10 @@
|
|
27
41
|
- Update AuthCheck class to use DeprecationMessage helper. PR #649
|
28
42
|
- Print extension load error when AppSignal is loaded. PR #651
|
29
43
|
|
44
|
+
# 2.10.12
|
45
|
+
- Fix `working_directory_path` config option loaded from environment variables.
|
46
|
+
PR #653
|
47
|
+
|
30
48
|
# 2.10.11
|
31
49
|
- Fix extension install report status output in `appsignal diagnose`. PR #636
|
32
50
|
- Support setting a specific configuration file to load with the
|
data/README.md
CHANGED
@@ -157,6 +157,15 @@ as most Linux distributions, FreeBSD, macOS, excluding Microsoft Windows.
|
|
157
157
|
For more detailed information please visit our [Supported
|
158
158
|
systems][supported-systems] page.
|
159
159
|
|
160
|
+
## Releases
|
161
|
+
|
162
|
+
Following the process below to release a new version of the Ruby gem.
|
163
|
+
|
164
|
+
1. Run: `rake publish`
|
165
|
+
1. Update the Ruby gem version number when prompted.
|
166
|
+
1. Update the `CHANGELOG` file with the changes since the last release.
|
167
|
+
1. Confirm with your two-factor authentication token for Rubygems.org, _twice_.
|
168
|
+
|
160
169
|
## Development
|
161
170
|
|
162
171
|
### Installation
|
@@ -219,12 +228,18 @@ BUNDLE_GEMFILE=gemfiles/capistrano3.gemfile bundle exec rspec
|
|
219
228
|
BUNDLE_GEMFILE=gemfiles/grape.gemfile bundle exec rspec
|
220
229
|
BUNDLE_GEMFILE=gemfiles/no_dependencies.gemfile bundle exec rspec
|
221
230
|
BUNDLE_GEMFILE=gemfiles/padrino.gemfile bundle exec rspec
|
231
|
+
BUNDLE_GEMFILE=gemfiles/que.gemfile bundle exec rspec
|
232
|
+
BUNDLE_GEMFILE=gemfiles/que_beta.gemfile bundle exec rspec
|
222
233
|
BUNDLE_GEMFILE=gemfiles/rails-3.2.gemfile bundle exec rspec
|
223
234
|
BUNDLE_GEMFILE=gemfiles/rails-4.0.gemfile bundle exec rspec
|
224
235
|
BUNDLE_GEMFILE=gemfiles/rails-4.1.gemfile bundle exec rspec
|
225
236
|
BUNDLE_GEMFILE=gemfiles/rails-4.2.gemfile bundle exec rspec
|
226
237
|
BUNDLE_GEMFILE=gemfiles/rails-5.0.gemfile bundle exec rspec
|
227
|
-
BUNDLE_GEMFILE=gemfiles/
|
238
|
+
BUNDLE_GEMFILE=gemfiles/rails-5.1.gemfile bundle exec rspec
|
239
|
+
BUNDLE_GEMFILE=gemfiles/rails-5.2.gemfile bundle exec rspec
|
240
|
+
BUNDLE_GEMFILE=gemfiles/rails-6.0.gemfile bundle exec rspec
|
241
|
+
BUNDLE_GEMFILE=gemfiles/resque-1.gemfile bundle exec rspec
|
242
|
+
BUNDLE_GEMFILE=gemfiles/resque-2.gemfile bundle exec rspec
|
228
243
|
BUNDLE_GEMFILE=gemfiles/sequel-435.gemfile bundle exec rspec
|
229
244
|
BUNDLE_GEMFILE=gemfiles/sequel.gemfile bundle exec rspec
|
230
245
|
BUNDLE_GEMFILE=gemfiles/sinatra.gemfile bundle exec rspec
|
data/Rakefile
CHANGED
@@ -39,6 +39,10 @@ def build_task(ruby_version, type = nil)
|
|
39
39
|
}
|
40
40
|
end
|
41
41
|
|
42
|
+
def gems_with_gemfiles
|
43
|
+
YAML.load_file("build_matrix.yml")["matrix"]["gems"].map { |g| g["gem"] }.freeze
|
44
|
+
end
|
45
|
+
|
42
46
|
namespace :build_matrix do
|
43
47
|
namespace :semaphore do
|
44
48
|
task :generate do
|
@@ -310,17 +314,19 @@ task :publish => [
|
|
310
314
|
desc "Install the AppSignal gem, extension and all possible dependencies."
|
311
315
|
task :install => "extension:install" do
|
312
316
|
Bundler.with_clean_env do
|
313
|
-
|
317
|
+
gems_with_gemfiles.each do |gemfile|
|
314
318
|
system "bundle --gemfile gemfiles/#{gemfile}.gemfile"
|
315
319
|
end
|
316
320
|
end
|
317
321
|
end
|
318
322
|
|
319
323
|
task :spec_all_gemfiles do
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
+
Bundler.with_clean_env do
|
325
|
+
gems_with_gemfiles.each do |gemfile|
|
326
|
+
puts "Running tests for #{gemfile}"
|
327
|
+
unless system("env BUNDLE_GEMFILE=gemfiles/#{gemfile}.gemfile bundle exec rspec")
|
328
|
+
raise "Not successful"
|
329
|
+
end
|
324
330
|
end
|
325
331
|
end
|
326
332
|
end
|
data/build_matrix.yml
CHANGED
@@ -32,6 +32,7 @@ semaphore: # Default `.semaphore/semaphore.yml` contents
|
|
32
32
|
prologue:
|
33
33
|
commands:
|
34
34
|
- checkout
|
35
|
+
- rm -f $HOME/.rbenv/plugins/rbenv-gem-rehash/etc/rbenv.d/exec/~gem-rehash.bash
|
35
36
|
- sem-version ruby $RUBY_VERSION
|
36
37
|
- ./support/check_versions
|
37
38
|
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
|
@@ -116,6 +117,7 @@ matrix:
|
|
116
117
|
gems: "minimal"
|
117
118
|
- ruby: "2.6.5"
|
118
119
|
- ruby: "2.7.1"
|
120
|
+
- ruby: "3.0.0"
|
119
121
|
- ruby: "jruby-9.1.17.0"
|
120
122
|
gems: "minimal"
|
121
123
|
gems:
|
@@ -138,24 +140,29 @@ matrix:
|
|
138
140
|
ruby:
|
139
141
|
- "2.6.5"
|
140
142
|
- "2.7.1"
|
143
|
+
- "3.0.0"
|
141
144
|
- gem: "rails-4.2"
|
142
145
|
bundler: "1.17.3"
|
143
146
|
exclude:
|
144
147
|
ruby:
|
145
148
|
- "2.6.5"
|
146
149
|
- "2.7.1"
|
150
|
+
- "3.0.0"
|
147
151
|
- gem: "rails-5.0"
|
148
152
|
exclude:
|
149
153
|
ruby:
|
150
154
|
- "2.0.0-p648"
|
155
|
+
- "3.0.0"
|
151
156
|
- gem: "rails-5.1"
|
152
157
|
exclude:
|
153
158
|
ruby:
|
154
159
|
- "2.0.0-p648"
|
160
|
+
- "3.0.0"
|
155
161
|
- gem: "rails-5.2"
|
156
162
|
exclude:
|
157
163
|
ruby:
|
158
164
|
- "2.0.0-p648"
|
165
|
+
- "3.0.0"
|
159
166
|
- gem: "rails-6.0"
|
160
167
|
exclude:
|
161
168
|
ruby:
|
@@ -167,11 +174,17 @@ matrix:
|
|
167
174
|
- "jruby-9.1.17.0"
|
168
175
|
- gem: "resque-1"
|
169
176
|
bundler: "1.17.3"
|
177
|
+
exclude:
|
178
|
+
ruby:
|
179
|
+
- "3.0.0"
|
170
180
|
- gem: "resque-2"
|
171
181
|
exclude:
|
172
182
|
ruby:
|
173
183
|
- "2.0.0-p648"
|
174
184
|
- gem: "sequel"
|
175
185
|
- gem: "sequel-435"
|
186
|
+
exclude:
|
187
|
+
ruby:
|
188
|
+
- "3.0.0"
|
176
189
|
- gem: "sinatra"
|
177
190
|
- gem: "webmachine"
|
data/ext/agent.yml
CHANGED
@@ -1,70 +1,62 @@
|
|
1
1
|
---
|
2
|
-
version:
|
2
|
+
version: 361340a
|
3
3
|
mirrors:
|
4
4
|
- https://appsignal-agent-releases.global.ssl.fastly.net
|
5
5
|
- https://d135dj0rjqvssy.cloudfront.net
|
6
6
|
triples:
|
7
7
|
x86_64-darwin:
|
8
8
|
static:
|
9
|
-
checksum:
|
9
|
+
checksum: 4e08cb0cef0ea7e30f8d507380b923f6cfa14adaea12c81804e118acd6395b57
|
10
10
|
filename: appsignal-x86_64-darwin-all-static.tar.gz
|
11
11
|
dynamic:
|
12
|
-
checksum:
|
12
|
+
checksum: 1a9c3e26bd453fe60a2f511d536e64bdeddb1f939664bda90d6a41eaeedf5250
|
13
13
|
filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
|
14
14
|
universal-darwin:
|
15
15
|
static:
|
16
|
-
checksum:
|
16
|
+
checksum: 4e08cb0cef0ea7e30f8d507380b923f6cfa14adaea12c81804e118acd6395b57
|
17
17
|
filename: appsignal-x86_64-darwin-all-static.tar.gz
|
18
18
|
dynamic:
|
19
|
-
checksum:
|
19
|
+
checksum: 1a9c3e26bd453fe60a2f511d536e64bdeddb1f939664bda90d6a41eaeedf5250
|
20
20
|
filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
|
21
21
|
i686-linux:
|
22
22
|
static:
|
23
|
-
checksum:
|
23
|
+
checksum: 01c027b3e472cb39d844284fcc8ba532628c00731b912e0e9718646ed124ae6e
|
24
24
|
filename: appsignal-i686-linux-all-static.tar.gz
|
25
25
|
dynamic:
|
26
|
-
checksum:
|
26
|
+
checksum: 30696eac3ae5646bcb21ff86a1824dd4511a41dd323514e4a97a41b5ff09e2f8
|
27
27
|
filename: appsignal-i686-linux-all-dynamic.tar.gz
|
28
28
|
x86-linux:
|
29
29
|
static:
|
30
|
-
checksum:
|
30
|
+
checksum: 01c027b3e472cb39d844284fcc8ba532628c00731b912e0e9718646ed124ae6e
|
31
31
|
filename: appsignal-i686-linux-all-static.tar.gz
|
32
32
|
dynamic:
|
33
|
-
checksum:
|
33
|
+
checksum: 30696eac3ae5646bcb21ff86a1824dd4511a41dd323514e4a97a41b5ff09e2f8
|
34
34
|
filename: appsignal-i686-linux-all-dynamic.tar.gz
|
35
|
-
i686-linux-musl:
|
36
|
-
static:
|
37
|
-
checksum: 28b69e895da6b2a30402eed29cf8c3bbc4f647d6ce9cc5e0b11b4a771d7a1021
|
38
|
-
filename: appsignal-i686-linux-musl-all-static.tar.gz
|
39
|
-
x86-linux-musl:
|
40
|
-
static:
|
41
|
-
checksum: 28b69e895da6b2a30402eed29cf8c3bbc4f647d6ce9cc5e0b11b4a771d7a1021
|
42
|
-
filename: appsignal-i686-linux-musl-all-static.tar.gz
|
43
35
|
x86_64-linux:
|
44
36
|
static:
|
45
|
-
checksum:
|
37
|
+
checksum: fe2038d6fa468fc23900fea6d8179d2b37d41d54f4ff33c573116183ac1cb491
|
46
38
|
filename: appsignal-x86_64-linux-all-static.tar.gz
|
47
39
|
dynamic:
|
48
|
-
checksum:
|
40
|
+
checksum: bcbf9546b078fb8bbaae5e7df4ed84831346c814bc865a47d32a3a095a84acbb
|
49
41
|
filename: appsignal-x86_64-linux-all-dynamic.tar.gz
|
50
42
|
x86_64-linux-musl:
|
51
43
|
static:
|
52
|
-
checksum:
|
44
|
+
checksum: b2ee5579a62b76a1d2f41f4e06749c4c549f9aaa40764862eff49c5a6a8841f1
|
53
45
|
filename: appsignal-x86_64-linux-musl-all-static.tar.gz
|
54
46
|
dynamic:
|
55
|
-
checksum:
|
47
|
+
checksum: 53cd2464853e61c2d8f911ec32ff98cb48f824293ffd575da6743bc34625a7eb
|
56
48
|
filename: appsignal-x86_64-linux-musl-all-dynamic.tar.gz
|
57
49
|
x86_64-freebsd:
|
58
50
|
static:
|
59
|
-
checksum:
|
51
|
+
checksum: f228dd2f2cf951c9eb9f04487be50fdfdc3d29a956e639787a4022bd73f02e53
|
60
52
|
filename: appsignal-x86_64-freebsd-all-static.tar.gz
|
61
53
|
dynamic:
|
62
|
-
checksum:
|
54
|
+
checksum: 030b322b2cb15607260cbb0424c03f6e41646dca7aacc43a30279ad63a336541
|
63
55
|
filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz
|
64
56
|
amd64-freebsd:
|
65
57
|
static:
|
66
|
-
checksum:
|
58
|
+
checksum: f228dd2f2cf951c9eb9f04487be50fdfdc3d29a956e639787a4022bd73f02e53
|
67
59
|
filename: appsignal-x86_64-freebsd-all-static.tar.gz
|
68
60
|
dynamic:
|
69
|
-
checksum:
|
61
|
+
checksum: 030b322b2cb15607260cbb0424c03f6e41646dca7aacc43a30279ad63a336541
|
70
62
|
filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz
|