appsignal 2.10.7 → 2.11.0.alpha.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.semaphore/semaphore.yml +45 -53
  3. data/CHANGELOG.md +18 -0
  4. data/build_matrix.yml +13 -6
  5. data/ext/agent.yml +19 -19
  6. data/ext/appsignal_extension.c +10 -1
  7. data/ext/base.rb +15 -4
  8. data/gemfiles/padrino.gemfile +2 -2
  9. data/lib/appsignal.rb +21 -1
  10. data/lib/appsignal/capistrano.rb +2 -0
  11. data/lib/appsignal/config.rb +6 -2
  12. data/lib/appsignal/environment.rb +126 -0
  13. data/lib/appsignal/extension/jruby.rb +10 -0
  14. data/lib/appsignal/hooks/net_http.rb +2 -0
  15. data/lib/appsignal/hooks/puma.rb +2 -58
  16. data/lib/appsignal/hooks/redis.rb +2 -0
  17. data/lib/appsignal/hooks/sequel.rb +2 -0
  18. data/lib/appsignal/hooks/sidekiq.rb +2 -99
  19. data/lib/appsignal/integrations/delayed_job_plugin.rb +16 -3
  20. data/lib/appsignal/integrations/object.rb +4 -0
  21. data/lib/appsignal/integrations/resque_active_job.rb +12 -4
  22. data/lib/appsignal/probes/puma.rb +61 -0
  23. data/lib/appsignal/probes/sidekiq.rb +102 -0
  24. data/lib/appsignal/rack/js_exception_catcher.rb +5 -2
  25. data/lib/appsignal/transaction.rb +22 -7
  26. data/lib/appsignal/version.rb +1 -1
  27. data/lib/puma/plugin/appsignal.rb +2 -1
  28. data/spec/lib/appsignal/cli/diagnose_spec.rb +2 -1
  29. data/spec/lib/appsignal/config_spec.rb +6 -1
  30. data/spec/lib/appsignal/environment_spec.rb +167 -0
  31. data/spec/lib/appsignal/hooks/delayed_job_spec.rb +198 -166
  32. data/spec/lib/appsignal/hooks/puma_spec.rb +2 -181
  33. data/spec/lib/appsignal/hooks/sidekiq_spec.rb +256 -462
  34. data/spec/lib/appsignal/integrations/padrino_spec.rb +1 -1
  35. data/spec/lib/appsignal/integrations/resque_active_job_spec.rb +55 -13
  36. data/spec/lib/appsignal/probes/puma_spec.rb +180 -0
  37. data/spec/lib/appsignal/probes/sidekiq_spec.rb +201 -0
  38. data/spec/lib/appsignal/rack/js_exception_catcher_spec.rb +9 -4
  39. data/spec/lib/appsignal/transaction_spec.rb +30 -13
  40. data/spec/lib/appsignal_spec.rb +22 -0
  41. data/spec/lib/puma/appsignal_spec.rb +1 -1
  42. data/spec/support/helpers/dependency_helper.rb +5 -0
  43. data/spec/support/helpers/env_helpers.rb +1 -1
  44. data/spec/support/helpers/environment_metdata_helper.rb +16 -0
  45. data/spec/support/stubs/sidekiq/api.rb +1 -1
  46. metadata +19 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e50a778f6ba1e9f4147ca4ce5b05b930131572ac4a427e94916d517fc25cc8cf
4
- data.tar.gz: 750530a66bf499dd130a52987a7df7428ce55a0bb7d034fceb9603850ff4648d
3
+ metadata.gz: 1c88daf539fd30d108a70041339bea3d9b4fbc893f091f1b7b9b6792bd7977f4
4
+ data.tar.gz: d7195e855b5a2ea44db9cfdd9c132dfb2afda1994bc4c7c8aba08181f47081d8
5
5
  SHA512:
6
- metadata.gz: 50728b8fa3a9a4f24d9b662b4f69b2337f57367d2e0b373b45247123e2628c02bbcc1d9792f1ecab784a6e1e93bf95b20bb04ac6c38eb5dd78342eb4d0be6cab
7
- data.tar.gz: 11ff3543333791541973623f246e015f8f186a8941a0260d5025e1e2201d9ab657ef78ada39ef3a7998f11258f423157743b726d3d4e62c94777977659b4853a
6
+ metadata.gz: c1dda62fbb16b7cc30233a23a3d440c462bbbc1a060cfefd1207cdd7c1574d09de82e07661e9c0e3bf0dae078a8ff8c1f3990c5768dee43501b7c6fb0254a668
7
+ data.tar.gz: 9eb9618c8cb83f87db2b183573e64313a6fe01651bf2f5e93b748347de38e64716053ba7dcf42ce9a2954caa1c3e2096153acb37543a49cfe4c069afe7e8c705
@@ -33,9 +33,10 @@ global_job_config:
33
33
  - checkout
34
34
  - sem-version ruby $RUBY_VERSION
35
35
  - "./support/check_versions"
36
- - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE),$_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET,$_BUNDLER_CACHE-bundler-$RUBY_VERSION
37
- - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE),$_GEMS_CACHE-gems-$RUBY_VERSION
36
+ - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
37
+ - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
38
38
  - "./support/install_deps"
39
+ - bundle config set clean 'true'
39
40
  - "./support/bundler_wrapper install --jobs=3 --retry=3"
40
41
  epilogue:
41
42
  on_pass:
@@ -43,6 +44,11 @@ global_job_config:
43
44
  - cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
44
45
  .bundle
45
46
  - cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE) $HOME/.gem
47
+ on_fail:
48
+ commands:
49
+ - "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report
50
+ file found'"
51
+ - "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
46
52
  blocks:
47
53
  - name: Validation
48
54
  dependencies: []
@@ -166,20 +172,6 @@ blocks:
166
172
  value: 1.17.3
167
173
  commands:
168
174
  - "./support/bundler_wrapper exec rake test"
169
- - name: Ruby 2.0.0-p648 for padrino
170
- env_vars:
171
- - name: RUBY_VERSION
172
- value: 2.0.0-p648
173
- - name: GEMSET
174
- value: padrino
175
- - name: BUNDLE_GEMFILE
176
- value: gemfiles/padrino.gemfile
177
- - name: _RUBYGEMS_VERSION
178
- value: 2.7.8
179
- - name: _BUNDLER_VERSION
180
- value: 1.17.3
181
- commands:
182
- - "./support/bundler_wrapper exec rake test"
183
175
  - name: Ruby 2.0.0-p648 for que
184
176
  env_vars:
185
177
  - name: RUBY_VERSION
@@ -521,7 +513,7 @@ blocks:
521
513
  - name: _RUBYGEMS_VERSION
522
514
  value: latest
523
515
  - name: _BUNDLER_VERSION
524
- value: 1.17.3
516
+ value: latest
525
517
  commands:
526
518
  - "./support/bundler_wrapper exec rake test"
527
519
  - name: Ruby 2.6.5 for que
@@ -678,7 +670,7 @@ blocks:
678
670
  value: latest
679
671
  commands:
680
672
  - "./support/bundler_wrapper exec rake test"
681
- - name: Ruby 2.7.0
673
+ - name: Ruby 2.7.1
682
674
  dependencies:
683
675
  - Validation
684
676
  task:
@@ -686,10 +678,10 @@ blocks:
686
678
  commands:
687
679
  - "./support/bundler_wrapper exec rake extension:install"
688
680
  jobs:
689
- - name: Ruby 2.7.0 for no_dependencies
681
+ - name: Ruby 2.7.1 for no_dependencies
690
682
  env_vars:
691
683
  - name: RUBY_VERSION
692
- value: 2.7.0
684
+ value: 2.7.1
693
685
  - name: GEMSET
694
686
  value: no_dependencies
695
687
  - name: BUNDLE_GEMFILE
@@ -700,18 +692,18 @@ blocks:
700
692
  value: latest
701
693
  commands:
702
694
  - "./support/bundler_wrapper exec rake test"
703
- - name: Ruby 2.7.0 - Gems
695
+ - name: Ruby 2.7.1 - Gems
704
696
  dependencies:
705
- - Ruby 2.7.0
697
+ - Ruby 2.7.1
706
698
  task:
707
699
  prologue:
708
700
  commands:
709
701
  - "./support/bundler_wrapper exec rake extension:install"
710
702
  jobs:
711
- - name: Ruby 2.7.0 for capistrano2
703
+ - name: Ruby 2.7.1 for capistrano2
712
704
  env_vars:
713
705
  - name: RUBY_VERSION
714
- value: 2.7.0
706
+ value: 2.7.1
715
707
  - name: GEMSET
716
708
  value: capistrano2
717
709
  - name: BUNDLE_GEMFILE
@@ -722,10 +714,10 @@ blocks:
722
714
  value: latest
723
715
  commands:
724
716
  - "./support/bundler_wrapper exec rake test"
725
- - name: Ruby 2.7.0 for capistrano3
717
+ - name: Ruby 2.7.1 for capistrano3
726
718
  env_vars:
727
719
  - name: RUBY_VERSION
728
- value: 2.7.0
720
+ value: 2.7.1
729
721
  - name: GEMSET
730
722
  value: capistrano3
731
723
  - name: BUNDLE_GEMFILE
@@ -736,10 +728,10 @@ blocks:
736
728
  value: latest
737
729
  commands:
738
730
  - "./support/bundler_wrapper exec rake test"
739
- - name: Ruby 2.7.0 for grape
731
+ - name: Ruby 2.7.1 for grape
740
732
  env_vars:
741
733
  - name: RUBY_VERSION
742
- value: 2.7.0
734
+ value: 2.7.1
743
735
  - name: GEMSET
744
736
  value: grape
745
737
  - name: BUNDLE_GEMFILE
@@ -750,10 +742,10 @@ blocks:
750
742
  value: latest
751
743
  commands:
752
744
  - "./support/bundler_wrapper exec rake test"
753
- - name: Ruby 2.7.0 for padrino
745
+ - name: Ruby 2.7.1 for padrino
754
746
  env_vars:
755
747
  - name: RUBY_VERSION
756
- value: 2.7.0
748
+ value: 2.7.1
757
749
  - name: GEMSET
758
750
  value: padrino
759
751
  - name: BUNDLE_GEMFILE
@@ -761,13 +753,13 @@ blocks:
761
753
  - name: _RUBYGEMS_VERSION
762
754
  value: latest
763
755
  - name: _BUNDLER_VERSION
764
- value: 1.17.3
756
+ value: latest
765
757
  commands:
766
758
  - "./support/bundler_wrapper exec rake test"
767
- - name: Ruby 2.7.0 for que
759
+ - name: Ruby 2.7.1 for que
768
760
  env_vars:
769
761
  - name: RUBY_VERSION
770
- value: 2.7.0
762
+ value: 2.7.1
771
763
  - name: GEMSET
772
764
  value: que
773
765
  - name: BUNDLE_GEMFILE
@@ -778,10 +770,10 @@ blocks:
778
770
  value: latest
779
771
  commands:
780
772
  - "./support/bundler_wrapper exec rake test"
781
- - name: Ruby 2.7.0 for que_beta
773
+ - name: Ruby 2.7.1 for que_beta
782
774
  env_vars:
783
775
  - name: RUBY_VERSION
784
- value: 2.7.0
776
+ value: 2.7.1
785
777
  - name: GEMSET
786
778
  value: que_beta
787
779
  - name: BUNDLE_GEMFILE
@@ -792,10 +784,10 @@ blocks:
792
784
  value: latest
793
785
  commands:
794
786
  - "./support/bundler_wrapper exec rake test"
795
- - name: Ruby 2.7.0 for rails-5.0
787
+ - name: Ruby 2.7.1 for rails-5.0
796
788
  env_vars:
797
789
  - name: RUBY_VERSION
798
- value: 2.7.0
790
+ value: 2.7.1
799
791
  - name: GEMSET
800
792
  value: rails-5.0
801
793
  - name: BUNDLE_GEMFILE
@@ -806,10 +798,10 @@ blocks:
806
798
  value: latest
807
799
  commands:
808
800
  - "./support/bundler_wrapper exec rake test"
809
- - name: Ruby 2.7.0 for rails-5.1
801
+ - name: Ruby 2.7.1 for rails-5.1
810
802
  env_vars:
811
803
  - name: RUBY_VERSION
812
- value: 2.7.0
804
+ value: 2.7.1
813
805
  - name: GEMSET
814
806
  value: rails-5.1
815
807
  - name: BUNDLE_GEMFILE
@@ -820,10 +812,10 @@ blocks:
820
812
  value: latest
821
813
  commands:
822
814
  - "./support/bundler_wrapper exec rake test"
823
- - name: Ruby 2.7.0 for rails-5.2
815
+ - name: Ruby 2.7.1 for rails-5.2
824
816
  env_vars:
825
817
  - name: RUBY_VERSION
826
- value: 2.7.0
818
+ value: 2.7.1
827
819
  - name: GEMSET
828
820
  value: rails-5.2
829
821
  - name: BUNDLE_GEMFILE
@@ -834,10 +826,10 @@ blocks:
834
826
  value: latest
835
827
  commands:
836
828
  - "./support/bundler_wrapper exec rake test"
837
- - name: Ruby 2.7.0 for rails-6.0
829
+ - name: Ruby 2.7.1 for rails-6.0
838
830
  env_vars:
839
831
  - name: RUBY_VERSION
840
- value: 2.7.0
832
+ value: 2.7.1
841
833
  - name: GEMSET
842
834
  value: rails-6.0
843
835
  - name: BUNDLE_GEMFILE
@@ -848,10 +840,10 @@ blocks:
848
840
  value: latest
849
841
  commands:
850
842
  - "./support/bundler_wrapper exec rake test"
851
- - name: Ruby 2.7.0 for resque
843
+ - name: Ruby 2.7.1 for resque
852
844
  env_vars:
853
845
  - name: RUBY_VERSION
854
- value: 2.7.0
846
+ value: 2.7.1
855
847
  - name: GEMSET
856
848
  value: resque
857
849
  - name: BUNDLE_GEMFILE
@@ -862,10 +854,10 @@ blocks:
862
854
  value: 1.17.3
863
855
  commands:
864
856
  - "./support/bundler_wrapper exec rake test"
865
- - name: Ruby 2.7.0 for sequel
857
+ - name: Ruby 2.7.1 for sequel
866
858
  env_vars:
867
859
  - name: RUBY_VERSION
868
- value: 2.7.0
860
+ value: 2.7.1
869
861
  - name: GEMSET
870
862
  value: sequel
871
863
  - name: BUNDLE_GEMFILE
@@ -876,10 +868,10 @@ blocks:
876
868
  value: latest
877
869
  commands:
878
870
  - "./support/bundler_wrapper exec rake test"
879
- - name: Ruby 2.7.0 for sequel-435
871
+ - name: Ruby 2.7.1 for sequel-435
880
872
  env_vars:
881
873
  - name: RUBY_VERSION
882
- value: 2.7.0
874
+ value: 2.7.1
883
875
  - name: GEMSET
884
876
  value: sequel-435
885
877
  - name: BUNDLE_GEMFILE
@@ -890,10 +882,10 @@ blocks:
890
882
  value: latest
891
883
  commands:
892
884
  - "./support/bundler_wrapper exec rake test"
893
- - name: Ruby 2.7.0 for sinatra
885
+ - name: Ruby 2.7.1 for sinatra
894
886
  env_vars:
895
887
  - name: RUBY_VERSION
896
- value: 2.7.0
888
+ value: 2.7.1
897
889
  - name: GEMSET
898
890
  value: sinatra
899
891
  - name: BUNDLE_GEMFILE
@@ -904,10 +896,10 @@ blocks:
904
896
  value: latest
905
897
  commands:
906
898
  - "./support/bundler_wrapper exec rake test"
907
- - name: Ruby 2.7.0 for webmachine
899
+ - name: Ruby 2.7.1 for webmachine
908
900
  env_vars:
909
901
  - name: RUBY_VERSION
910
- value: 2.7.0
902
+ value: 2.7.1
911
903
  - name: GEMSET
912
904
  value: webmachine
913
905
  - name: BUNDLE_GEMFILE
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ # 2.11.0
4
+ - Track queue time regardless of namespace. Support custom namespaces. PR #602
5
+ - Improve deprecation message from frontend error middleware. PR #620
6
+ - Report Ruby environment metadata. PR #621, #627
7
+ - Refactor: Move minutely probes to their own files and modules. PR #623
8
+
9
+ # 2.10.9
10
+ - Use http proxy if configured when downloading agent. PR #606
11
+ - Clear event details cache every 48 hours.
12
+ Commit eb5e899db69fcd7cfa221567bfd6ac04f2654c9c
13
+ - Add support for Resque ActiveJob queue time reporting. PR #616
14
+
15
+ ## 2.10.8
16
+ - Fix failed checksum error log. PR #609
17
+ - Fix DelayedJob action name detection for objects that listen to the `[]`
18
+ method and return a non-String value. #611
19
+ - CI test build improvements. PR #607, #608, #614
20
+
3
21
  ## 2.10.7
4
22
  - Revert fix for compatibility with the `http_logger` gem. PR #604.
5
23
  For more information, see issue #603 about our reasoning and discussion.
@@ -34,15 +34,20 @@ semaphore: # Default `.semaphore/semaphore.yml` contents
34
34
  - checkout
35
35
  - sem-version ruby $RUBY_VERSION
36
36
  - ./support/check_versions
37
- - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE),$_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET,$_BUNDLER_CACHE-bundler-$RUBY_VERSION
38
- - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE),$_GEMS_CACHE-gems-$RUBY_VERSION
37
+ - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
38
+ - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
39
39
  - ./support/install_deps
40
+ - bundle config set clean 'true'
40
41
  - ./support/bundler_wrapper install --jobs=3 --retry=3
41
42
  epilogue:
42
43
  on_pass:
43
44
  commands:
44
45
  - cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE) .bundle
45
46
  - cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE) $HOME/.gem
47
+ on_fail:
48
+ commands:
49
+ - "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report file found'"
50
+ - "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
46
51
 
47
52
  blocks:
48
53
  - name: Validation
@@ -110,7 +115,7 @@ matrix:
110
115
  - ruby: "2.5.7"
111
116
  gems: "minimal"
112
117
  - ruby: "2.6.5"
113
- - ruby: "2.7.0"
118
+ - ruby: "2.7.1"
114
119
  - ruby: "jruby-9.1.17.0"
115
120
  gems: "minimal"
116
121
  gems:
@@ -119,7 +124,9 @@ matrix:
119
124
  - gem: "capistrano3"
120
125
  - gem: "grape"
121
126
  - gem: "padrino"
122
- bundler: "1.17.3"
127
+ exclude:
128
+ ruby:
129
+ - "2.0.0-p648"
123
130
  - gem: "que"
124
131
  - gem: "que_beta"
125
132
  exclude:
@@ -130,13 +137,13 @@ matrix:
130
137
  exclude:
131
138
  ruby:
132
139
  - "2.6.5"
133
- - "2.7.0"
140
+ - "2.7.1"
134
141
  - gem: "rails-4.2"
135
142
  bundler: "1.17.3"
136
143
  exclude:
137
144
  ruby:
138
145
  - "2.6.5"
139
- - "2.7.0"
146
+ - "2.7.1"
140
147
  - gem: "rails-5.0"
141
148
  exclude:
142
149
  ruby:
@@ -1,70 +1,70 @@
1
1
  ---
2
- version: 96b684b
2
+ version: 710d341
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: 6278d03abdcacde207e210374601b0a98eabace8cbc9fb74dffea3c18fc8a252
9
+ checksum: 47f53b67d5e28e23859ed7bbcc6cde7ba3c142bf0f7c32ffa0d89c628178d4cc
10
10
  filename: appsignal-x86_64-darwin-all-static.tar.gz
11
11
  dynamic:
12
- checksum: b0ad069bbff68acde7ef19de47938fa786771bae4821c757718f1894b9654a93
12
+ checksum: 0b2b1533cf5c6f400fbe367fd6a3200c60ecfe6cd8b44a6707bc2a57ef78fe4d
13
13
  filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
14
14
  universal-darwin:
15
15
  static:
16
- checksum: 6278d03abdcacde207e210374601b0a98eabace8cbc9fb74dffea3c18fc8a252
16
+ checksum: 47f53b67d5e28e23859ed7bbcc6cde7ba3c142bf0f7c32ffa0d89c628178d4cc
17
17
  filename: appsignal-x86_64-darwin-all-static.tar.gz
18
18
  dynamic:
19
- checksum: b0ad069bbff68acde7ef19de47938fa786771bae4821c757718f1894b9654a93
19
+ checksum: 0b2b1533cf5c6f400fbe367fd6a3200c60ecfe6cd8b44a6707bc2a57ef78fe4d
20
20
  filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
21
21
  i686-linux:
22
22
  static:
23
- checksum: f3e79a575241a50d7968fe4743c4f4e5aebb840e0b8664d055383caf696d5d38
23
+ checksum: d815dd40495175a83d1bed0facfb97a472a74bdfe7aafbe6f72192e66b45a559
24
24
  filename: appsignal-i686-linux-all-static.tar.gz
25
25
  dynamic:
26
- checksum: 0df11c9fe85c9c94336dfb4df788032c78eda1ea648f98e8c1e4e213258816e1
26
+ checksum: 2e785cf04d500eaad577c3391d236c38d850fed9b541a0e79803ee9bf66852aa
27
27
  filename: appsignal-i686-linux-all-dynamic.tar.gz
28
28
  x86-linux:
29
29
  static:
30
- checksum: f3e79a575241a50d7968fe4743c4f4e5aebb840e0b8664d055383caf696d5d38
30
+ checksum: d815dd40495175a83d1bed0facfb97a472a74bdfe7aafbe6f72192e66b45a559
31
31
  filename: appsignal-i686-linux-all-static.tar.gz
32
32
  dynamic:
33
- checksum: 0df11c9fe85c9c94336dfb4df788032c78eda1ea648f98e8c1e4e213258816e1
33
+ checksum: 2e785cf04d500eaad577c3391d236c38d850fed9b541a0e79803ee9bf66852aa
34
34
  filename: appsignal-i686-linux-all-dynamic.tar.gz
35
35
  i686-linux-musl:
36
36
  static:
37
- checksum: 07ab5749b532f1cc6cb45a3334fd950f6d15edacbe6d1bfe25af75b24df73cd1
37
+ checksum: 4c66f26fb7925445ba0bb353cbf753f00572ffdae16a28220f6306bcb34a686b
38
38
  filename: appsignal-i686-linux-musl-all-static.tar.gz
39
39
  x86-linux-musl:
40
40
  static:
41
- checksum: 07ab5749b532f1cc6cb45a3334fd950f6d15edacbe6d1bfe25af75b24df73cd1
41
+ checksum: 4c66f26fb7925445ba0bb353cbf753f00572ffdae16a28220f6306bcb34a686b
42
42
  filename: appsignal-i686-linux-musl-all-static.tar.gz
43
43
  x86_64-linux:
44
44
  static:
45
- checksum: d0e8f48973bca7d783d654404617bb5ab4f47756deb6805c4876bfcda83981cd
45
+ checksum: d59929c9b2075eb93f0b66a8f9ea4d7d90a897b996a4ff054fd68610282ed616
46
46
  filename: appsignal-x86_64-linux-all-static.tar.gz
47
47
  dynamic:
48
- checksum: aff7569b04416cd40440d228c5b9881b860e1ecf597bc996ac02c2735f49d993
48
+ checksum: b1d22b323fdf9d8dbce17194ae42d3f7ddb252342db70428aea1c6baab5e6959
49
49
  filename: appsignal-x86_64-linux-all-dynamic.tar.gz
50
50
  x86_64-linux-musl:
51
51
  static:
52
- checksum: 2e3db648d0883f2a7e72f1207ec0976b97d144cafe0a3e755df2d91ca93d113f
52
+ checksum: 7b8cd90260f6bc31ed2aa61dac8889a79a8c5b35f453b2f9d47d1e74133d2c2f
53
53
  filename: appsignal-x86_64-linux-musl-all-static.tar.gz
54
54
  dynamic:
55
- checksum: 5da62f954d761af47da16f34ab675b46fedd7b91b485574bf895b43896f61ce0
55
+ checksum: 8922f1e3a845ea869a1553aeb87681346c709dbab96636f703dfc3bc855621d8
56
56
  filename: appsignal-x86_64-linux-musl-all-dynamic.tar.gz
57
57
  x86_64-freebsd:
58
58
  static:
59
- checksum: 8dc226834ef39bac43dbc4a5c6a812c50c34669b0607036dd9494ac587e72d6a
59
+ checksum: bb15ae46b7df4f2851982bcd8b079cd6b5ea384c19eaed9f20cdf152e435c4ea
60
60
  filename: appsignal-x86_64-freebsd-all-static.tar.gz
61
61
  dynamic:
62
- checksum: 0edfbaa450c89dba5750b306043efc00b82851dce2b75fa6ee62de07d30b4a3b
62
+ checksum: 0be60faf18df3eddedd5d85e34fdbcccb3ce6aae52ef6faeebe881c3e0fe2022
63
63
  filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz
64
64
  amd64-freebsd:
65
65
  static:
66
- checksum: 8dc226834ef39bac43dbc4a5c6a812c50c34669b0607036dd9494ac587e72d6a
66
+ checksum: bb15ae46b7df4f2851982bcd8b079cd6b5ea384c19eaed9f20cdf152e435c4ea
67
67
  filename: appsignal-x86_64-freebsd-all-static.tar.gz
68
68
  dynamic:
69
- checksum: 0edfbaa450c89dba5750b306043efc00b82851dce2b75fa6ee62de07d30b4a3b
69
+ checksum: 0be60faf18df3eddedd5d85e34fdbcccb3ce6aae52ef6faeebe881c3e0fe2022
70
70
  filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz