appsignal 3.3.1-java → 3.3.2-java
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 +10 -0
- data/ext/agent.rb +144 -0
- data/ext/base.rb +31 -17
- data/lib/appsignal/extension.rb +2 -5
- data/lib/appsignal/version.rb +1 -1
- data/lib/appsignal.rb +1 -0
- metadata +3 -3
- data/ext/agent.yml +0 -101
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57621f6b6eff53ef1a9c3575bf519d9b57f538eeab72df52f7afc45d9cb9e52a
|
|
4
|
+
data.tar.gz: 7a9c6cdfd0c9caba31cbe1e75512ebe30c95a765b7525c408e64829741338cc5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0493c3d08579b07bc3a6b2e2924182d93ef328d4acd090c30b025a2c5dd2ad5ea677e810df82e790bf2b69ea3aba6fd1c07c07690f0ec2ed664af3e8b48e78c
|
|
7
|
+
data.tar.gz: 705da620256f6da906384891e5c38c53a00b761d65957f2e6145beb7f18cbd7df0259193fa8489609838873718ac978e6648efb27e6107dbb4c6fcea28d04899
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# AppSignal for Ruby gem Changelog
|
|
2
2
|
|
|
3
|
+
## 3.3.2
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- [d1b960f0](https://github.com/appsignal/appsignal-ruby/commit/d1b960f0350b55962621d740e6a92922b334ab49) patch - Reduce our dependency on YAML during installation. Instead of a YAML file with details about the extension download location, use a pure Ruby file. This is a partial fix for the installation issue involving psych version 5.
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- [e1e598ae](https://github.com/appsignal/appsignal-ruby/commit/e1e598ae51512a51486446e5751e504d4fc90ef0) patch - Skip the `.gemrc` config during installation if it raises an error loading it. This can be caused when the psych gem version 5 is installed on Ruby < 3.2. Use the `HTTP_PROXY` environment variable instead to configure the HTTP proxy that should be used during installation.
|
|
12
|
+
|
|
3
13
|
## 3.3.1
|
|
4
14
|
|
|
5
15
|
### Added
|
data/ext/agent.rb
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# DO NOT EDIT
|
|
2
|
+
# This is a generated file by the `rake ship` family of tasks in the
|
|
3
|
+
# appsignal-agent repository.
|
|
4
|
+
# Modifications to this file will be overwritten with the next agent release.
|
|
5
|
+
|
|
6
|
+
APPSIGNAL_AGENT_CONFIG = {
|
|
7
|
+
"version" => "c0e80b9",
|
|
8
|
+
"mirrors" => [
|
|
9
|
+
"https://appsignal-agent-releases.global.ssl.fastly.net",
|
|
10
|
+
"https://d135dj0rjqvssy.cloudfront.net"
|
|
11
|
+
],
|
|
12
|
+
"triples" => {
|
|
13
|
+
"x86_64-darwin" => {
|
|
14
|
+
"static" => {
|
|
15
|
+
"checksum" => "c0e1fc966eff49dd942ed07b44f5c5db6be41676f4e35530c300bac8f99e03c4",
|
|
16
|
+
"filename" => "appsignal-x86_64-darwin-all-static.tar.gz"
|
|
17
|
+
},
|
|
18
|
+
"dynamic" => {
|
|
19
|
+
"checksum" => "38805c50262c9dbc5c4e7479d274b5e41d6df6e86e6c09d76b9f3f471dcf8787",
|
|
20
|
+
"filename" => "appsignal-x86_64-darwin-all-dynamic.tar.gz"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"universal-darwin" => {
|
|
24
|
+
"static" => {
|
|
25
|
+
"checksum" => "c0e1fc966eff49dd942ed07b44f5c5db6be41676f4e35530c300bac8f99e03c4",
|
|
26
|
+
"filename" => "appsignal-x86_64-darwin-all-static.tar.gz"
|
|
27
|
+
},
|
|
28
|
+
"dynamic" => {
|
|
29
|
+
"checksum" => "38805c50262c9dbc5c4e7479d274b5e41d6df6e86e6c09d76b9f3f471dcf8787",
|
|
30
|
+
"filename" => "appsignal-x86_64-darwin-all-dynamic.tar.gz"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"aarch64-darwin" => {
|
|
34
|
+
"static" => {
|
|
35
|
+
"checksum" => "37fcdf17250ce9e2149f28a8492074f5957691636ab542c7073b323a1b9dbdd8",
|
|
36
|
+
"filename" => "appsignal-aarch64-darwin-all-static.tar.gz"
|
|
37
|
+
},
|
|
38
|
+
"dynamic" => {
|
|
39
|
+
"checksum" => "0fe962abf0885888f38d1767b959ea25ea8c4b38813d7a23fbebe2aa62873341",
|
|
40
|
+
"filename" => "appsignal-aarch64-darwin-all-dynamic.tar.gz"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"arm64-darwin" => {
|
|
44
|
+
"static" => {
|
|
45
|
+
"checksum" => "37fcdf17250ce9e2149f28a8492074f5957691636ab542c7073b323a1b9dbdd8",
|
|
46
|
+
"filename" => "appsignal-aarch64-darwin-all-static.tar.gz"
|
|
47
|
+
},
|
|
48
|
+
"dynamic" => {
|
|
49
|
+
"checksum" => "0fe962abf0885888f38d1767b959ea25ea8c4b38813d7a23fbebe2aa62873341",
|
|
50
|
+
"filename" => "appsignal-aarch64-darwin-all-dynamic.tar.gz"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"arm-darwin" => {
|
|
54
|
+
"static" => {
|
|
55
|
+
"checksum" => "37fcdf17250ce9e2149f28a8492074f5957691636ab542c7073b323a1b9dbdd8",
|
|
56
|
+
"filename" => "appsignal-aarch64-darwin-all-static.tar.gz"
|
|
57
|
+
},
|
|
58
|
+
"dynamic" => {
|
|
59
|
+
"checksum" => "0fe962abf0885888f38d1767b959ea25ea8c4b38813d7a23fbebe2aa62873341",
|
|
60
|
+
"filename" => "appsignal-aarch64-darwin-all-dynamic.tar.gz"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"aarch64-linux" => {
|
|
64
|
+
"static" => {
|
|
65
|
+
"checksum" => "ce9075ee5bc14ea786b734793b6bb6331567398cab6a21f2ceaa9062cfbdb373",
|
|
66
|
+
"filename" => "appsignal-aarch64-linux-all-static.tar.gz"
|
|
67
|
+
},
|
|
68
|
+
"dynamic" => {
|
|
69
|
+
"checksum" => "eb798538e0e32b19de0afba924c3cb8979a5e57433de4b1a12a6aeaf7233929b",
|
|
70
|
+
"filename" => "appsignal-aarch64-linux-all-dynamic.tar.gz"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"i686-linux" => {
|
|
74
|
+
"static" => {
|
|
75
|
+
"checksum" => "ea3d1a29cf1534293738f2bd27ae29b8addf8dbe34dde77dc4ae150e109e2e4f",
|
|
76
|
+
"filename" => "appsignal-i686-linux-all-static.tar.gz"
|
|
77
|
+
},
|
|
78
|
+
"dynamic" => {
|
|
79
|
+
"checksum" => "add159ec5bcf1b1a3362c08f9f765230d99c0431c567d845e31c51389792a51c",
|
|
80
|
+
"filename" => "appsignal-i686-linux-all-dynamic.tar.gz"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"x86-linux" => {
|
|
84
|
+
"static" => {
|
|
85
|
+
"checksum" => "ea3d1a29cf1534293738f2bd27ae29b8addf8dbe34dde77dc4ae150e109e2e4f",
|
|
86
|
+
"filename" => "appsignal-i686-linux-all-static.tar.gz"
|
|
87
|
+
},
|
|
88
|
+
"dynamic" => {
|
|
89
|
+
"checksum" => "add159ec5bcf1b1a3362c08f9f765230d99c0431c567d845e31c51389792a51c",
|
|
90
|
+
"filename" => "appsignal-i686-linux-all-dynamic.tar.gz"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"x86_64-linux" => {
|
|
94
|
+
"static" => {
|
|
95
|
+
"checksum" => "adeceb091c4ed277c29eda018ffc61fd064e5c486b2b0a239b26873168a7fdb0",
|
|
96
|
+
"filename" => "appsignal-x86_64-linux-all-static.tar.gz"
|
|
97
|
+
},
|
|
98
|
+
"dynamic" => {
|
|
99
|
+
"checksum" => "121abc5d34db302c130cf49ce1dad032025e6717efd63f5cf04ba0b55b5fc863",
|
|
100
|
+
"filename" => "appsignal-x86_64-linux-all-dynamic.tar.gz"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"x86_64-linux-musl" => {
|
|
104
|
+
"static" => {
|
|
105
|
+
"checksum" => "b57aec8c334b1d3646c80d87f20372287e4e2bdbd798c195e0e36ceeb2aac68a",
|
|
106
|
+
"filename" => "appsignal-x86_64-linux-musl-all-static.tar.gz"
|
|
107
|
+
},
|
|
108
|
+
"dynamic" => {
|
|
109
|
+
"checksum" => "67a918b1848f979afe01eb56ce1661fb5b5910d4c7d691fcf0e304203bd7bd7a",
|
|
110
|
+
"filename" => "appsignal-x86_64-linux-musl-all-dynamic.tar.gz"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"aarch64-linux-musl" => {
|
|
114
|
+
"static" => {
|
|
115
|
+
"checksum" => "fc780524942fc7aeaa4cabec64dfc104c82969df7e8b5cd0fa8eae24c1c9b304",
|
|
116
|
+
"filename" => "appsignal-aarch64-linux-musl-all-static.tar.gz"
|
|
117
|
+
},
|
|
118
|
+
"dynamic" => {
|
|
119
|
+
"checksum" => "92ed33ca9f402f9e822e5777b291f7a062545767ea92dea7eaa94db4f82d8130",
|
|
120
|
+
"filename" => "appsignal-aarch64-linux-musl-all-dynamic.tar.gz"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"x86_64-freebsd" => {
|
|
124
|
+
"static" => {
|
|
125
|
+
"checksum" => "574137de415487afe8d2cc29eac3b1fda2c8e1001474b8f25ebee0cbb32fb1ca",
|
|
126
|
+
"filename" => "appsignal-x86_64-freebsd-all-static.tar.gz"
|
|
127
|
+
},
|
|
128
|
+
"dynamic" => {
|
|
129
|
+
"checksum" => "9dcc3454c14e8a7a0d7250b35864b6f0f205d5c730ca510e7b77628e024a703f",
|
|
130
|
+
"filename" => "appsignal-x86_64-freebsd-all-dynamic.tar.gz"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"amd64-freebsd" => {
|
|
134
|
+
"static" => {
|
|
135
|
+
"checksum" => "574137de415487afe8d2cc29eac3b1fda2c8e1001474b8f25ebee0cbb32fb1ca",
|
|
136
|
+
"filename" => "appsignal-x86_64-freebsd-all-static.tar.gz"
|
|
137
|
+
},
|
|
138
|
+
"dynamic" => {
|
|
139
|
+
"checksum" => "9dcc3454c14e8a7a0d7250b35864b6f0f205d5c730ca510e7b77628e024a703f",
|
|
140
|
+
"filename" => "appsignal-x86_64-freebsd-all-dynamic.tar.gz"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}.freeze
|
data/ext/base.rb
CHANGED
|
@@ -3,18 +3,17 @@ require "fileutils"
|
|
|
3
3
|
require "open-uri"
|
|
4
4
|
require "zlib"
|
|
5
5
|
require "json"
|
|
6
|
-
require "yaml"
|
|
7
6
|
require "rubygems/package"
|
|
8
7
|
require File.expand_path("../../lib/appsignal/version.rb", __FILE__)
|
|
9
8
|
require File.expand_path("../../lib/appsignal/system.rb", __FILE__)
|
|
9
|
+
require_relative "./agent"
|
|
10
10
|
|
|
11
|
-
EXT_PATH
|
|
12
|
-
AGENT_CONFIG = YAML.load(File.read(File.join(EXT_PATH, "agent.yml"))).freeze
|
|
11
|
+
EXT_PATH = File.expand_path("..", __FILE__).freeze
|
|
13
12
|
|
|
14
13
|
AGENT_PLATFORM = Appsignal::System.agent_platform
|
|
15
14
|
AGENT_ARCHITECTURE = Appsignal::System.agent_architecture
|
|
16
15
|
TARGET_TRIPLE = "#{AGENT_ARCHITECTURE}-#{AGENT_PLATFORM}".freeze
|
|
17
|
-
ARCH_CONFIG =
|
|
16
|
+
ARCH_CONFIG = APPSIGNAL_AGENT_CONFIG["triples"][TARGET_TRIPLE].freeze
|
|
18
17
|
CA_CERT_PATH = File.join(EXT_PATH, "../resources/cacert.pem").freeze
|
|
19
18
|
|
|
20
19
|
def ext_path(path)
|
|
@@ -34,8 +33,7 @@ def report
|
|
|
34
33
|
"version" => "#{rbconfig["RUBY_PROGRAM_VERSION"]}-p#{rbconfig["PATCHLEVEL"]}"
|
|
35
34
|
},
|
|
36
35
|
"download" => {
|
|
37
|
-
"checksum" => "unverified"
|
|
38
|
-
"http_proxy" => http_proxy
|
|
36
|
+
"checksum" => "unverified"
|
|
39
37
|
},
|
|
40
38
|
"build" => {
|
|
41
39
|
"time" => Time.now.utc,
|
|
@@ -55,7 +53,11 @@ def report
|
|
|
55
53
|
d["libc"] = ldd_version if ldd_version
|
|
56
54
|
end
|
|
57
55
|
}
|
|
58
|
-
}
|
|
56
|
+
}.tap do |r|
|
|
57
|
+
proxy, error = http_proxy
|
|
58
|
+
r["download"]["http_proxy"] = proxy
|
|
59
|
+
r["download"]["http_proxy_error"] = error if error
|
|
60
|
+
end
|
|
59
61
|
end
|
|
60
62
|
end
|
|
61
63
|
|
|
@@ -97,7 +99,7 @@ def installation_succeeded?
|
|
|
97
99
|
end
|
|
98
100
|
|
|
99
101
|
def check_architecture
|
|
100
|
-
if
|
|
102
|
+
if APPSIGNAL_AGENT_CONFIG["triples"].key?(TARGET_TRIPLE)
|
|
101
103
|
true
|
|
102
104
|
else
|
|
103
105
|
abort_installation(
|
|
@@ -113,26 +115,27 @@ def download_archive(type)
|
|
|
113
115
|
unless ARCH_CONFIG.key?(type)
|
|
114
116
|
abort_installation(
|
|
115
117
|
"AppSignal currently does not support your system. " \
|
|
116
|
-
"Expected config for architecture '#{
|
|
117
|
-
"For a full list of supported systems visit: " \
|
|
118
|
+
"Expected config for architecture '#{TARGET_TRIPLE}' and package type '#{type}', " \
|
|
119
|
+
"but none found. For a full list of supported systems visit: " \
|
|
118
120
|
"https://docs.appsignal.com/support/operating-systems.html"
|
|
119
121
|
)
|
|
120
122
|
return
|
|
121
123
|
end
|
|
122
124
|
|
|
123
|
-
version =
|
|
125
|
+
version = APPSIGNAL_AGENT_CONFIG["version"]
|
|
124
126
|
filename = ARCH_CONFIG[type]["filename"]
|
|
125
127
|
download_errors = []
|
|
126
128
|
|
|
127
|
-
|
|
129
|
+
APPSIGNAL_AGENT_CONFIG["mirrors"].each do |mirror|
|
|
128
130
|
download_url = [mirror, version, filename].join("/")
|
|
129
131
|
report["download"]["download_url"] = download_url
|
|
130
132
|
|
|
131
133
|
begin
|
|
134
|
+
proxy, _error = http_proxy
|
|
132
135
|
args = [
|
|
133
136
|
download_url,
|
|
134
137
|
:ssl_ca_cert => CA_CERT_PATH,
|
|
135
|
-
:proxy =>
|
|
138
|
+
:proxy => proxy
|
|
136
139
|
]
|
|
137
140
|
if URI.respond_to?(:open) # rubocop:disable Style/GuardClause
|
|
138
141
|
return URI.open(*args)
|
|
@@ -187,14 +190,25 @@ def store_download_version_on_report
|
|
|
187
190
|
end
|
|
188
191
|
|
|
189
192
|
def http_proxy
|
|
190
|
-
proxy =
|
|
191
|
-
|
|
193
|
+
proxy, error =
|
|
194
|
+
begin
|
|
195
|
+
[try_http_proxy_value(Gem.configuration[:http_proxy]), nil]
|
|
196
|
+
rescue => error
|
|
197
|
+
# Ignore this setting if the `.gemrc` file can't be read. This raises an
|
|
198
|
+
# error on Rubies with psych 4 in the standard library, but also have
|
|
199
|
+
# psych 5 installed: Ruby < 3.2.
|
|
200
|
+
# https://github.com/appsignal/appsignal-ruby/issues/904
|
|
201
|
+
[nil, error]
|
|
202
|
+
end
|
|
203
|
+
return [proxy, error] if proxy
|
|
192
204
|
|
|
193
205
|
proxy = try_http_proxy_value(ENV["http_proxy"])
|
|
194
|
-
return proxy if proxy
|
|
206
|
+
return [proxy, error] if proxy
|
|
195
207
|
|
|
196
208
|
proxy = try_http_proxy_value(ENV["HTTP_PROXY"])
|
|
197
|
-
return proxy if proxy
|
|
209
|
+
return [proxy, error] if proxy
|
|
210
|
+
|
|
211
|
+
[nil, error]
|
|
198
212
|
end
|
|
199
213
|
|
|
200
214
|
def try_http_proxy_value(value)
|
data/lib/appsignal/extension.rb
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "yaml"
|
|
4
|
-
|
|
5
3
|
begin
|
|
6
4
|
if Appsignal::System.jruby?
|
|
7
5
|
require "appsignal/extension/jruby"
|
|
@@ -24,9 +22,8 @@ module Appsignal
|
|
|
24
22
|
class Extension
|
|
25
23
|
class << self
|
|
26
24
|
def agent_config
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
)
|
|
25
|
+
require_relative "../../ext/agent"
|
|
26
|
+
::APPSIGNAL_AGENT_CONFIG
|
|
30
27
|
end
|
|
31
28
|
|
|
32
29
|
def agent_version
|
data/lib/appsignal/version.rb
CHANGED
data/lib/appsignal.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appsignal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.3.
|
|
4
|
+
version: 3.3.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Beekman
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-01-
|
|
13
|
+
date: 2023-01-20 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rack
|
|
@@ -168,7 +168,7 @@ files:
|
|
|
168
168
|
- bin/appsignal
|
|
169
169
|
- build_matrix.yml
|
|
170
170
|
- ext/Rakefile
|
|
171
|
-
- ext/agent.
|
|
171
|
+
- ext/agent.rb
|
|
172
172
|
- ext/appsignal_extension.c
|
|
173
173
|
- ext/base.rb
|
|
174
174
|
- ext/extconf.rb
|
data/ext/agent.yml
DELETED
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
# DO NOT EDIT
|
|
2
|
-
# This is a generated file by the `rake ship` family of tasks in the
|
|
3
|
-
# appsignal-agent repository.
|
|
4
|
-
# Modifications to this file will be overwritten with the next agent release.
|
|
5
|
-
---
|
|
6
|
-
version: 9b62288
|
|
7
|
-
mirrors:
|
|
8
|
-
- https://appsignal-agent-releases.global.ssl.fastly.net
|
|
9
|
-
- https://d135dj0rjqvssy.cloudfront.net
|
|
10
|
-
triples:
|
|
11
|
-
x86_64-darwin:
|
|
12
|
-
static:
|
|
13
|
-
checksum: 5ff2ec4f16f5089e15188670b2c43866c76ab5db2ac07d72878a9816e63171ca
|
|
14
|
-
filename: appsignal-x86_64-darwin-all-static.tar.gz
|
|
15
|
-
dynamic:
|
|
16
|
-
checksum: c7b1ddd0efbd5fb5c48e7124ab13202c7b5fa2624354db66ebc2673d7196ce31
|
|
17
|
-
filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
|
|
18
|
-
universal-darwin:
|
|
19
|
-
static:
|
|
20
|
-
checksum: 5ff2ec4f16f5089e15188670b2c43866c76ab5db2ac07d72878a9816e63171ca
|
|
21
|
-
filename: appsignal-x86_64-darwin-all-static.tar.gz
|
|
22
|
-
dynamic:
|
|
23
|
-
checksum: c7b1ddd0efbd5fb5c48e7124ab13202c7b5fa2624354db66ebc2673d7196ce31
|
|
24
|
-
filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
|
|
25
|
-
aarch64-darwin:
|
|
26
|
-
static:
|
|
27
|
-
checksum: 9dfdfd6697b3eeeb80a30356fdc1d03a79b8601f18cedd1b2c1442e512d2ed6a
|
|
28
|
-
filename: appsignal-aarch64-darwin-all-static.tar.gz
|
|
29
|
-
dynamic:
|
|
30
|
-
checksum: 1fe7a4e2b9e424ccce17c5c7422c84e29531507f672f6cebdd42a3f74feee0b9
|
|
31
|
-
filename: appsignal-aarch64-darwin-all-dynamic.tar.gz
|
|
32
|
-
arm64-darwin:
|
|
33
|
-
static:
|
|
34
|
-
checksum: 9dfdfd6697b3eeeb80a30356fdc1d03a79b8601f18cedd1b2c1442e512d2ed6a
|
|
35
|
-
filename: appsignal-aarch64-darwin-all-static.tar.gz
|
|
36
|
-
dynamic:
|
|
37
|
-
checksum: 1fe7a4e2b9e424ccce17c5c7422c84e29531507f672f6cebdd42a3f74feee0b9
|
|
38
|
-
filename: appsignal-aarch64-darwin-all-dynamic.tar.gz
|
|
39
|
-
arm-darwin:
|
|
40
|
-
static:
|
|
41
|
-
checksum: 9dfdfd6697b3eeeb80a30356fdc1d03a79b8601f18cedd1b2c1442e512d2ed6a
|
|
42
|
-
filename: appsignal-aarch64-darwin-all-static.tar.gz
|
|
43
|
-
dynamic:
|
|
44
|
-
checksum: 1fe7a4e2b9e424ccce17c5c7422c84e29531507f672f6cebdd42a3f74feee0b9
|
|
45
|
-
filename: appsignal-aarch64-darwin-all-dynamic.tar.gz
|
|
46
|
-
aarch64-linux:
|
|
47
|
-
static:
|
|
48
|
-
checksum: 0e5d89aeda1e883c912ff069bb76029a1e3cad69f493865d877ffaffa2b45142
|
|
49
|
-
filename: appsignal-aarch64-linux-all-static.tar.gz
|
|
50
|
-
dynamic:
|
|
51
|
-
checksum: 58b09bf6ca7761a4d68cd9de87a0bb45b3465ace90b62a88d9fe77f629c26d7d
|
|
52
|
-
filename: appsignal-aarch64-linux-all-dynamic.tar.gz
|
|
53
|
-
i686-linux:
|
|
54
|
-
static:
|
|
55
|
-
checksum: ff3cffb1204afd846ba0bb33c50b03f8ada8305527a5908ccfebed6fdcce0e61
|
|
56
|
-
filename: appsignal-i686-linux-all-static.tar.gz
|
|
57
|
-
dynamic:
|
|
58
|
-
checksum: '0895a85c3df276864807f7b2572c96ea8c8cd3cc770b7cf02656c6bd01981b59'
|
|
59
|
-
filename: appsignal-i686-linux-all-dynamic.tar.gz
|
|
60
|
-
x86-linux:
|
|
61
|
-
static:
|
|
62
|
-
checksum: ff3cffb1204afd846ba0bb33c50b03f8ada8305527a5908ccfebed6fdcce0e61
|
|
63
|
-
filename: appsignal-i686-linux-all-static.tar.gz
|
|
64
|
-
dynamic:
|
|
65
|
-
checksum: '0895a85c3df276864807f7b2572c96ea8c8cd3cc770b7cf02656c6bd01981b59'
|
|
66
|
-
filename: appsignal-i686-linux-all-dynamic.tar.gz
|
|
67
|
-
x86_64-linux:
|
|
68
|
-
static:
|
|
69
|
-
checksum: 0b6fe4b343461a1a906fc73edb44bc5b12c75214d21fc81ed26d3eb88588003e
|
|
70
|
-
filename: appsignal-x86_64-linux-all-static.tar.gz
|
|
71
|
-
dynamic:
|
|
72
|
-
checksum: 82117daf3e1c550526f74f4ec66c403bed22aa8600459b749858814589ed688b
|
|
73
|
-
filename: appsignal-x86_64-linux-all-dynamic.tar.gz
|
|
74
|
-
x86_64-linux-musl:
|
|
75
|
-
static:
|
|
76
|
-
checksum: b3f52d7a7a1f4ae8095dd5b1207270dc1797766820d925aca0d09133983c9163
|
|
77
|
-
filename: appsignal-x86_64-linux-musl-all-static.tar.gz
|
|
78
|
-
dynamic:
|
|
79
|
-
checksum: 5de9ddc90fc5beb308eadd5381ac0360692cb32e58dcaf0b0d7ecd3dabf44499
|
|
80
|
-
filename: appsignal-x86_64-linux-musl-all-dynamic.tar.gz
|
|
81
|
-
aarch64-linux-musl:
|
|
82
|
-
static:
|
|
83
|
-
checksum: d306c50cc9f1bc8ea3339b4185b2a60a1c27f17d9067a529b1889d74c6c0a8d6
|
|
84
|
-
filename: appsignal-aarch64-linux-musl-all-static.tar.gz
|
|
85
|
-
dynamic:
|
|
86
|
-
checksum: e3015e05a807ef5027ea8929a917873bcdaf714138ab5d6d028e3c855b3a61d3
|
|
87
|
-
filename: appsignal-aarch64-linux-musl-all-dynamic.tar.gz
|
|
88
|
-
x86_64-freebsd:
|
|
89
|
-
static:
|
|
90
|
-
checksum: 135d2ff898f30b15721eca36569d1a0a5deaaee7b4787937d0888ed49f25019b
|
|
91
|
-
filename: appsignal-x86_64-freebsd-all-static.tar.gz
|
|
92
|
-
dynamic:
|
|
93
|
-
checksum: 873aea3c808b7de431881f2f4b4dae686b20b309e76e3eefbb71e399ebea5284
|
|
94
|
-
filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz
|
|
95
|
-
amd64-freebsd:
|
|
96
|
-
static:
|
|
97
|
-
checksum: 135d2ff898f30b15721eca36569d1a0a5deaaee7b4787937d0888ed49f25019b
|
|
98
|
-
filename: appsignal-x86_64-freebsd-all-static.tar.gz
|
|
99
|
-
dynamic:
|
|
100
|
-
checksum: 873aea3c808b7de431881f2f4b4dae686b20b309e76e3eefbb71e399ebea5284
|
|
101
|
-
filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz
|