amazonka-xray-2.0: Amazon X-Ray SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.XRay.Types.Edge

Description

 
Synopsis

Documentation

data Edge Source #

Information about a connection between two services. An edge can be a synchronous connection, such as typical call between client and service, or an asynchronous link, such as a Lambda function which retrieves an event from an SNS queue.

See: newEdge smart constructor.

Constructors

Edge' 

Fields

Instances

Instances details
FromJSON Edge Source # 
Instance details

Defined in Amazonka.XRay.Types.Edge

Generic Edge Source # 
Instance details

Defined in Amazonka.XRay.Types.Edge

Associated Types

type Rep Edge :: Type -> Type #

Methods

from :: Edge -> Rep Edge x #

to :: Rep Edge x -> Edge #

Read Edge Source # 
Instance details

Defined in Amazonka.XRay.Types.Edge

Show Edge Source # 
Instance details

Defined in Amazonka.XRay.Types.Edge

Methods

showsPrec :: Int -> Edge -> ShowS #

show :: Edge -> String #

showList :: [Edge] -> ShowS #

NFData Edge Source # 
Instance details

Defined in Amazonka.XRay.Types.Edge

Methods

rnf :: Edge -> () #

Eq Edge Source # 
Instance details

Defined in Amazonka.XRay.Types.Edge

Methods

(==) :: Edge -> Edge -> Bool #

(/=) :: Edge -> Edge -> Bool #

Hashable Edge Source # 
Instance details

Defined in Amazonka.XRay.Types.Edge

Methods

hashWithSalt :: Int -> Edge -> Int #

hash :: Edge -> Int #

type Rep Edge Source # 
Instance details

Defined in Amazonka.XRay.Types.Edge

newEdge :: Edge Source #

Create a value of Edge with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:aliases:Edge', edge_aliases - Aliases for the edge.

$sel:edgeType:Edge', edge_edgeType - Describes an asynchronous connection, with a value of link.

$sel:endTime:Edge', edge_endTime - The end time of the last segment on the edge.

$sel:receivedEventAgeHistogram:Edge', edge_receivedEventAgeHistogram - A histogram that maps the spread of event age when received by consumers. Age is calculated each time an event is received. Only populated when EdgeType is link.

$sel:referenceId:Edge', edge_referenceId - Identifier of the edge. Unique within a service map.

$sel:responseTimeHistogram:Edge', edge_responseTimeHistogram - A histogram that maps the spread of client response times on an edge. Only populated for synchronous edges.

$sel:startTime:Edge', edge_startTime - The start time of the first segment on the edge.

$sel:summaryStatistics:Edge', edge_summaryStatistics - Response statistics for segments on the edge.

edge_aliases :: Lens' Edge (Maybe [Alias]) Source #

Aliases for the edge.

edge_edgeType :: Lens' Edge (Maybe Text) Source #

Describes an asynchronous connection, with a value of link.

edge_endTime :: Lens' Edge (Maybe UTCTime) Source #

The end time of the last segment on the edge.

edge_receivedEventAgeHistogram :: Lens' Edge (Maybe [HistogramEntry]) Source #

A histogram that maps the spread of event age when received by consumers. Age is calculated each time an event is received. Only populated when EdgeType is link.

edge_referenceId :: Lens' Edge (Maybe Int) Source #

Identifier of the edge. Unique within a service map.

edge_responseTimeHistogram :: Lens' Edge (Maybe [HistogramEntry]) Source #

A histogram that maps the spread of client response times on an edge. Only populated for synchronous edges.

edge_startTime :: Lens' Edge (Maybe UTCTime) Source #

The start time of the first segment on the edge.

edge_summaryStatistics :: Lens' Edge (Maybe EdgeStatistics) Source #

Response statistics for segments on the edge.