Skip to content

Put Telemetry Records

xray_put_telemetry_records R Documentation

Used by the Amazon Web Services X-Ray daemon to upload telemetry

Description

Used by the Amazon Web Services X-Ray daemon to upload telemetry.

Usage

xray_put_telemetry_records(TelemetryRecords, EC2InstanceId, Hostname,
  ResourceARN)

Arguments

TelemetryRecords

[required]

EC2InstanceId
Hostname
ResourceARN

Value

An empty list.

Request syntax

svc$put_telemetry_records(
  TelemetryRecords = list(
    list(
      Timestamp = as.POSIXct(
        "2015-01-01"
      ),
      SegmentsReceivedCount = 123,
      SegmentsSentCount = 123,
      SegmentsSpilloverCount = 123,
      SegmentsRejectedCount = 123,
      BackendConnectionErrors = list(
        TimeoutCount = 123,
        ConnectionRefusedCount = 123,
        HTTPCode4XXCount = 123,
        HTTPCode5XXCount = 123,
        UnknownHostCount = 123,
        OtherCount = 123
      )
    )
  ),
  EC2InstanceId = "string",
  Hostname = "string",
  ResourceARN = "string"
)