newrelic-infinite_tracing 6.11.0.365 → 6.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile +1 -1
- data/lib/infinite_tracing.rb +1 -1
- data/lib/infinite_tracing/agent_integrations.rb +1 -1
- data/lib/infinite_tracing/agent_integrations/agent.rb +1 -1
- data/lib/infinite_tracing/agent_integrations/datastore_segment.rb +1 -1
- data/lib/infinite_tracing/agent_integrations/external_request_segment.rb +1 -1
- data/lib/infinite_tracing/agent_integrations/segment.rb +1 -1
- data/lib/infinite_tracing/channel.rb +1 -1
- data/lib/infinite_tracing/client.rb +24 -4
- data/lib/infinite_tracing/config.rb +1 -1
- data/lib/infinite_tracing/connection.rb +8 -1
- data/lib/infinite_tracing/constants.rb +1 -1
- data/lib/infinite_tracing/proto.rb +1 -1
- data/lib/infinite_tracing/proto/infinite_tracing_pb.rb +1 -1
- data/lib/infinite_tracing/proto/infinite_tracing_services_pb.rb +2 -2
- data/lib/infinite_tracing/record_status_handler.rb +4 -2
- data/lib/infinite_tracing/streaming_buffer.rb +1 -9
- data/lib/infinite_tracing/suspended_streaming_buffer.rb +1 -1
- data/lib/infinite_tracing/transformer.rb +1 -1
- data/lib/infinite_tracing/version.rb +1 -1
- data/lib/infinite_tracing/worker.rb +1 -1
- data/lib/new_relic/infinite_tracing.rb +1 -1
- data/lib/newrelic/infinite_tracing.rb +1 -1
- data/lib/proto/infinite_tracing.proto +1 -1
- data/newrelic-infinite_tracing.gemspec +11 -8
- data/tasks/all.rb +1 -1
- data/tasks/proto.rake +1 -1
- metadata +16 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc39cecc639ecf00228523ab5a0f61c320ebf0ab656bef946e46a98a021dcad9
|
4
|
+
data.tar.gz: fe96fa6bf2ad2cc53a3d6c33e37c2204b8fcb2031e3d22723736a87d35ea5b3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38ea40bb30a9b6cf58278761c7b097234773562d373d55172be7ab70f6d5421df85b195150389975859df79e9b1c891394d06f3488bec983cb4c4f9515a98a82
|
7
|
+
data.tar.gz: d48da08ed88d0442a89219eb4212e0b3b1f02904357125803addfb01ed6cf8f9c2c838ec5b99166edd2981ce75b7c5ed34bba446eccceb405cd6736dcdf18d9f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# New Relic Infinite Tracing for Ruby Agent Release Notes #
|
2
2
|
|
3
|
+
## v6.15.0
|
4
|
+
* Adds data from the agents connect response `request_headers_map` to the metadata for the connection to the infinite trace observer.
|
5
|
+
|
6
|
+
## v6.12.0
|
7
|
+
|
8
|
+
* Implements restarting gRPC stream when server responds with OK response and no error.
|
9
|
+
|
3
10
|
## v6.11.0
|
4
11
|
|
5
12
|
* Initial Release!
|
data/Gemfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
source 'https://rubygems.org'
|
data/lib/infinite_tracing.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
require 'uri'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic::Agent
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic::Agent
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic::Agent
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
# The Client class manages the streaming buffer with respect to the gRPC Connection.
|
@@ -77,6 +77,7 @@ module NewRelic::Agent
|
|
77
77
|
|
78
78
|
case error
|
79
79
|
when GRPC::Unavailable then restart
|
80
|
+
when GRPC::FailedPrecondition then restart
|
80
81
|
when GRPC::Unimplemented then suspend
|
81
82
|
else
|
82
83
|
# Set exponential backoff to false so we'll reconnect at periodic (15 second) intervals instead
|
@@ -88,6 +89,17 @@ module NewRelic::Agent
|
|
88
89
|
@suspended
|
89
90
|
end
|
90
91
|
|
92
|
+
# This method is called when the server closes the record status stream without
|
93
|
+
# raising an error. The Channel/Connection is not closed or reset in this case.
|
94
|
+
# We simply start streaming again, which will reuse the channel/connection to the
|
95
|
+
# server and re-establish the gRPC bi-directional stream. Useful for the server
|
96
|
+
# to initiate a load-balancing scheme.
|
97
|
+
def handle_close
|
98
|
+
NewRelic::Agent.logger.debug "The gRPC Trace Observer closed the stream with OK response. " \
|
99
|
+
"Restarting the stream."
|
100
|
+
start_streaming
|
101
|
+
end
|
102
|
+
|
91
103
|
# Places the client into suspended state whereby client will no longer attempt to
|
92
104
|
# reconnect to the gRPC server nor will it attempt to send span events henceforth.
|
93
105
|
# The Suspended Streaming Buffer will be installed in this state.
|
@@ -101,13 +113,23 @@ module NewRelic::Agent
|
|
101
113
|
end
|
102
114
|
end
|
103
115
|
|
104
|
-
def
|
116
|
+
def reset_connection
|
105
117
|
@lock.synchronize do
|
106
118
|
Connection.reset
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
def transfer_buffer
|
123
|
+
@lock.synchronize do
|
107
124
|
old_buffer = @buffer
|
108
125
|
@buffer = new_streaming_buffer
|
109
126
|
old_buffer.transfer @buffer
|
110
127
|
end
|
128
|
+
end
|
129
|
+
|
130
|
+
def restart
|
131
|
+
reset_connection
|
132
|
+
transfer_buffer
|
111
133
|
start_streaming
|
112
134
|
end
|
113
135
|
|
@@ -131,8 +153,6 @@ module NewRelic::Agent
|
|
131
153
|
def record_span_batches exponential_backoff
|
132
154
|
RecordStatusHandler.new self, Connection.record_span_batches(self, buffer.batch_enumerator, exponential_backoff)
|
133
155
|
end
|
134
|
-
|
135
156
|
end
|
136
|
-
|
137
157
|
end
|
138
158
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic::Agent
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
# The connection class manages the channel and connection to the gRPC server.
|
@@ -97,6 +97,7 @@ module NewRelic::Agent
|
|
97
97
|
"license_key" => license_key,
|
98
98
|
"agent_run_token" => agent_id
|
99
99
|
}
|
100
|
+
@metadata.merge!(request_headers_map)
|
100
101
|
end
|
101
102
|
end
|
102
103
|
|
@@ -138,6 +139,12 @@ module NewRelic::Agent
|
|
138
139
|
NewRelic::Agent.config[:license_key]
|
139
140
|
end
|
140
141
|
|
142
|
+
def request_headers_map
|
143
|
+
headers = NewRelic::Agent.agent.service.instance_variable_get(:@request_headers_map) || NewRelic::EMPTY_HASH
|
144
|
+
# transform_keys only 2.5+, but infinite tracing is 2.5+ only also
|
145
|
+
headers.transform_keys(&:downcase)
|
146
|
+
end
|
147
|
+
|
141
148
|
# Continues retrying the connection at backoff intervals until a successful connection is made
|
142
149
|
def with_reconnection_backoff exponential_backoff=true, &block
|
143
150
|
@connection_attempts = 0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic::Agent
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
require 'grpc'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
@@ -8,7 +8,7 @@
|
|
8
8
|
# Original file comments:
|
9
9
|
# encoding: utf-8
|
10
10
|
# This file is distributed under New Relic's license terms.
|
11
|
-
# See https://github.com/newrelic/
|
11
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
12
12
|
#
|
13
13
|
|
14
14
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic::Agent
|
@@ -28,8 +28,10 @@ module NewRelic::Agent
|
|
28
28
|
NewRelic::Agent.logger.debug "gRPC Infinite Tracer Observer saw #{messages_seen} messages"
|
29
29
|
end
|
30
30
|
end
|
31
|
+
NewRelic::Agent.logger.debug "gRPC Infinite Tracer Observer closed the stream"
|
32
|
+
@client.handle_close
|
31
33
|
rescue => error
|
32
|
-
@
|
34
|
+
@client.handle_error error
|
33
35
|
end
|
34
36
|
end
|
35
37
|
rescue => error
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
# The StreamingBuffer class provides an Enumerator to the standard Ruby Queue
|
@@ -61,14 +61,6 @@ module NewRelic::Agent
|
|
61
61
|
NewRelic::Agent.increment_metric QUEUE_DUMPED_METRIC
|
62
62
|
end
|
63
63
|
|
64
|
-
# # Waits for the queue to be fully consumed or for the
|
65
|
-
# # waiting consumers to release.
|
66
|
-
# def flush_queue
|
67
|
-
# @queue.num_waiting.times { @queue.push nil }
|
68
|
-
# close_queue
|
69
|
-
# until @queue.empty? do sleep(FLUSH_DELAY) end
|
70
|
-
# end
|
71
|
-
|
72
64
|
# Waits for the queue to be fully consumed or for the
|
73
65
|
# waiting consumers to release.
|
74
66
|
def flush_queue
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
# The SuspendedStreamingBuffer class discards pushed segments and records
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic::Agent
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
module NewRelic
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
# The Worker class makes it easy to stop and start a thread at will.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
require 'uri'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
# frozen_string_literal: true
|
5
5
|
|
6
6
|
unless defined? NewRelic::Agent::InfiniteTracing
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// encoding: utf-8
|
2
2
|
// This file is distributed under New Relic's license terms.
|
3
|
-
// See https://github.com/newrelic/
|
3
|
+
// See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
|
5
5
|
syntax = "proto3";
|
6
6
|
|
@@ -1,6 +1,8 @@
|
|
1
1
|
#-*- coding: utf-8 -*-
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
+
require 'fileutils'
|
5
|
+
|
4
6
|
agent_lib = File.expand_path('../../lib', __FILE__)
|
5
7
|
$LOAD_PATH.unshift(agent_lib) unless $LOAD_PATH.include?(agent_lib)
|
6
8
|
|
@@ -34,7 +36,7 @@ Gem::Specification.new do |s|
|
|
34
36
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
35
37
|
s.authors = [ "Rachel Klein", "Tanna McClure", "Michael Lang" ]
|
36
38
|
s.date = Time.now.strftime('%Y-%m-%d')
|
37
|
-
s.licenses = ['
|
39
|
+
s.licenses = ['Apache-2.0']
|
38
40
|
s.description = <<-EOS
|
39
41
|
The New Relic Ruby agent requires the gem newrelic_rpm, and it includes distributed
|
40
42
|
tracing that uses head-based sampling (standard distributed tracing).
|
@@ -47,7 +49,7 @@ New Relic is a performance management system, developed by New Relic,
|
|
47
49
|
Inc (http://www.newrelic.com). New Relic provides you with deep
|
48
50
|
information about the performance of your web application as it runs
|
49
51
|
in production. The New Relic Ruby Agent is dual-purposed as a either a
|
50
|
-
Gem or plugin, hosted on https://github.com/newrelic/
|
52
|
+
Gem or plugin, hosted on https://github.com/newrelic/newrelic-ruby-agent/
|
51
53
|
EOS
|
52
54
|
|
53
55
|
s.email = "support@newrelic.com"
|
@@ -58,22 +60,23 @@ EOS
|
|
58
60
|
]
|
59
61
|
|
60
62
|
s.metadata = {
|
61
|
-
'bug_tracker_uri' => 'https://
|
62
|
-
'changelog_uri' => 'https://github.com/newrelic/
|
63
|
+
'bug_tracker_uri' => 'https://github.com/newrelic/newrelic-ruby-agent/issues',
|
64
|
+
'changelog_uri' => 'https://github.com/newrelic/newrelic-ruby-agent/blob/main/infinite_tracing/CHANGELOG.md',
|
63
65
|
'documentation_uri' => 'https://docs.newrelic.com/docs/agents/ruby-agent',
|
64
|
-
'source_code_uri' => 'https://github.com/newrelic/
|
66
|
+
'source_code_uri' => 'https://github.com/newrelic/newrelic-ruby-agent',
|
67
|
+
"homepage_uri" => "https://newrelic.com/products/edge-infinite-tracing",
|
65
68
|
}
|
66
69
|
|
67
70
|
file_list = `git ls-files . -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/(?!agent_helper.rb)}) }
|
68
71
|
s.files = file_list
|
69
72
|
|
70
|
-
s.homepage = "https://github.com/newrelic/
|
73
|
+
s.homepage = "https://github.com/newrelic/newrelic-ruby-agent/tree/main/infinite_tracing"
|
71
74
|
s.require_paths = ["lib", "infinite_tracing"]
|
72
75
|
s.rubygems_version = Gem::VERSION
|
73
76
|
s.summary = "New Relic Infinite Tracing for the Ruby agent"
|
74
77
|
|
75
78
|
s.add_dependency 'newrelic_rpm', NewRelic::VERSION::STRING
|
76
|
-
s.add_dependency 'grpc', '~> 1.
|
79
|
+
s.add_dependency 'grpc', '~> 1.34'
|
77
80
|
|
78
81
|
s.add_development_dependency 'rake', '12.3.3'
|
79
82
|
s.add_development_dependency 'rb-inotify', '0.9.10' # locked to support < Ruby 2.3 (and listen 3.0.8)
|
@@ -87,5 +90,5 @@ EOS
|
|
87
90
|
s.add_development_dependency 'hometown', '~> 0.2.5'
|
88
91
|
s.add_development_dependency 'bundler'
|
89
92
|
|
90
|
-
s.add_development_dependency 'grpc-tools', "~> 1.14
|
93
|
+
s.add_development_dependency 'grpc-tools', "~> 1.14"
|
91
94
|
end
|
data/tasks/all.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
|
5
5
|
# This is required to load in task definitions from merb
|
6
6
|
Dir.glob(File.join(File.dirname(__FILE__),'*.rake')) do |file|
|
data/tasks/proto.rake
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
|
-
# See https://github.com/newrelic/
|
3
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
4
|
|
5
5
|
namespace :proto do
|
6
6
|
desc "Generate proto files"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic-infinite_tracing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.
|
4
|
+
version: 6.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rachel Klein
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-01-19 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: newrelic_rpm
|
@@ -18,28 +18,28 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 6.
|
21
|
+
version: 6.15.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 6.
|
28
|
+
version: 6.15.0
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: grpc
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - "~>"
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 1.
|
35
|
+
version: '1.34'
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - "~>"
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.
|
42
|
+
version: '1.34'
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: rake
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -200,14 +200,14 @@ dependencies:
|
|
200
200
|
requirements:
|
201
201
|
- - "~>"
|
202
202
|
- !ruby/object:Gem::Version
|
203
|
-
version: 1.14
|
203
|
+
version: '1.14'
|
204
204
|
type: :development
|
205
205
|
prerelease: false
|
206
206
|
version_requirements: !ruby/object:Gem::Requirement
|
207
207
|
requirements:
|
208
208
|
- - "~>"
|
209
209
|
- !ruby/object:Gem::Version
|
210
|
-
version: 1.14
|
210
|
+
version: '1.14'
|
211
211
|
description: |
|
212
212
|
The New Relic Ruby agent requires the gem newrelic_rpm, and it includes distributed
|
213
213
|
tracing that uses head-based sampling (standard distributed tracing).
|
@@ -220,7 +220,7 @@ description: |
|
|
220
220
|
Inc (http://www.newrelic.com). New Relic provides you with deep
|
221
221
|
information about the performance of your web application as it runs
|
222
222
|
in production. The New Relic Ruby Agent is dual-purposed as a either a
|
223
|
-
Gem or plugin, hosted on https://github.com/newrelic/
|
223
|
+
Gem or plugin, hosted on https://github.com/newrelic/newrelic-ruby-agent/
|
224
224
|
email: support@newrelic.com
|
225
225
|
executables: []
|
226
226
|
extensions: []
|
@@ -259,14 +259,15 @@ files:
|
|
259
259
|
- newrelic-infinite_tracing.gemspec
|
260
260
|
- tasks/all.rb
|
261
261
|
- tasks/proto.rake
|
262
|
-
homepage: https://github.com/newrelic/
|
262
|
+
homepage: https://github.com/newrelic/newrelic-ruby-agent/tree/main/infinite_tracing
|
263
263
|
licenses:
|
264
|
-
-
|
264
|
+
- Apache-2.0
|
265
265
|
metadata:
|
266
|
-
bug_tracker_uri: https://
|
267
|
-
changelog_uri: https://github.com/newrelic/
|
266
|
+
bug_tracker_uri: https://github.com/newrelic/newrelic-ruby-agent/issues
|
267
|
+
changelog_uri: https://github.com/newrelic/newrelic-ruby-agent/blob/main/infinite_tracing/CHANGELOG.md
|
268
268
|
documentation_uri: https://docs.newrelic.com/docs/agents/ruby-agent
|
269
|
-
source_code_uri: https://github.com/newrelic/
|
269
|
+
source_code_uri: https://github.com/newrelic/newrelic-ruby-agent
|
270
|
+
homepage_uri: https://newrelic.com/products/edge-infinite-tracing
|
270
271
|
post_install_message:
|
271
272
|
rdoc_options: []
|
272
273
|
require_paths:
|
@@ -283,7 +284,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
283
284
|
- !ruby/object:Gem::Version
|
284
285
|
version: 1.3.1
|
285
286
|
requirements: []
|
286
|
-
rubygems_version: 3.
|
287
|
+
rubygems_version: 3.1.4
|
287
288
|
signing_key:
|
288
289
|
specification_version: 4
|
289
290
|
summary: New Relic Infinite Tracing for the Ruby agent
|