|
1 |
| -AWS Xray SDK Ruby |
| 1 | +# AWS X-Ray SDK for Ruby <sup><sup><sup>(beta)</sup></sup></sup> |
| 2 | + |
| 3 | + |
| 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 | +``` |
2 | 186 |
|
3 | 187 | ## License
|
4 | 188 |
|
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. |
0 commit comments