newrelic_rpm 3.9.5.251 → 3.9.6.257
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +74 -3
- data/GUIDELINES_FOR_CONTRIBUTING.md +19 -15
- data/README.md +1 -1
- data/Rakefile +22 -1
- data/lib/new_relic/agent/agent.rb +17 -5
- data/lib/new_relic/agent/agent_logger.rb +4 -0
- data/lib/new_relic/agent/configuration/default_source.rb +45 -1
- data/lib/new_relic/agent/configuration/manager.rb +43 -7
- data/lib/new_relic/agent/cross_app_monitor.rb +0 -3
- data/lib/new_relic/agent/cross_app_tracing.rb +8 -5
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +4 -1
- data/lib/new_relic/agent/instrumentation/active_job.rb +93 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra.rb +1 -2
- data/lib/new_relic/agent/new_relic_service.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +20 -1
- data/lib/new_relic/agent/new_relic_service/pruby_marshaller.rb +5 -1
- data/lib/new_relic/agent/pipe_channel_manager.rb +32 -11
- data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
- data/lib/new_relic/agent/threading/backtrace_node.rb +4 -3
- data/lib/new_relic/agent/transaction.rb +27 -6
- data/lib/new_relic/agent/transaction_state.rb +3 -3
- data/lib/new_relic/agent/vm/mri_vm.rb +3 -3
- data/lib/new_relic/control/frameworks/rails3.rb +1 -16
- data/lib/new_relic/control/instance_methods.rb +2 -0
- data/lib/new_relic/json_wrapper.rb +18 -3
- data/lib/new_relic/rack/browser_monitoring.rb +7 -5
- data/lib/new_relic/rack/developer_mode.rb +2 -0
- data/lib/new_relic/rack/error_collector.rb +12 -51
- data/lib/new_relic/transaction_sample.rb +0 -4
- data/lib/new_relic/transaction_sample/segment.rb +0 -4
- data/lib/new_relic/version.rb +1 -1
- data/newrelic_rpm.gemspec +3 -2
- data/test/agent_helper.rb +1 -1
- data/test/config/test.cert.crt +16 -12
- data/test/config/test.cert.key +13 -13
- data/test/environments/lib/environments/runner.rb +3 -0
- data/test/environments/rails30/Gemfile +2 -2
- data/test/environments/rails31/Gemfile +2 -2
- data/test/environments/rails32/Gemfile +2 -2
- data/test/environments/rails40/Gemfile +2 -4
- data/test/environments/rails41/Gemfile +2 -4
- data/test/environments/rails42/Gemfile +2 -4
- data/test/fixtures/cross_agent_tests/attribute_configuration.json +349 -0
- data/test/fixtures/cross_agent_tests/labels.json +31 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md +16 -0
- data/test/fixtures/cross_agent_tests/rum_client_config.json +9 -9
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head +4 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html +6 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html +12 -0
- data/test/multiverse/lib/multiverse/runner.rb +33 -1
- data/test/multiverse/lib/multiverse/suite.rb +79 -7
- data/test/multiverse/suites/active_record/Envfile +1 -1
- data/test/multiverse/suites/agent_only/encoding_handling_test.rb +1 -1
- data/test/multiverse/suites/agent_only/labels_test.rb +2 -1
- data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +2 -3
- data/test/multiverse/suites/agent_only/thread_profiling_test.rb +6 -6
- data/test/multiverse/suites/capistrano/Envfile +2 -2
- data/test/multiverse/suites/capistrano2/Envfile +4 -0
- data/test/multiverse/suites/curb/Envfile +4 -0
- data/test/multiverse/suites/high_security/config/newrelic.yml +5 -2
- data/test/multiverse/suites/high_security/high_security_test.rb +10 -8
- data/test/multiverse/suites/json/Envfile +23 -0
- data/test/multiverse/suites/json/config/newrelic.yml +22 -0
- data/test/multiverse/suites/json/json_test.rb +17 -0
- data/test/multiverse/suites/marshalling/marshalling_test.rb +2 -45
- data/test/multiverse/suites/rails/Envfile +3 -3
- data/test/multiverse/suites/rails/activejob_test.rb +137 -0
- data/test/multiverse/suites/rails/error_tracing_test.rb +15 -8
- data/test/multiverse/suites/rails/parameter_capture_test.rb +39 -19
- data/test/multiverse/suites/sequel/Envfile +5 -5
- data/test/multiverse/suites/sidekiq/Envfile +2 -2
- data/test/multiverse/suites/sinatra/Envfile +2 -1
- data/test/multiverse/suites/yajl/Envfile +13 -0
- data/test/multiverse/suites/yajl/config/newrelic.yml +21 -0
- data/test/multiverse/suites/yajl/yajl_test.rb +19 -0
- data/test/new_relic/agent/agent_logger_test.rb +10 -0
- data/test/new_relic/agent/agent_test.rb +7 -1
- data/test/new_relic/agent/configuration/default_source_test.rb +24 -0
- data/test/new_relic/agent/configuration/manager_test.rb +60 -2
- data/test/new_relic/agent/configuration/orphan_configuration_test.rb +25 -13
- data/test/new_relic/agent/cross_app_tracing_test.rb +10 -1
- data/test/new_relic/agent/instrumentation/active_job_test.rb +20 -0
- data/test/new_relic/agent/instrumentation/active_record_test.rb +10 -17
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +15 -0
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +1 -1
- data/test/new_relic/agent/new_relic_service_test.rb +24 -0
- data/test/new_relic/agent/pipe_channel_manager_test.rb +44 -2
- data/test/new_relic/agent/threading/agent_thread_test.rb +1 -2
- data/test/new_relic/agent/threading/backtrace_node_test.rb +12 -0
- data/test/new_relic/agent/transaction_state_test.rb +3 -6
- data/test/new_relic/agent/transaction_test.rb +163 -0
- data/test/new_relic/agent_test.rb +13 -1
- data/test/new_relic/fake_collector.rb +5 -5
- data/test/new_relic/fake_server.rb +5 -3
- data/test/new_relic/http_client_test_cases.rb +0 -4
- data/test/new_relic/marshalling_test_cases.rb +54 -0
- data/test/new_relic/multiverse_helpers.rb +2 -2
- data/test/new_relic/rack/browser_monitoring_test.rb +6 -0
- data/test/new_relic/rack/developer_mode_test.rb +8 -0
- data/test/new_relic/rack/error_collector_test.rb +0 -41
- data/test/new_relic/transaction_sample/segment_test.rb +0 -13
- data/test/new_relic/transaction_sample_test.rb +1 -11
- data/test/performance/lib/performance/instrumentation/perf_tools.rb +1 -1
- data/test/performance/lib/performance/runner.rb +1 -1
- data/test/performance/script/runner +2 -1
- data/test/performance/suites/rum_autoinsertion.rb +12 -2
- metadata +24 -11
- metadata.gz.sig +0 -0
- data/test/config/test.cert.csr +0 -11
- data/test/config/testing-privkey.pem +0 -18
@@ -62,19 +62,6 @@ class NewRelic::TransactionSample::SegmentTest < Minitest::Test
|
|
62
62
|
assert_equal(expected, segment.to_array)
|
63
63
|
end
|
64
64
|
|
65
|
-
if RUBY_VERSION >= '1.9.2'
|
66
|
-
def test_to_json
|
67
|
-
parent = NewRelic::TransactionSample::Segment.new(1, 'Custom/test/parent')
|
68
|
-
parent.params[:test] = 'value'
|
69
|
-
child = NewRelic::TransactionSample::Segment.new(2, 'Custom/test/child')
|
70
|
-
child.end_trace(3)
|
71
|
-
parent.add_called_segment(child)
|
72
|
-
parent.end_trace(4)
|
73
|
-
expected_string = "[1000,4000,\"Custom/test/parent\",{\"test\":\"value\"},[[2000,3000,\"Custom/test/child\",{},[]]]]"
|
74
|
-
assert_equal(expected_string, parent.to_json)
|
75
|
-
end
|
76
|
-
end
|
77
|
-
|
78
65
|
def test_path_string
|
79
66
|
s = NewRelic::TransactionSample::Segment.new(Time.now, 'Custom/test/metric')
|
80
67
|
assert_equal("Custom/test/metric[]", s.path_string)
|
@@ -253,16 +253,6 @@ class NewRelic::TransactionSampleTest < Minitest::Test
|
|
253
253
|
assert_equal expected, transaction.to_array
|
254
254
|
end
|
255
255
|
|
256
|
-
if RUBY_VERSION >= '1.9.2'
|
257
|
-
def test_to_json
|
258
|
-
expected_string = JSON.dump([@t.start_time.to_f,
|
259
|
-
@t.params[:request_params],
|
260
|
-
@t.params[:custom_params],
|
261
|
-
@t.root_segment.to_array])
|
262
|
-
assert_equal expected_string, @t.to_json
|
263
|
-
end
|
264
|
-
end
|
265
|
-
|
266
256
|
def test_to_collector_array
|
267
257
|
expected_array = [(@t.start_time.to_f * 1000).round,
|
268
258
|
(@t.duration * 1000).round,
|
@@ -323,7 +313,7 @@ class NewRelic::TransactionSampleTest < Minitest::Test
|
|
323
313
|
|
324
314
|
def trace_tree(transaction=@t)
|
325
315
|
if NewRelic::Agent::NewRelicService::JsonMarshaller.is_supported?
|
326
|
-
trace_tree = compress(transaction.
|
316
|
+
trace_tree = compress(JSON.dump(transaction.to_array))
|
327
317
|
else
|
328
318
|
trace_tree = transaction.to_array
|
329
319
|
end
|
@@ -177,7 +177,7 @@ module Performance
|
|
177
177
|
suite, _method = @options[:identifier].split('#')
|
178
178
|
TestCase.subclasses.select { |cls| cls.name == suite }
|
179
179
|
elsif @options[:suite]
|
180
|
-
TestCase.subclasses.select { |cls|
|
180
|
+
TestCase.subclasses.select { |cls| @options[:suite].include?(cls.name) }
|
181
181
|
else
|
182
182
|
TestCase.subclasses
|
183
183
|
end
|
@@ -35,7 +35,8 @@ parser = OptionParser.new do |opts|
|
|
35
35
|
end
|
36
36
|
|
37
37
|
opts.on("-s", "--suite=NAME", "Filter to just run a single test suite") do |name|
|
38
|
-
options[:suite]
|
38
|
+
options[:suite] ||= []
|
39
|
+
options[:suite] << name
|
39
40
|
end
|
40
41
|
|
41
42
|
opts.on("-n", "--name=NAME", "Filter tests to those matching NAME") do |name|
|
@@ -24,7 +24,16 @@ class RumAutoInsertion < Performance::TestCase
|
|
24
24
|
}
|
25
25
|
NewRelic::Agent.config.add_config_for_testing(@config)
|
26
26
|
|
27
|
-
@
|
27
|
+
@app = Class.new do
|
28
|
+
attr_accessor :text
|
29
|
+
|
30
|
+
def call(*_)
|
31
|
+
[200, { "Content-Type" => "text/html" }, [text]]
|
32
|
+
end
|
33
|
+
end.new
|
34
|
+
|
35
|
+
@browser_monitor = NewRelic::Rack::BrowserMonitoring.new(@app)
|
36
|
+
|
28
37
|
@html = "<html><head>#{'<script>alert("boo");</script>' * 1_000}</head><body></body></html>"
|
29
38
|
@html_with_meta = "<html><head><meta http-equiv='X-UA-Compatible' content='IE=7'/>#{'<script>alert("boo");</script>' * 1_000}</head><body></body></html>"
|
30
39
|
@html_with_meta_after = "<html><head>#{'<script>alert("boo");</script>' * 1_000}<meta http-equiv='X-UA-Compatible' content='IE=7'/></head><body></body></html>"
|
@@ -58,9 +67,10 @@ class RumAutoInsertion < Performance::TestCase
|
|
58
67
|
end
|
59
68
|
|
60
69
|
def run_autoinstrument_source(text)
|
70
|
+
@app.text = text
|
61
71
|
@host.run do
|
62
72
|
iterations.times do
|
63
|
-
browser_monitor.
|
73
|
+
browser_monitor.call({})
|
64
74
|
end
|
65
75
|
end
|
66
76
|
end
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic_rpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.9.
|
4
|
+
version: 3.9.6.257
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Jason Clark
|
9
|
-
-
|
9
|
+
- Tim Krajcar
|
10
|
+
- Chris Pine
|
10
11
|
- Jonan Scheffler
|
11
12
|
- Ben Weintraub
|
12
|
-
- Chris Pine
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain:
|
@@ -41,7 +41,7 @@ cert_chain:
|
|
41
41
|
K0ZZTXduQWIrVm1OT2h2MVMrc0poYmpaMzBQS2d6NnZMaFQ2dW5pZUNqTGs5
|
42
42
|
d0dHbWxTSwpZamJudkE5cXJhTExhalNqCi0tLS0tRU5EIENFUlRJRklDQVRF
|
43
43
|
LS0tLS0K
|
44
|
-
date: 2014-
|
44
|
+
date: 2014-10-20 00:00:00.000000000 Z
|
45
45
|
dependencies:
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: rake
|
@@ -192,17 +192,17 @@ dependencies:
|
|
192
192
|
requirement: !ruby/object:Gem::Requirement
|
193
193
|
none: false
|
194
194
|
requirements:
|
195
|
-
- - '
|
195
|
+
- - ! '>='
|
196
196
|
- !ruby/object:Gem::Version
|
197
|
-
version:
|
197
|
+
version: '0'
|
198
198
|
type: :development
|
199
199
|
prerelease: false
|
200
200
|
version_requirements: !ruby/object:Gem::Requirement
|
201
201
|
none: false
|
202
202
|
requirements:
|
203
|
-
- - '
|
203
|
+
- - ! '>='
|
204
204
|
- !ruby/object:Gem::Version
|
205
|
-
version:
|
205
|
+
version: '0'
|
206
206
|
description: ! 'New Relic is a performance management system, developed by New Relic,
|
207
207
|
|
208
208
|
Inc (http://www.newrelic.com). New Relic provides you with deep
|
@@ -301,6 +301,7 @@ files:
|
|
301
301
|
- lib/new_relic/agent/instrumentation.rb
|
302
302
|
- lib/new_relic/agent/instrumentation/action_controller_subscriber.rb
|
303
303
|
- lib/new_relic/agent/instrumentation/action_view_subscriber.rb
|
304
|
+
- lib/new_relic/agent/instrumentation/active_job.rb
|
304
305
|
- lib/new_relic/agent/instrumentation/active_merchant.rb
|
305
306
|
- lib/new_relic/agent/instrumentation/active_record.rb
|
306
307
|
- lib/new_relic/agent/instrumentation/active_record_4.rb
|
@@ -477,10 +478,8 @@ files:
|
|
477
478
|
- test/agent_helper.rb
|
478
479
|
- test/config/newrelic.yml
|
479
480
|
- test/config/test.cert.crt
|
480
|
-
- test/config/test.cert.csr
|
481
481
|
- test/config/test.cert.key
|
482
482
|
- test/config/test_control.rb
|
483
|
-
- test/config/testing-privkey.pem
|
484
483
|
- test/environments/.gitignore
|
485
484
|
- test/environments/lib/environments/runner.rb
|
486
485
|
- test/environments/norails/Gemfile
|
@@ -563,8 +562,10 @@ files:
|
|
563
562
|
- test/environments/rails42/config/environment.rb
|
564
563
|
- test/environments/rails42/db/schema.rb
|
565
564
|
- test/fixtures/cross_agent_tests/README.md
|
565
|
+
- test/fixtures/cross_agent_tests/attribute_configuration.json
|
566
566
|
- test/fixtures/cross_agent_tests/cat_map.json
|
567
567
|
- test/fixtures/cross_agent_tests/labels.json
|
568
|
+
- test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md
|
568
569
|
- test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt
|
569
570
|
- test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt
|
570
571
|
- test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt
|
@@ -678,6 +679,7 @@ files:
|
|
678
679
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html
|
679
680
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html
|
680
681
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html
|
682
|
+
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head
|
681
683
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html
|
682
684
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html
|
683
685
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html
|
@@ -685,6 +687,7 @@ files:
|
|
685
687
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html
|
686
688
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html
|
687
689
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html
|
690
|
+
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html
|
688
691
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html
|
689
692
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html
|
690
693
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html
|
@@ -692,6 +695,7 @@ files:
|
|
692
695
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html
|
693
696
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html
|
694
697
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html
|
698
|
+
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html
|
695
699
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html
|
696
700
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html
|
697
701
|
- test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html
|
@@ -840,6 +844,9 @@ files:
|
|
840
844
|
- test/multiverse/suites/httpclient/Envfile
|
841
845
|
- test/multiverse/suites/httpclient/config/newrelic.yml
|
842
846
|
- test/multiverse/suites/httpclient/httpclient_test.rb
|
847
|
+
- test/multiverse/suites/json/Envfile
|
848
|
+
- test/multiverse/suites/json/config/newrelic.yml
|
849
|
+
- test/multiverse/suites/json/json_test.rb
|
843
850
|
- test/multiverse/suites/marshalling/Envfile
|
844
851
|
- test/multiverse/suites/marshalling/config/newrelic.yml
|
845
852
|
- test/multiverse/suites/marshalling/marshalling_test.rb
|
@@ -868,6 +875,7 @@ files:
|
|
868
875
|
- test/multiverse/suites/rack/url_map_test.rb
|
869
876
|
- test/multiverse/suites/rails/Envfile
|
870
877
|
- test/multiverse/suites/rails/action_controller_live_rum_test.rb
|
878
|
+
- test/multiverse/suites/rails/activejob_test.rb
|
871
879
|
- test/multiverse/suites/rails/app.rb
|
872
880
|
- test/multiverse/suites/rails/app/views/foos/_foo.html.haml
|
873
881
|
- test/multiverse/suites/rails/app/views/views/_a_partial.html.erb
|
@@ -928,6 +936,9 @@ files:
|
|
928
936
|
- test/multiverse/suites/typhoeus/Envfile
|
929
937
|
- test/multiverse/suites/typhoeus/config/newrelic.yml
|
930
938
|
- test/multiverse/suites/typhoeus/typhoeus_test.rb
|
939
|
+
- test/multiverse/suites/yajl/Envfile
|
940
|
+
- test/multiverse/suites/yajl/config/newrelic.yml
|
941
|
+
- test/multiverse/suites/yajl/yajl_test.rb
|
931
942
|
- test/multiverse/test/multiverse_test.rb
|
932
943
|
- test/multiverse/test/suite_examples/one/a/Envfile
|
933
944
|
- test/multiverse/test/suite_examples/one/a/a_test.rb
|
@@ -985,6 +996,7 @@ files:
|
|
985
996
|
- test/new_relic/agent/http_clients/uri_util_test.rb
|
986
997
|
- test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb
|
987
998
|
- test/new_relic/agent/instrumentation/action_view_subscriber_test.rb
|
999
|
+
- test/new_relic/agent/instrumentation/active_job_test.rb
|
988
1000
|
- test/new_relic/agent/instrumentation/active_record_helper_test.rb
|
989
1001
|
- test/new_relic/agent/instrumentation/active_record_subscriber_test.rb
|
990
1002
|
- test/new_relic/agent/instrumentation/active_record_test.rb
|
@@ -1079,6 +1091,7 @@ files:
|
|
1079
1091
|
- test/new_relic/license_test.rb
|
1080
1092
|
- test/new_relic/load_test.rb
|
1081
1093
|
- test/new_relic/local_environment_test.rb
|
1094
|
+
- test/new_relic/marshalling_test_cases.rb
|
1082
1095
|
- test/new_relic/metric_data_test.rb
|
1083
1096
|
- test/new_relic/metric_parser/metric_parser_test.rb
|
1084
1097
|
- test/new_relic/metric_spec_test.rb
|
@@ -1238,7 +1251,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1238
1251
|
requirements:
|
1239
1252
|
- - ! '>='
|
1240
1253
|
- !ruby/object:Gem::Version
|
1241
|
-
version:
|
1254
|
+
version: 1.8.7
|
1242
1255
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1243
1256
|
none: false
|
1244
1257
|
requirements:
|
metadata.gz.sig
CHANGED
Binary file
|
data/test/config/test.cert.csr
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
-----BEGIN CERTIFICATE REQUEST-----
|
2
|
-
MIIBnDCCAQUCAQAwXDELMAkGA1UEBhMCVVMxDzANBgNVBAgTBk9yZWdvbjERMA8G
|
3
|
-
A1UEBxMIUG9ydGxhbmQxEjAQBgNVBAoTCU5ldyBSZWxpYzEVMBMGA1UEAxMMbmV3
|
4
|
-
cmVsaWMuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDrLp7QzAUnStmB
|
5
|
-
0WM86s5uWnWbKV1KxDGSWvw/76f8bX92+1grSqbLb0v8JIbx5qSxm6yPkEp4Yo2S
|
6
|
-
gVbKbNXhgwVw/u4nhy0piP++FS/z2sh5+Til2/USdVZmGrzPtQFhTb++QGpKjS/O
|
7
|
-
L8pKXqpNd53yRqo86YqpzINcYNbrDQIDAQABoAAwDQYJKoZIhvcNAQEFBQADgYEA
|
8
|
-
RQKG4gae3akIGmm0lx+zupp6hsHQCfnR4p0z5TqcEuvKbZ5+hhQD/PgbP/KGg+be
|
9
|
-
+k1TyoGGaPlmU9hUjOYbw4EdgWIryKEF74/krAeUPkx1nZveAXOUpa8UkWizNXIc
|
10
|
-
EleS52kU8iSjcyiqJZlz5H5VBJwQvGFE5kqA9k8saLU=
|
11
|
-
-----END CERTIFICATE REQUEST-----
|
@@ -1,18 +0,0 @@
|
|
1
|
-
-----BEGIN RSA PRIVATE KEY-----
|
2
|
-
Proc-Type: 4,ENCRYPTED
|
3
|
-
DEK-Info: DES-EDE3-CBC,4534BD2C19948E2F
|
4
|
-
|
5
|
-
2OJj77TnPwQ1whh+9HYmeth5qWu9NnitO0/grQfgNhuag4j+KLsRUTjeYbpXaHuT
|
6
|
-
iRQ3ik9r4RNUil/uwPPb/cIpYsnYCOWMnpNuj+NSum07TAOFz+trrcw6oMU0SVFz
|
7
|
-
m5jOeMuUwrc1Gvc6tRfqI+kNUtT8mRfNINiato1ATnkzXSHiR4kStldkqQZVO7cr
|
8
|
-
pa2r03VJCik1yICxay7Q2fZgwvuuGrdM61cOQms3s07TLXIOF+IezzYPRsWcZFV1
|
9
|
-
M9lrIGX2jR6lAhx2NOOvNlpW4Z8GYzNn2TGWDuld9Ou6qEG9i++GP3TuwOM/rpTP
|
10
|
-
al826dwKpeN3tF1L5CPMsvca/G6hPRjiCw/bs1JvIo+hqdqVOhYoJBwvDmP+j/VW
|
11
|
-
iArK8/VJCAETspcm5FQDuzqH02ZqMAxMz2kIdKYo2w/+dgNvaJaUGvH1yT5X+x9M
|
12
|
-
8AvcMDkh8X3HPJDmCLNZufDafmvT/m0dhJ8JPlGP7QXFKQaNSC7f03JR3RN6Xqtb
|
13
|
-
a2tidGmcrNI8/OfE3FFLvs0hudnScqdHoxJLHQapeZQe7/0l6xBmauF8MDPW5Ylx
|
14
|
-
5mjBfkDcyE77qxJwvuTOuaEA+Pj/G7Gc31oDFtroFG8dTNnUyNiUf5yOWame5j+V
|
15
|
-
GJUIuWmj2wS9Zhn834bXL5hmClvblMXgErsfwpqe1F8RwdZaatws4dZD/BEi0/Ua
|
16
|
-
PW1ej4e7fGe8S6Gf0oK6Wb7/Rz29MGt9djm9MGIsCDKJdu0RC6Cb22HlcsAhzJ8s
|
17
|
-
KQie9XWhR5k1iluzc1QuJW18tgeRC5avOrCOhSeSlq+iX/giryENhw==
|
18
|
-
-----END RSA PRIVATE KEY-----
|