Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SamplingStatisticSummary

import type { SamplingStatisticSummary } from "https://aws-api.deno.dev/v0.4/services/xray.ts?docs=full";

Aggregated request sampling data for a sampling rule across all services for a 10-second window.

interface SamplingStatisticSummary {
BorrowCount?: number | null;
RequestCount?: number | null;
RuleName?: string | null;
SampledCount?: number | null;
Timestamp?: Date | number | null;
}

§Properties

§
BorrowCount?: number | null
[src]

The number of requests recorded with borrowed reservoir quota.

§
RequestCount?: number | null
[src]

The number of requests that matched the rule.

§
RuleName?: string | null
[src]

The name of the sampling rule.

§
SampledCount?: number | null
[src]

The number of requests recorded.

§
Timestamp?: Date | number | null
[src]

The start time of the reporting window.