You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These can be controlled with the following config options:
apm-server.sampling.keep_unsampled: true|false (currently defaults to true, for backwards compatibility)
Controls whether or not non-sampled transactions documents are recorded
apm-server.aggregation.transactions.enabled: true|false (currently defaults to false)
Controls whether or not metrics are gathered and published
apm-server.aggregation.transactions.interval: <duration> (currently defaults to 1m)
Controls how frequently the metrics are published
apm-server.aggregation.transactions.max_groups: [1,+Inf] (currently defaults to 1000)
Maximum number of transaction groups to keep track of. Once this is exceeded, we devolve into recording a metrics document for each transaction not in one of the transaction groups being tracked.
apm-server.aggregation.transactions.hdrhistogram_significant_figures: [1,5] (currently defaults to 2)
apm-server.aggregation.transactions.rum.user_agent.lru_size: [1,+Inf] (currently defaults to 5000)
For "page-load" RUM transactions we aggregate on the user-agent name, which requires user-agent parsing. To avoid parsing every user-agent, we maintain an cache of user-agent strings. This option controls the cache size.
There's a UI proof of concept underway in progress: elastic/kibana#66871elastic/kibana#73953. I think we probably want to wait for the UI side to be in its shippable state before we document these options, otherwise they'll just be confusing.
The text was updated successfully, but these errors were encountered:
We have added support in APM Server for:
These can be controlled with the following config options:
apm-server.sampling.keep_unsampled: true|false
(currently defaults totrue
, for backwards compatibility)apm-server.aggregation.transactions.enabled: true|false
(currently defaults tofalse
)apm-server.aggregation.transactions.interval: <duration>
(currently defaults to1m
)apm-server.aggregation.transactions.max_groups: [1,+Inf]
(currently defaults to 1000)apm-server.aggregation.transactions.hdrhistogram_significant_figures: [1,5]
(currently defaults to 2)apm-server.aggregation.transactions.rum.user_agent.lru_size: [1,+Inf]
(currently defaults to 5000)There's a UI proof of concept underway in progress:
elastic/kibana#66871elastic/kibana#73953. I think we probably want to wait for the UI side to be in its shippable state before we document these options, otherwise they'll just be confusing.The text was updated successfully, but these errors were encountered: