- NAME
- SYNOPSIS
- DESCRIPTION
- METHODS
- BatchGetTraces(TraceIds => ArrayRef[Str|Undef], [NextToken => Str])
- GetServiceGraph(EndTime => Str, StartTime => Str, [NextToken => Str])
- GetTraceGraph(TraceIds => ArrayRef[Str|Undef], [NextToken => Str])
- GetTraceSummaries(EndTime => Str, StartTime => Str, [FilterExpression => Str, NextToken => Str, Sampling => Bool])
- PutTelemetryRecords(TelemetryRecords => ArrayRef[Paws::XRay::TelemetryRecord], [EC2InstanceId => Str, Hostname => Str, ResourceARN => Str])
- PutTraceSegments(TraceSegmentDocuments => ArrayRef[Str|Undef])
- PAGINATORS
- SEE ALSO
- BUGS and CONTRIBUTIONS
NAME
Paws::XRay - Perl Interface to AWS AWS X-Ray
SYNOPSIS
use Paws;
my $obj = Paws->service('XRay');
my $res = $obj->Method(
Arg1 => $val1,
Arg2 => [ 'V1', 'V2' ],
# if Arg3 is an object, the HashRef will be used as arguments to the constructor
# of the arguments type
Arg3 => { Att1 => 'Val1' },
# if Arg4 is an array of objects, the HashRefs will be passed as arguments to
# the constructor of the arguments type
Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ],
);
DESCRIPTION
AWS X-Ray provides APIs for managing debug traces and retrieving service maps and other data created by processing those traces.
METHODS
BatchGetTraces(TraceIds => ArrayRef[Str|Undef], [NextToken => Str])
Each argument is described in detail in: Paws::XRay::BatchGetTraces
Returns: a Paws::XRay::BatchGetTracesResult instance
Retrieves a list of traces specified by ID. Each trace is a collection
of segment documents that originates from a single request. Use
C<GetTraceSummaries> to get a list of trace IDs.
GetServiceGraph(EndTime => Str, StartTime => Str, [NextToken => Str])
Each argument is described in detail in: Paws::XRay::GetServiceGraph
Returns: a Paws::XRay::GetServiceGraphResult instance
Retrieves a document that describes services that process incoming
requests, and downstream services that they call as a result. Root
services process incoming requests and make calls to downstream
services. Root services are applications that use the AWS X-Ray SDK.
Downstream services can be other applications, AWS resources, HTTP web
APIs, or SQL databases.
GetTraceGraph(TraceIds => ArrayRef[Str|Undef], [NextToken => Str])
Each argument is described in detail in: Paws::XRay::GetTraceGraph
Returns: a Paws::XRay::GetTraceGraphResult instance
Retrieves a service graph for one or more specific trace IDs.
GetTraceSummaries(EndTime => Str, StartTime => Str, [FilterExpression => Str, NextToken => Str, Sampling => Bool])
Each argument is described in detail in: Paws::XRay::GetTraceSummaries
Returns: a Paws::XRay::GetTraceSummariesResult instance
Retrieves IDs and metadata for traces available for a specified time
frame using an optional filter. To get the full traces, pass the trace
IDs to C<BatchGetTraces>.
PutTelemetryRecords(TelemetryRecords => ArrayRef[Paws::XRay::TelemetryRecord], [EC2InstanceId => Str, Hostname => Str, ResourceARN => Str])
Each argument is described in detail in: Paws::XRay::PutTelemetryRecords
Returns: a Paws::XRay::PutTelemetryRecordsResult instance
Used by the AWS X-Ray daemon to upload telemetry.
PutTraceSegments(TraceSegmentDocuments => ArrayRef[Str|Undef])
Each argument is described in detail in: Paws::XRay::PutTraceSegments
Returns: a Paws::XRay::PutTraceSegmentsResult instance
Uploads segment documents to AWS X-Ray. The X-Ray SDK generates segment
documents and sends them to the X-Ray daemon, which uploads them in
batches. A segment document can be a completed segment, an in-progress
segment, or an array of subsegments.
PAGINATORS
Paginator methods are helpers that repetively call methods that return partial results
SEE ALSO
This service class forms part of Paws
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues