aws-sdk-xray 1.48.0 → 1.49.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-xray/client.rb +9 -1
- data/lib/aws-sdk-xray/client_api.rb +2 -0
- data/lib/aws-sdk-xray/types.rb +22 -6
- data/lib/aws-sdk-xray.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fac014afc04878a034ee572afef540607ab0a0bb2aba3d9d7b1db352cb9e6cc
|
4
|
+
data.tar.gz: db0556def050c7199a1c2272c7cecac4b25da5f27b92e7c9012f5868c118ca25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f26cbcc3307f0f7407fd23b07d1db452bec5159931587bdee419239934f082206c9caf7f65480c39f6d54973c0bf27322d48382245c2876e86c6316a815e568
|
7
|
+
data.tar.gz: 5ece9335cab9792d5188b189c8f129ef46bb53b5e0c12f421eaf61537c9cb3e892ed3851e244b9f3bcffcd21faca6743ea4db1ee4736f33da49d05a0db323c3b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.49.0 (2022-11-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release enhances GetServiceGraph API to support new type of edge to represent links between SQS and Lambda in event-driven applications.
|
8
|
+
|
4
9
|
1.48.0 (2022-10-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
data/lib/aws-sdk-xray/client.rb
CHANGED
@@ -1259,6 +1259,10 @@ module Aws::XRay
|
|
1259
1259
|
# resp.services[0].edges[0].aliases[0].names #=> Array
|
1260
1260
|
# resp.services[0].edges[0].aliases[0].names[0] #=> String
|
1261
1261
|
# resp.services[0].edges[0].aliases[0].type #=> String
|
1262
|
+
# resp.services[0].edges[0].edge_type #=> String
|
1263
|
+
# resp.services[0].edges[0].received_event_age_histogram #=> Array
|
1264
|
+
# resp.services[0].edges[0].received_event_age_histogram[0].value #=> Float
|
1265
|
+
# resp.services[0].edges[0].received_event_age_histogram[0].count #=> Integer
|
1262
1266
|
# resp.services[0].summary_statistics.ok_count #=> Integer
|
1263
1267
|
# resp.services[0].summary_statistics.error_statistics.throttle_count #=> Integer
|
1264
1268
|
# resp.services[0].summary_statistics.error_statistics.other_count #=> Integer
|
@@ -1430,6 +1434,10 @@ module Aws::XRay
|
|
1430
1434
|
# resp.services[0].edges[0].aliases[0].names #=> Array
|
1431
1435
|
# resp.services[0].edges[0].aliases[0].names[0] #=> String
|
1432
1436
|
# resp.services[0].edges[0].aliases[0].type #=> String
|
1437
|
+
# resp.services[0].edges[0].edge_type #=> String
|
1438
|
+
# resp.services[0].edges[0].received_event_age_histogram #=> Array
|
1439
|
+
# resp.services[0].edges[0].received_event_age_histogram[0].value #=> Float
|
1440
|
+
# resp.services[0].edges[0].received_event_age_histogram[0].count #=> Integer
|
1433
1441
|
# resp.services[0].summary_statistics.ok_count #=> Integer
|
1434
1442
|
# resp.services[0].summary_statistics.error_statistics.throttle_count #=> Integer
|
1435
1443
|
# resp.services[0].summary_statistics.error_statistics.other_count #=> Integer
|
@@ -2062,7 +2070,7 @@ module Aws::XRay
|
|
2062
2070
|
params: params,
|
2063
2071
|
config: config)
|
2064
2072
|
context[:gem_name] = 'aws-sdk-xray'
|
2065
|
-
context[:gem_version] = '1.
|
2073
|
+
context[:gem_version] = '1.49.0'
|
2066
2074
|
Seahorse::Client::Request.new(handlers, context)
|
2067
2075
|
end
|
2068
2076
|
|
@@ -310,6 +310,8 @@ module Aws::XRay
|
|
310
310
|
Edge.add_member(:summary_statistics, Shapes::ShapeRef.new(shape: EdgeStatistics, location_name: "SummaryStatistics"))
|
311
311
|
Edge.add_member(:response_time_histogram, Shapes::ShapeRef.new(shape: Histogram, location_name: "ResponseTimeHistogram"))
|
312
312
|
Edge.add_member(:aliases, Shapes::ShapeRef.new(shape: AliasList, location_name: "Aliases"))
|
313
|
+
Edge.add_member(:edge_type, Shapes::ShapeRef.new(shape: String, location_name: "EdgeType"))
|
314
|
+
Edge.add_member(:received_event_age_histogram, Shapes::ShapeRef.new(shape: Histogram, location_name: "ReceivedEventAgeHistogram"))
|
313
315
|
Edge.struct_class = Types::Edge
|
314
316
|
|
315
317
|
EdgeList.member = Shapes::ShapeRef.new(shape: Edge)
|
data/lib/aws-sdk-xray/types.rb
CHANGED
@@ -417,7 +417,10 @@ module Aws::XRay
|
|
417
417
|
include Aws::Structure
|
418
418
|
end
|
419
419
|
|
420
|
-
# Information about a connection between two services.
|
420
|
+
# Information about a connection between two services. An edge can be a
|
421
|
+
# synchronous connection, such as typical call between client and
|
422
|
+
# service, or an asynchronous link, such as a Lambda function which
|
423
|
+
# retrieves an event from an SNS queue.
|
421
424
|
#
|
422
425
|
# @!attribute [rw] reference_id
|
423
426
|
# Identifier of the edge. Unique within a service map.
|
@@ -437,13 +440,23 @@ module Aws::XRay
|
|
437
440
|
#
|
438
441
|
# @!attribute [rw] response_time_histogram
|
439
442
|
# A histogram that maps the spread of client response times on an
|
440
|
-
# edge.
|
443
|
+
# edge. Only populated for synchronous edges.
|
441
444
|
# @return [Array<Types::HistogramEntry>]
|
442
445
|
#
|
443
446
|
# @!attribute [rw] aliases
|
444
447
|
# Aliases for the edge.
|
445
448
|
# @return [Array<Types::Alias>]
|
446
449
|
#
|
450
|
+
# @!attribute [rw] edge_type
|
451
|
+
# Describes an asynchronous connection, with a value of `link`.
|
452
|
+
# @return [String]
|
453
|
+
#
|
454
|
+
# @!attribute [rw] received_event_age_histogram
|
455
|
+
# A histogram that maps the spread of event age when received by
|
456
|
+
# consumers. Age is calculated each time an event is received. Only
|
457
|
+
# populated when *EdgeType* is `link`.
|
458
|
+
# @return [Array<Types::HistogramEntry>]
|
459
|
+
#
|
447
460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/Edge AWS API Documentation
|
448
461
|
#
|
449
462
|
class Edge < Struct.new(
|
@@ -452,7 +465,9 @@ module Aws::XRay
|
|
452
465
|
:end_time,
|
453
466
|
:summary_statistics,
|
454
467
|
:response_time_histogram,
|
455
|
-
:aliases
|
468
|
+
:aliases,
|
469
|
+
:edge_type,
|
470
|
+
:received_event_age_histogram)
|
456
471
|
SENSITIVE = []
|
457
472
|
include Aws::Structure
|
458
473
|
end
|
@@ -3166,9 +3181,10 @@ module Aws::XRay
|
|
3166
3181
|
# @return [Float]
|
3167
3182
|
#
|
3168
3183
|
# @!attribute [rw] limit_exceeded
|
3169
|
-
# LimitExceeded is set to true when the trace has exceeded
|
3170
|
-
#
|
3171
|
-
#
|
3184
|
+
# LimitExceeded is set to true when the trace has exceeded the `Trace
|
3185
|
+
# document size` limit. For more information about this limit and
|
3186
|
+
# other X-Ray limits and quotas, see [Amazon Web Services X-Ray
|
3187
|
+
# endpoints and quotas][1].
|
3172
3188
|
#
|
3173
3189
|
#
|
3174
3190
|
#
|
data/lib/aws-sdk-xray.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-xray
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.49.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|