| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.XRay.Types.EdgeStatistics
Description
Synopsis
- data EdgeStatistics = EdgeStatistics' {}
- newEdgeStatistics :: EdgeStatistics
- edgeStatistics_errorStatistics :: Lens' EdgeStatistics (Maybe ErrorStatistics)
- edgeStatistics_faultStatistics :: Lens' EdgeStatistics (Maybe FaultStatistics)
- edgeStatistics_okCount :: Lens' EdgeStatistics (Maybe Integer)
- edgeStatistics_totalCount :: Lens' EdgeStatistics (Maybe Integer)
- edgeStatistics_totalResponseTime :: Lens' EdgeStatistics (Maybe Double)
Documentation
data EdgeStatistics Source #
Response statistics for an edge.
See: newEdgeStatistics smart constructor.
Constructors
| EdgeStatistics' | |
Fields
| |
Instances
newEdgeStatistics :: EdgeStatistics Source #
Create a value of EdgeStatistics 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:errorStatistics:EdgeStatistics', edgeStatistics_errorStatistics - Information about requests that failed with a 4xx Client Error status
code.
$sel:faultStatistics:EdgeStatistics', edgeStatistics_faultStatistics - Information about requests that failed with a 5xx Server Error status
code.
$sel:okCount:EdgeStatistics', edgeStatistics_okCount - The number of requests that completed with a 2xx Success status code.
EdgeStatistics, edgeStatistics_totalCount - The total number of completed requests.
$sel:totalResponseTime:EdgeStatistics', edgeStatistics_totalResponseTime - The aggregate response time of completed requests.
edgeStatistics_errorStatistics :: Lens' EdgeStatistics (Maybe ErrorStatistics) Source #
Information about requests that failed with a 4xx Client Error status code.
edgeStatistics_faultStatistics :: Lens' EdgeStatistics (Maybe FaultStatistics) Source #
Information about requests that failed with a 5xx Server Error status code.
edgeStatistics_okCount :: Lens' EdgeStatistics (Maybe Integer) Source #
The number of requests that completed with a 2xx Success status code.
edgeStatistics_totalCount :: Lens' EdgeStatistics (Maybe Integer) Source #
The total number of completed requests.
edgeStatistics_totalResponseTime :: Lens' EdgeStatistics (Maybe Double) Source #
The aggregate response time of completed requests.