Skip to content

Commit ebaa0d0

Browse files
committed
initial commit
1 parent f89feee commit ebaa0d0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+4079
-5
lines changed

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*.gem
2+
*.rbc
3+
4+
.bundle
5+
.config
6+
.coverage
7+
.yardoc
8+
Gemfile.lock
9+
10+
doc/
11+
pkg/
12+
13+
tmp
14+
test/tmp
15+
coverage
16+
vendor/

.yardopts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
--title 'AWS X-Ray SDK for Ruby'
2+
--markup markdown
3+
--markup-provider rdiscount
4+
--no-progress
5+
- LICENSE

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec

LICENSE

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
Apache License
32
Version 2.0, January 2004
43
http://www.apache.org/licenses/

NOTICE

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
AWS Xray SDK Ruby
2-
Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
1+
AWS X-Ray SDK for Ruby
2+
Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+

README.md

+186-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,189 @@
1-
AWS Xray SDK Ruby
1+
# AWS X-Ray SDK for Ruby <sup><sup><sup>(beta)</sup></sup></sup>
2+
3+
![Screenshot of the AWS X-Ray console](/images/example_servicemap.png?raw=true)
4+
5+
## Installing
6+
7+
The AWS X-Ray SDK for Ruby is compatible with Ruby 2.3.6 and newer Ruby versions.
8+
9+
To install the Ruby gem for your project, add it to your project Gemfile.
10+
11+
```
12+
# Gemfile
13+
gem 'aws-xray-sdk'
14+
```
15+
Then run `bundle install`.
16+
17+
## Getting Help
18+
19+
Use the following community resources for getting help with the SDK. We use the GitHub
20+
issues for tracking bugs and feature requests.
21+
22+
* Ask a question in the [AWS X-Ray Forum](https://forums.aws.amazon.com/forum.jspa?forumID=241&start=0).
23+
* Open a support ticket with [AWS Support](http://docs.aws.amazon.com/awssupport/latest/user/getting-started.html).
24+
* If you think you may have found a bug, open an [issue](https://github.com/aws/aws-xray-sdk-ruby/issues/new).
25+
26+
## Opening Issues
27+
28+
If you encounter a bug with the AWS X-Ray SDK for Ruby, we want to hear about
29+
it. Before opening a new issue, search the [existing issues](https://github.com/aws/aws-xray-sdk-ruby/issues)
30+
to see if others are also experiencing the issue. Include the version of the AWS X-Ray
31+
SDK for Ruby, Ruby language, and other gems if applicable. In addition,
32+
include the repro case when appropriate.
33+
34+
The GitHub issues are intended for bug reports and feature requests. For help and
35+
questions about using the AWS SDK for Ruby, use the resources listed
36+
in the [Getting Help](https://github.com/aws/aws-xray-sdk-ruby#getting-help) section. Keeping the list of open issues lean helps us respond in a timely manner.
37+
38+
## Documentation
39+
40+
The [developer guide](https://docs.aws.amazon.com/xray/latest/devguide) provides in-depth guidance about using the AWS X-Ray service.
41+
The [API Reference](http://docs.aws.amazon.com/xray-sdk-for-ruby/latest/reference/) provides documentation for public APIs of all classes in the SDK.
42+
43+
## Quick Start
44+
45+
**Configuration**
46+
47+
```ruby
48+
require 'aws-xray-sdk'
49+
50+
# configure path based sampling rules in case of web app
51+
my_sampling_rules = {
52+
version: 1,
53+
rules: [
54+
{
55+
description: 'healthcheck',
56+
service_name: '*',
57+
http_method: 'GET',
58+
url_path: '/ping',
59+
fixed_target: 0,
60+
rate: 0
61+
}
62+
],
63+
default: {
64+
fixed_target: 1,
65+
rate: 0.2
66+
}
67+
}
68+
69+
user_config = {
70+
sampling: true,
71+
sampling_rules: my_sampling_rules,
72+
name: 'default_segment_name',
73+
daemon_address: '127.0.0.1:3000',
74+
context_missing: 'LOG_ERROR',
75+
patch: %I[net_http aws_sdk]
76+
}
77+
78+
XRay.recorder.configure(user_config)
79+
```
80+
81+
**Working with Rails**
82+
83+
```ruby
84+
# Edit Gemfile to add XRay middleware
85+
gem 'aws-xray-sdk', require: ['aws-xray-sdk/facets/rails/railtie']
86+
87+
# Configure the recorder in app_root/config/initializers/aws_xray.rb
88+
Rails.application.config.xray = {
89+
# default segment name generated by XRay middleware
90+
name: 'myrails',
91+
patch: %I[net_http aws_sdk],
92+
# record db transactions as subsegments
93+
active_record: true
94+
}
95+
```
96+
97+
**Adding metadata/annotations using recorder**
98+
99+
```ruby
100+
require 'aws-xray-sdk'
101+
102+
# Add annotations to the current active entity
103+
XRay.recorder.annotations[:k1] = 'v1'
104+
XRay.recorder.annotations.update k2: 'v2', k3: 3
105+
106+
# Add metadata to the current active entity
107+
XRay.recorder.metadata[:k1] = 'v1' # add to default namespace
108+
XRay.recorder.metadata(namespace: :my_ns).update k2: 'v2'
109+
110+
XRay.recorder.sampled? do
111+
XRay.recorder.metadata.update my_meta # expensive metadata generation here
112+
end
113+
```
114+
115+
**Capture**
116+
117+
```ruby
118+
require 'aws-xray-sdk'
119+
120+
XRay.recorder.capture('name_for_subsegment') do |subsegment|
121+
resp = myfunc()
122+
subsegment.annotations.update k1: 'v1'
123+
resp
124+
end
125+
126+
# Manually apply the parent segment for the captured subsegment
127+
XRay.recorder.capture('name_for_subsegment', segment: my_segment) do |subsegment|
128+
myfunc()
129+
end
130+
```
131+
132+
**Thread Injection**
133+
134+
```ruby
135+
require 'aws-xray-sdk'
136+
137+
XRay.recorder.configure({patch: %I[net_http]})
138+
139+
uri = URI.parse('http://aws.amazon.com/')
140+
# Get the active entity from current call context
141+
entity = XRay.recorder.current_entity
142+
143+
workers = (0...3).map do
144+
Thread.new do
145+
begin
146+
# set X-Ray context for this thread
147+
XRay.recorder.inject_context entity do
148+
http = Net::HTTP.new(uri.host, uri.port)
149+
http.request(Net::HTTP::Get.new(uri.request_uri))
150+
end
151+
rescue ThreadError
152+
end
153+
end
154+
end
155+
156+
workers.map(&:join)
157+
```
158+
159+
**Start a custom segment/subsegment**
160+
161+
```ruby
162+
require 'aws-xray-sdk'
163+
164+
# Start a segment
165+
segment = XRay.recorder.begin_segment 'my_service'
166+
# Start a subsegment
167+
subsegment = XRay.recorder.begin_subsegment 'outbound_call', namespace: 'remote'
168+
169+
# Add metadata or annotation here if necessary
170+
my_annotations = {
171+
k1: 'v1',
172+
k2: 1024
173+
}
174+
segment.annotations.update my_annotations
175+
176+
# Add metadata to default namespace
177+
subsegment.metadata[:k1] = 'v1'
178+
179+
# Set user for the segment (subsegment is not supported)
180+
segment.user = 'my_name'
181+
182+
# End segment/subsegment
183+
XRay.recorder.end_subsegment
184+
XRay.recorder.end_segment
185+
```
2186

3187
## License
4188

5-
This library is licensed under the Apache 2.0 License.
189+
The AWS X-Ray SDK for Ruby is licensed under the Apache 2.0 License. See LICENSE and NOTICE for more information.

Rakefile

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
require 'bundler/gem_tasks'
2+
3+
Rake::Task['release'].clear
4+
5+
# default task
6+
task default: %i[yard test]
7+
8+
require 'rake'
9+
require 'rake/testtask'
10+
require 'yard'
11+
12+
# tasks
13+
desc 'execute all tests'
14+
Rake::TestTask.new :test do |t|
15+
t.test_files = FileList['test/**/tc_*.rb']
16+
t.verbose = false
17+
t.warning = false
18+
end
19+
20+
desc 'generate API reference documentation'
21+
YARD::Rake::YardocTask.new :yard do |t|
22+
t.files = ['lib/**/*.rb']
23+
end

aws-xray-sdk.gemspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
lib = File.expand_path('../lib', __FILE__)
2+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3+
require 'aws-xray-sdk/version'
4+
5+
Gem::Specification.new do |spec|
6+
spec.name = 'aws-xray-sdk'
7+
spec.version = XRay::VERSION
8+
spec.author = 'Amazon Web Services'
9+
spec.email = '[email protected]'
10+
spec.summary = 'AWS X-Ray SDK for Ruby'
11+
spec.description = 'The AWS X-Ray SDK for Ruby enables Ruby developers to record and emit information from within their applications to the AWS X-Ray service.'
12+
spec.homepage = 'https://github.com/aws/aws-xray-sdk-ruby'
13+
spec.license = 'Apache-2.0'
14+
15+
spec.files = Dir.glob('lib/**/*')
16+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18+
spec.require_paths = ['lib']
19+
20+
spec.add_dependency 'oj', '~> 3.0'
21+
22+
spec.add_development_dependency 'aws-sdk-dynamodb', '~> 1'
23+
spec.add_development_dependency 'aws-sdk-s3', '~> 1'
24+
spec.add_development_dependency 'bundler', '~> 1.0'
25+
spec.add_development_dependency 'minitest', '~> 5.0'
26+
spec.add_development_dependency 'rake', '~> 12.0'
27+
spec.add_development_dependency 'rdiscount', '~> 2.2'
28+
spec.add_development_dependency 'simplecov', '~> 0.15'
29+
spec.add_development_dependency 'webmock', '~> 3.0'
30+
spec.add_development_dependency 'yard', '~> 0.9'
31+
end

images/example_servicemap.png

215 KB
Loading

lib/aws-xray-sdk.rb

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
require 'aws-xray-sdk/recorder'
2+
3+
module XRay
4+
@recorder = Recorder.new
5+
6+
# providing the default global recorder
7+
def self.recorder
8+
@recorder
9+
end
10+
end

0 commit comments

Comments
 (0)