/AWS1/IF_XRA=>PUTTELEMETRYRECORDS()¶
About PutTelemetryRecords¶
Used by the Amazon Web Services X-Ray daemon to upload telemetry.
Method Signature¶
METHODS /AWS1/IF_XRA~PUTTELEMETRYRECORDS
  IMPORTING
    !IT_TELEMETRYRECORDS TYPE /AWS1/CL_XRATELEMETRYRECORD=>TT_TELEMETRYRECORDLIST OPTIONAL
    !IV_EC2INSTANCEID TYPE /AWS1/XRAEC2INSTANCEID OPTIONAL
    !IV_HOSTNAME TYPE /AWS1/XRAHOSTNAME OPTIONAL
    !IV_RESOURCEARN TYPE /AWS1/XRARESOURCEARN OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_xraputtelemetryrecrs
  RAISING
    /AWS1/CX_XRAINVALIDREQUESTEX
    /AWS1/CX_XRATHROTTLEDEXCEPTION
    /AWS1/CX_XRACLIENTEXC
    /AWS1/CX_XRASERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
it_telemetryrecords TYPE /AWS1/CL_XRATELEMETRYRECORD=>TT_TELEMETRYRECORDLIST TT_TELEMETRYRECORDLIST¶
Optional arguments:¶
iv_ec2instanceid TYPE /AWS1/XRAEC2INSTANCEID /AWS1/XRAEC2INSTANCEID¶
iv_hostname TYPE /AWS1/XRAHOSTNAME /AWS1/XRAHOSTNAME¶
iv_resourcearn TYPE /AWS1/XRARESOURCEARN /AWS1/XRARESOURCEARN¶
RETURNING¶
oo_output TYPE REF TO /aws1/cl_xraputtelemetryrecrs /AWS1/CL_XRAPUTTELEMETRYRECRS¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC 
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->puttelemetryrecords(
  it_telemetryrecords = VALUE /aws1/cl_xratelemetryrecord=>tt_telemetryrecordlist(
    (
      new /aws1/cl_xratelemetryrecord(
        io_backendconnectionerrors = new /aws1/cl_xrabackendconnerrors(
          iv_connectionrefusedcount = 123
          iv_httpcode4xxcount = 123
          iv_httpcode5xxcount = 123
          iv_othercount = 123
          iv_timeoutcount = 123
          iv_unknownhostcount = 123
        )
        iv_segmentsreceivedcount = 123
        iv_segmentsrejectedcount = 123
        iv_segmentssentcount = 123
        iv_segmentsspillovercount = 123
        iv_timestamp = '20150101000000.0000000'
      )
    )
  )
  iv_ec2instanceid = |string|
  iv_hostname = |string|
  iv_resourcearn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.