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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package newrelic
import (
"encoding/json"
"strings"
"time"
"github.com/newrelic/go-agent/v3/internal"
)
// appRun contains information regarding a single connection session with the
// collector. It is immutable after creation at application connect.
type appRun struct {
Reply *internal.ConnectReply
// AttributeConfig is calculated on every connect since it depends on
// the security policies.
AttributeConfig *attributeConfig
Config config
// firstAppName is the value of Config.AppName up to the first semicolon.
firstAppName string
adaptiveSampler *adaptiveSampler
// rulesCache caches the results of creating transaction names. It
// exists here since it is specific to a set of rules and is shared
// between transactions.
rulesCache *rulesCache
// harvestConfig contains configuration related to event limits and
// flexible harvest periods. This field is created once at appRun
// creation.
harvestConfig harvestConfig
}
const (
txnNameCacheLimit = 40
)
func newAppRun(config config, reply *internal.ConnectReply) *appRun {
run := &appRun{
Reply: reply,
AttributeConfig: createAttributeConfig(config, reply.SecurityPolicies.AttributesInclude.Enabled()),
Config: config,
rulesCache: newRulesCache(txnNameCacheLimit),
}
// Overwrite local settings with any server-side-config settings
// present. NOTE! This requires that the Config provided to this
// function is a value and not a pointer: We do not want to change the
// input Config with values particular to this connection.
if v := run.Reply.ServerSideConfig.TransactionTracerEnabled; nil != v {
run.Config.TransactionTracer.Enabled = *v
}
if v := run.Reply.ServerSideConfig.ErrorCollectorEnabled; nil != v {
run.Config.ErrorCollector.Enabled = *v
}
if v := run.Reply.ServerSideConfig.CrossApplicationTracerEnabled; nil != v {
run.Config.CrossApplicationTracer.Enabled = *v
}
if v := run.Reply.ServerSideConfig.TransactionTracerThreshold; nil != v {
switch val := v.(type) {
case float64:
run.Config.TransactionTracer.Threshold.IsApdexFailing = false
run.Config.TransactionTracer.Threshold.Duration = internal.FloatSecondsToDuration(val)
case string:
if val == "apdex_f" {
run.Config.TransactionTracer.Threshold.IsApdexFailing = true
}
}
}
if v := run.Reply.ServerSideConfig.TransactionTracerStackTraceThreshold; nil != v {
run.Config.TransactionTracer.Segments.StackTraceThreshold = internal.FloatSecondsToDuration(*v)
}
if v := run.Reply.ServerSideConfig.ErrorCollectorIgnoreStatusCodes; nil != v {
run.Config.ErrorCollector.IgnoreStatusCodes = v
}
if !run.Reply.CollectErrorEvents {
run.Config.ErrorCollector.CaptureEvents = false
}
if !run.Reply.CollectAnalyticsEvents {
run.Config.TransactionEvents.Enabled = false
}
if !run.Reply.CollectTraces {
run.Config.TransactionTracer.Enabled = false
run.Config.DatastoreTracer.SlowQuery.Enabled = false
}
if !run.Reply.CollectSpanEvents {
run.Config.SpanEvents.Enabled = false
}
// Distributed tracing takes priority over cross-app-tracing per:
// https://source.datanerd.us/agents/agent-specs/blob/master/Distributed-Tracing.md#distributed-trace-payload
if run.Config.DistributedTracer.Enabled {
run.Config.CrossApplicationTracer.Enabled = false
}
// Cache the first application name set on the config
run.firstAppName = strings.SplitN(config.AppName, ";", 2)[0]
run.adaptiveSampler = newAdaptiveSampler(
time.Duration(reply.SamplingTargetPeriodInSeconds)*time.Second,
reply.SamplingTarget,
time.Now())
if "" != run.Reply.RunID {
js, _ := json.Marshal(settings(run.Config.Config))
run.Config.Logger.Debug("final configuration", map[string]interface{}{
"config": jsonString(js),
})
}
run.harvestConfig = harvestConfig{
ReportPeriods: run.ReportPeriods(),
MaxTxnEvents: run.MaxTxnEvents(),
MaxCustomEvents: run.MaxCustomEvents(),
MaxErrorEvents: run.MaxErrorEvents(),
MaxSpanEvents: run.MaxSpanEvents(),
}
return run
}
func newPlaceholderAppRun(config config) *appRun {
reply := internal.ConnectReplyDefaults()
// Do no sampling if the app isn't connected:
reply.SamplingTarget = 0
return newAppRun(config, reply)
}
const (
// https://source.datanerd.us/agents/agent-specs/blob/master/Lambda.md#distributed-tracing
serverlessDefaultPrimaryAppID = "Unknown"
)
func newServerlessConnectReply(config config) *internal.ConnectReply {
reply := internal.ConnectReplyDefaults()
reply.ApdexThresholdSeconds = config.ServerlessMode.ApdexThreshold.Seconds()
reply.AccountID = config.ServerlessMode.AccountID
reply.TrustedAccountKey = config.ServerlessMode.TrustedAccountKey
reply.PrimaryAppID = config.ServerlessMode.PrimaryAppID
if "" == reply.TrustedAccountKey {
// The trust key does not need to be provided by customers whose
// account ID is the same as the trust key.
reply.TrustedAccountKey = reply.AccountID
}
if "" == reply.PrimaryAppID {
reply.PrimaryAppID = serverlessDefaultPrimaryAppID
}
// https://source.datanerd.us/agents/agent-specs/blob/master/Lambda.md#adaptive-sampling
reply.SamplingTargetPeriodInSeconds = 60
reply.SamplingTarget = 10
return reply
}
func (run *appRun) responseCodeIsError(code int) bool {
// Response codes below 100 are allowed to be errors to support gRPC.
if code < 400 && code >= 100 {
return false
}
for _, ignoreCode := range run.Config.ErrorCollector.IgnoreStatusCodes {
if code == ignoreCode {
return false
}
}
return true
}
func (run *appRun) txnTraceThreshold(apdexThreshold time.Duration) time.Duration {
if run.Config.TransactionTracer.Threshold.IsApdexFailing {
return apdexFailingThreshold(apdexThreshold)
}
return run.Config.TransactionTracer.Threshold.Duration
}
func (run *appRun) ptrTxnEvents() *uint { return run.Reply.EventData.Limits.TxnEvents }
func (run *appRun) ptrCustomEvents() *uint { return run.Reply.EventData.Limits.CustomEvents }
func (run *appRun) ptrErrorEvents() *uint { return run.Reply.EventData.Limits.ErrorEvents }
func (run *appRun) ptrSpanEvents() *uint { return run.Reply.EventData.Limits.SpanEvents }
func (run *appRun) MaxTxnEvents() int { return run.limit(run.Config.maxTxnEvents(), run.ptrTxnEvents) }
func (run *appRun) MaxCustomEvents() int {
return run.limit(internal.MaxCustomEvents, run.ptrCustomEvents)
}
func (run *appRun) MaxErrorEvents() int {
return run.limit(internal.MaxErrorEvents, run.ptrErrorEvents)
}
func (run *appRun) MaxSpanEvents() int { return run.limit(maxSpanEvents, run.ptrSpanEvents) }
func (run *appRun) limit(dflt int, field func() *uint) int {
if nil != field() {
return int(*field())
}
return dflt
}
func (run *appRun) ReportPeriods() map[harvestTypes]time.Duration {
fixed := harvestMetricsTraces
configurable := harvestTypes(0)
for tp, fn := range map[harvestTypes]func() *uint{
harvestTxnEvents: run.ptrTxnEvents,
harvestCustomEvents: run.ptrCustomEvents,
harvestErrorEvents: run.ptrErrorEvents,
harvestSpanEvents: run.ptrSpanEvents,
} {
if nil != run && fn() != nil {
configurable |= tp
} else {
fixed |= tp
}
}
return map[harvestTypes]time.Duration{
configurable: run.Reply.ConfigurablePeriod(),
fixed: fixedHarvestPeriod,
}
}
func (run *appRun) createTransactionName(input string, isWeb bool) string {
if name := run.rulesCache.find(input, isWeb); "" != name {
return name
}
name := internal.CreateFullTxnName(input, run.Reply, isWeb)
if "" != name {
// Note that we don't cache situations where the rules say
// ignore. It would increase complication (we would need to
// disambiguate not-found vs ignore). Also, the ignore code
// path is probably extremely uncommon.
run.rulesCache.set(input, isWeb, name)
}
return name
}
|