1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package internal
import "time"
const (
// app behavior
// FixedHarvestPeriod is the period that fixed period data (metrics,
// traces, and span events) is sent to New Relic.
FixedHarvestPeriod = 60 * time.Second
// DefaultConfigurableEventHarvestMs is the period for custom, error,
// and transaction events if the connect response's
// "event_harvest_config.report_period_ms" is missing or invalid.
DefaultConfigurableEventHarvestMs = 60 * 1000
// CollectorTimeout is the timeout used in the client for communication
// with New Relic's servers.
CollectorTimeout = 20 * time.Second
// AppDataChanSize is the size of the channel that contains data sent
// the app processor.
AppDataChanSize = 200
failedMetricAttemptsLimit = 5
failedEventsAttemptsLimit = 10
// maxPayloadSizeInBytes specifies the maximum payload size in bytes that
// should be sent to any endpoint
maxPayloadSizeInBytes = 1000 * 1000
// transaction behavior
maxStackTraceFrames = 100
// MaxTxnErrors is the maximum number of errors captured per
// transaction.
MaxTxnErrors = 5
maxTxnSlowQueries = 10
startingTxnTraceNodes = 16
maxTxnTraceNodes = 256
// harvest data
maxMetrics = 2 * 1000
// MaxCustomEvents is the maximum number of Transaction Events that can be captured
// per 60-second harvest cycle
MaxCustomEvents = 10 * 1000
// MaxTxnEvents is the maximum number of Transaction Events that can be captured
// per 60-second harvest cycle
MaxTxnEvents = 10 * 1000
maxRegularTraces = 1
maxSyntheticsTraces = 20
// MaxErrorEvents is the maximum number of Error Events that can be captured
// per 60-second harvest cycle
MaxErrorEvents = 100
maxHarvestErrors = 20
maxHarvestSlowSQLs = 10
// MaxSpanEvents is the maximum number of Span Events that can be captured
// per 60-second harvest cycle
MaxSpanEvents = 1000
// attributes
attributeKeyLengthLimit = 255
attributeValueLengthLimit = 255
attributeUserLimit = 64
// AttributeErrorLimit limits the number of extra attributes that can be
// provided when noticing an error.
AttributeErrorLimit = 32
customEventAttributeLimit = 64
// Limits affecting Config validation are found in the config package.
// RuntimeSamplerPeriod is the period of the runtime sampler. Runtime
// metrics should not depend on the sampler period, but the period must
// be the same across instances. For that reason, this value should not
// be changed without notifying customers that they must update all
// instance simultaneously for valid runtime metrics.
RuntimeSamplerPeriod = 60 * time.Second
txnNameCacheLimit = 40
)
|