sampling

package
v1.1.82 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2024 License: Apache-2.0 Imports: 11 Imported by: 1

Documentation

Index

Constants

View Source
const (
	SampleKey = "sample"
)

SampleKey - the key used in the metadata when a transaction qualifies for sampling and should be sent to Observer defaultSamplingRate - the default sampling rate in percentage

Variables

View Source
var (
	ErrGlobalSamplingCfg = errors.New(1520, "the global sampling config has not been initialized")
	ErrSamplingCfg       = errors.Newf(1521, "sampling percentage must be between 0 and %v. Setting sampling percentage to default value of %v percent")
)

Config errors

Functions

func FilterEvents

func FilterEvents(events []publisher.Event) ([]publisher.Event, error)

FilterEvents - returns an array of events that are part of the sample

func GetGlobalSamplingPercentage

func GetGlobalSamplingPercentage() (float64, error)

GetGlobalSamplingPercentage -

func SetupSampling

func SetupSampling(cfg Sampling, offlineMode bool) error

SetupSampling - set up the global sampling for use by traceability

func ShouldSampleTransaction

func ShouldSampleTransaction(details TransactionDetails) (bool, error)

ShouldSampleTransaction - receives the transaction details and returns true to sample it false to not

Types

type Sampling

type Sampling struct {
	Percentage      float64 `config:"percentage"`
	PerAPI          bool    `config:"per_api"`
	PerSub          bool    `config:"per_subscription"`
	ReportAllErrors bool    `config:"reportAllErrors" yaml:"reportAllErrors"`
	// contains filtered or unexported fields
}

Sampling - configures the sampling of events the agent sends to Amplify

func DefaultConfig

func DefaultConfig() Sampling

DefaultConfig - returns a default sampling config where all transactions are sent

type TransactionDetails

type TransactionDetails struct {
	Status string
	APIID  string
	SubID  string
}

TransactionDetails - details about the transaction that are used for sampling

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL