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

SamplingStatisticsDocument

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

Request sampling results for a single rule from a service. Results are for the last 10 seconds unless the service has been assigned a longer reporting interval after a previous call to GetSamplingTargets.

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

§Properties

§
BorrowCount?: number | null
[src]

The number of requests recorded with borrowed reservoir quota.

§
ClientID: string
[src]

A unique identifier for the service in hexadecimal.

§
RequestCount: number
[src]

The number of requests that matched the rule.

§
RuleName: string
[src]

The name of the sampling rule.

§
SampledCount: number
[src]

The number of requests recorded.

§
Timestamp: Date | number
[src]

The current time.