Note
|
Release notes are best read in our documentation at elastic.co |
-
Add support for Node.js v16. (This also drops testing of Node.js v13 releases.)
-
Update TypeScript typings for
Agent.setLabel
andAgent.addLabels
to include thestringify
argument that was added in v3.11.0.
-
Add
apm.addMetadataFilter(fn)
for filtering the metadata object sent to APM server. -
The handling of sending events (transactions, spans, errors) to APM server has improved in a few ways. During temporary spikes in load and/or an APM server that is unresponsive, the agent will buffer a number of events and drop them above a certain limit (configurable via [max-queue-size]). This helps ensure the agent does not overly consume memory and CPU. As well, the agent will now backoff when the APM server errors. Finally, improved error handling means it will terminate failing requests to the APM server more quickly.
Note: v1 of this agent (EOL’d 2 years ago), included a
maxQueueSize
config variable with a different meaning. If you have a lingering usage of that setting (also possibly as theELASTIC_APM_MAX_QUEUE_SIZE
environment variable), then it should be removed. -
Adds support for Amazon SQS queues via
aws-sdk
instrumentation that partially implements the APM messaging spec, and addsqueue.latency.min.ms
,queue.latency.max.ms
, andqueue.latency.avg.ms
metrics for SQS queues.
-
Fixed bug where the URL property for outgoing HTTP request spans was set with the server’s IP address rather than its hostname. The Agent now sets this property with the actual URL requested by Node.js.
-
Fixed bug where external services were not listed under Dependencies on the APM Service Overview page due to the trace-context propagated
sample_rate
value not being set on either transactions or spans.
-
The APM agent’s own internal logging now uses structured JSON logging using the pino API, and formatted in {ecs-logging-ref}/intro.html[ecs-logging] format. The log records on stdout are now single-line JSON objects. For example:
# Before APM Server transport error (ECONNREFUSED): connect ECONNREFUSED 127.0.0.1:8200 # After {"log.level":"error","@timestamp":"2021-03-19T00:21:17.571Z","log":{"logger":"elastic-apm-node"}, "ecs":{"version":"1.6.0"},"message":"APM Server transport error (ECONNREFUSED): connect ECONNREFUSED 127.0.0.1:8200"}
Pretty formatting (and filtering) on the console may be done via the
ecslog
tool.A custom [logger] is still supported as before. However, a non-pino custom logger will only receive the "message" field, and not structured log fields as they are added over time.
-
Add support for setting the
ELASTIC_APM_LOGGER=false
environment variable to disable/ignore a given custom [logger]. This is to support easier [debug-mode] for troubleshooting.
-
Lock package dependency "[email protected]" to avoid using v9.7.0 for now, because it is breaking tests. A coming release will get back on the latest of this dependency. {issues}2032[#2032]
-
Remove the "ancestors" field from a log.trace message on startup. Its info is a duplicate of info in the "startTrace" field in the same log record. {pull}2005[#2005]
-
Remove the accidental
nodejs.eventloop.delay.ns
metric that was always reporting a zero value. The existingnodejs.eventloop.delay.avg.ms
is the intended metric. {pull}1993[#1993]
-
fix: Update apm-server client to fix a {issues}1749[possible crash] when polling for central config.
-
feat: Set span outcome to success or failure depending on whether an error was captured during when the span was active. {issues}1814[#1814]
-
feat: Adds public
setOutcome
method to span and transaction APIs, and adds a top levelsetTransactionOutcome
andsetSpanOutcome
to set outcome values for the current active transaction or active span. -
Limit the
transactionSampleRate
value to 4 decimal places of precision according to the shared APM spec. This ensures that propagated sampling rate in thetracestate
header is short and consistent. {pull}1979[#1979]
-
fix: It was possible for fetching central config to result in the
cloudProvider
config value being reset to its default. {issues}1976[#1976] -
fix: fixes bug where tedious could crash the agent on bulk inserts {pull}1935[#1935]
Reported via the forum. The error symptom was:Cannot read property 'statement' of undefined
-
feat: add
apm.getServiceName()
{pull}1949[#1949]
This will be used by ecs-logging packages to integrate with APM. -
feat: support numeric and boolean labels {pull}1909[#1909]
Add an optionalstringify
option toapm.setLabel(name, version, stringify = true)
andapm.addLabels(labels, stringify = true)
, which can be setfalse
to allow numeric and boolean labels. Stringify defaults to true for backwards compatibility — stringification will be removed in a future major version. -
feat: added support for cloud metadata fetching {pull}1937[#1937]
Agent now collects information about its cloud environment and includes this data in the APM Server’s metadata payload. See the spec for more information.
-
feat: Improve handling of raw body parsing The agent will now report raw/
Buffer
encoded post bodies as '<Buffer>'. -
feat: Add support for api keys {pull}1818[#1818]
This allows the usage of API keys for authentication to the APM server -
feat: Add automatic instrumentation of the @elastic/elasticsearch package {pull}1877[#1870]
The instrumentation of the legacy "elasticsearch" package has also changed slightly to commonalize:
-
"span.context.destination" is set on all Elasticsearch spans, not just a subset of query-like API endpoints.
-
For query-like API endpoints (e.g.
/_search
), the capturing of query details on "span.context.db.statement" has changed (a) to include both the query params and the request body if both exist (separated by\n\n
) and (b) to URL encode the query params, rather than JSON encoding.
-
-
feat: Add
captureAttributes
boolean option toapm.captureError()
to allow disabling the automatic capture of Error object properties. This is useful for cases where those properties should not be sent to the APM Server, e.g. for performance (large string fields) or security (PII data). {pull}1912[#1912] -
feat: Add
log_level
central config support. {pull}1908[#1908]
Spec: https://github.com/elastic/apm/blob/master/specs/agents/logging.md -
feat: implemented sanitize_feature_names specification
Allows users to configure a list of wildcard patterns to remove items from the agent’s HTTP header andapplication/x-www-form-urlencoded
payloads.
-
fix: Fix parsing of comma-separated strings for relevant config vars to allow whitespace around the commas. E.g.:
export ELASTIC_APM_TRANSACTION_IGNORE_URLS='/ping, /metrics*'
Config vars affected are:
disableInstrumentations
,transactionIgnoreUrls
addPatch
, andglobalLabels
. -
fix: Correct the environment variable for setting
transactionIgnoreUrl
(added in v3.9.0) fromELASTIC_TRANSACTION_IGNORE_URLS
toELASTIC_APM_TRANSACTION_IGNORE_URLS
.
-
feat: support fastify 3 {pull}1891[#1891]
Adds .default and .fastify module.exports to instrumented fastify function for 3.x line, and prefers req.routerMethod and req.routerPath for transaction name -
feat: Set "destination" context on spans for "mongodb". {pull}1893[#1893]
This allows Kibana APM Service Maps to show a "mongodb" node for services using the mongodb package (which includes mongoose and mongojs). -
feat: transactionIgnoreUrl wildcard matching {pull}1870[#1870]
Allows users to ignore URLs using simple wildcard matching patterns that behave the same across language agents. See elastic/apm#144
-
fix: treat set-cookie in response headers as sensitive data {pull}1886[#1886]
-
fix: Synchronous spans would never have
span.sync == true
. {pull}1879[#1879]
-
feat: expand k8s pod ID discovery regex {pull}1863[#1863]
-
feat: implements tracestate {pull}1828[#1828]
Expands support for the W3C Trace Context specification by adding a tracestate header implementation, and uses this new header to track the Elastic transaction sample rate across a trace’s service boundaries. -
feat: add span and transaction outcome {pull}1824[#1824]
This adds an "outcome" field to HTTP(S) transactions and spans.
-
fix(pg): prevent unhandled promise rejection {pull}1846[#1846]
-
fix: [email protected] instrumentation was broken {pull}1852[#1852]
-
A number of fixes to the test suite.
-
feat(knex): add support for 0.21.x {pull}1801[#1801]
-
feat(redis): add support for v3.x {pull}1641[#1641]
-
feat(graphql): add support for 15.x {pull}1795[#1795]
-
feat(koa-router): add support for 9.x {pull}1772[#1772]
-
fix(elasticsearch): ensure requests can be aborted {pull}1566[#1566]
-
fix: end span if outgoing http request ends prematurely {pull}1583[#1583]
-
fix: don’t throw on invalid URL {pull}1771[#1771]
-
fix: patch apollo-server-core > 2.14 correctly {pull}1796[#1796]
-
fix: add currentTraceIds to typings {pull}1733[#1733]
-
feat: add destination metadata for db spans {pull}1687[#1687]
-
feat: add support for Node.js 14 {pull}1742[#1742]
-
feat(pg): add support for pg v8.x {pull}1743[#1743]
-
feat: add metrics for external memory {pull}1724[#1724]
-
feat: enrich spans with destination info {pull}1685[#1685]
-
fix(instrumentation): add .js to module path {pull}1711[#1711]
-
feat(error): get stack trace from Error-like objects {pull}1613[#1613]
-
fix: add logUncaughtExceptions conf option to TypeScript typings {pull}1668[#1668]
-
feat: support W3C TraceContext traceparent header {pull}1587[#1587]
-
feat: add custom metrics API (experimental) {pull}1571[#1571]
-
feat(koa-router): add support for v8.x {pull}1642[#1642]
-
fix(cassandra): improve support for cassandra-driver v4.4.0+ {pull}1636[#1636]
-
fix: support promisifying setTimeout and friends {pull}1636[#1636]
-
feat(config): add serverCaCertFile config {pull}1560[#1560]
-
feat(config): add central config support for transactionMaxSpans and captureBody {pull}1555[#1555]
-
fix(metrics): only register collectors if enabled {pull}1520[#1520]
-
fix(ioredis): prevent unhandled promise rejection {pull}1523[#1523]
-
chore: add Node 13 to supported engines {pull}1524[#1524]
-
feat(mongodb): instrumentation {pull}1423[#1423]
-
fix(package): update elastic-apm-http-client to version 9.0.0 {pull}1419[#1419]
-
perf: cache 'ids' value of transactions and spans {pull}1434[#1434]
-
fix: always end transaction when socket is closed prematurely {pull}1439[#1439]
-
fix: change logUncaughtExceptions default to false {pull}1432[#1432]
-
fix: write stack trace of uncaught exceptions to STDERR {pull}1429[#1429]
-
feat: allow manual instrumentation with
instrument: false
{pull}1114[#1114] -
feat: allow setting span/transaction
type
,subtype
, andaction
separately (the behavior of the oldtype
has changed) {pull}1292[#1292] -
feat: use
external
as span type instead ofext
{pull}1291[#1291] -
refactor(graphql): use custom transaction type
graphql
for graphql requests instead ofrequest
{pull}1245[#1245] -
feat(http): add
instrumentIncomingHTTPRequests
config (disableInstrumentations
now behaves differently) {pull}1298[#1298] -
chore: remove deprecated APIs {pull}1413[#1413]
-
chore: drop support for older Node.js versions {pull}1383[#1383]
-
fix: support promisifying setTimeout and friends {pull}1649[#1649]
-
fix(cassandra): improve support for cassandra-driver v4.4.0+ {pull}1649[#1649]
-
fix(knex): make stack traces work in 0.18+ {pull}1500[#1500]
-
fix(tedious): ensure shimmed module exposes same API {pull}1496[#1496]
-
fix(metrics): do not send transaction breakdowns when disabled {pull}1489[#1489]
-
fix(tedious): support 6.5+ {pull}1488[#1488]
-
fix: always end transaction when socket is closed prematurely {pull}1445[#1445]
-
perf: cache 'ids' value of transactions and spans {pull}1438[#1438]
-
chore(http): workaround(s) to suppress DEP0066 warnings {pull}1424[#1424]
-
fix: support all falsy return values from error filters {pull}1394[#1394]
-
fix: capture all non-string http bodies {pull}1381[#1381]
-
feat: add support for @koa/router {pull}1346[#1346]
-
feat: add methods for logging trace information {pull}1335[#1335]
-
fix: improve debug output when detecting incoming http request {pull}1357[#1357]
-
fix(http): response context propagation on Node.js 12.0 - 12.2 {pull}1339[#1339]
-
fix: avoid throwing when agent is in active: false mode {pull}1278[#1278]
-
feat(memcached): instrument memcached v2.2.0 and above {pull}1144[#1144]
-
feat(config): add configFile config option {pull}1303[#1303]
-
fix: bug where spans sometimes wouldn’t have stack traces {pull}1299[#1299]
-
fix(async_hooks): properly update sync flag {pull}1306[#1306]
-
fix: change agent active status log message to debug level {pull}1300[#1300]
-
feat(express-graphql): add support for v0.9 {pull}1255[#1255]
-
feat(metrics): add metricsLimit option {pull}1273[#1273]
-
feat(hapi): support new @hapi/hapi module {pull}1246[#1246]
-
feat: allow agent.clearPatches to be called with array of names {pull}1262[#1262]
-
fix: be less chatty if span stack traces cannot be parsed {pull}1274[#1274]
-
perf: use for-of instead of forEach {pull}1275[#1275]
-
fix: standardize user-agent header {pull}1238[#1238]
-
feat: add support for APM Agent Configuration via Kibana {pull}1197[#1197]
-
feat(metrics): breakdown graphs {pull}1219[#1219]
-
feat(config): default serviceVersion to package version {pull}1237[#1237]
-
feat(metrics): add runtime metrics {pull}1021[#1021]
-
feat(config): add environment option {pull}1106[#1106]
-
fix(express): don’t swallow error handling middleware {pull}1111[#1111]
-
fix(metrics): report correct CPU usage on Linux {pull}1092[#1092]
-
fix(express): improve names for routes added via app.use() {pull}1013[#1013]
-
fix: don’t add traceparent header to signed AWS requests {pull}1089[#1089]
-
fix: url.parse expects req.url not req {pull}1074[#1074]
-
fix(express-slash): expose express handle properties {pull}1070[#1070]
-
fix(instrumentation): explicitly use
require
{pull}1059[#1059] -
chore: add Node.js 12 to package.json engines field {pull}1057[#1057]
-
chore: rename tags to labels {pull}1019[#1019]
-
feat(config): support global labels {pull}1020[#1020]
-
fix(config): do not use ELASTIC_APM_ prefix for k8s {pull}1041[#1041]
-
fix(instrumentation): prevent handler leak in bindEmitter {pull}1044[#1044]
-
feat(express-graphql): add support for version ^0.8.0 {pull}1010[#1010]
-
fix(package): bump elastic-apm-http-client to ^7.2.2 so Kubernetes metadata gets corrected recorded {pull}1011[#1011]
-
fix(ts): add TypeScript typings for new traceparent API {pull}1001[#1001]
-
feat: add traceparent getter to agent, span and transaction {pull}969[#969]
-
feat(template): add support for jade and pug {pull}914[#914]
-
feat(elasticsearch): capture more types of queries {pull}967[#967]
-
feat: sync flag on spans and transactions {pull}980[#980]
-
fix(agent): init config/logger before usage {pull}956[#956]
-
fix: don’t add response listener to outgoing requests {pull}974[#974]
-
fix(agent): fix basedir in debug mode when starting agent with -r {pull}981[#981]
-
fix: ensure Kubernetes/Docker container info is captured {pull}995[#995]
-
feat: add agent.setFramework() method {pull}966[#966]
-
feat(config): add usePathAsTransactionName config option {pull}907[#907]
-
feat(debug): output configuration if logLevel is trace {pull}972[#972]
-
fix(express): transaction default name is incorrect {pull}938[#938]
-
fix: instrument http/https.get requests {pull}954[#954]
-
fix: don’t add traceparent header to S3 requests {pull}952[#952]
-
feat: add patch registry {pull}803[#803]
-
feat: allow sub-modules to be patched {pull}920[#920]
-
feat: add TypeScript typings {pull}926[#926]
-
fix: update measured-reporting to fix Windows installation issue {pull}933[#933]
-
fix(lambda): do not wrap context {pull}931[#931]
-
fix(lambda): fix cloning issues of context {pull}947[#947]
-
fix(metrics): use noop logger in metrics reporter {pull}912[#912]
-
fix(transaction): don’t set transaction result if it’s null {pull}936[#936]
-
fix(agent): allow flush callback to be undefined {pull}934[#934]
-
fix: handle promise rejection in case Elasticsearch client throws {pull}870[#870]
-
chore: change 'npm run' command namespaces {pull}944[#944]
-
feat: add support for Fastify framework {pull}594[#594]
-
feat(lambda): accept parent span in lambda wrapper {pull}881[#881]
-
feat(lambda): support promise form {pull}871[#871]
-
fix: ensure http headers are always recorded as strings {pull}895[#895]
-
fix(metrics): prevent 0ms timers from being created {pull}872[#872]
-
fix(config): apiRequestSize should be 768kb {pull}848[#848]
-
fix(express): ensure correct transaction names {pull}842[#842]
-
feat: add ability to set custom log message for errors {pull}824[#824]
-
feat: add ability to set custom timestamp for errors {pull}823[#823]
-
feat: add support for custom start/end times {pull}818[#818]
-
fix(parsers): move port fix into parser {pull}820[#820]
-
fix(mongo): support 3.1.10+ {pull}793[#793]
-
feat(config): add captureHeaders config {pull}788[#788]
-
feat(config): add container info options {pull}766[#766]
-
fix: ensure request.url.port is a string on transactions {pull}814[#814]
-
feat(koa): record framework name and version {pull}810[#810]
-
feat(cassandra): support 4.x {pull}784[#784]
-
feat(config): validate serverUrl port {pull}795[#795]
-
feat: add transaction.type to errors {pull}805[#805]
-
fix: filter outgoing http headers with any case {pull}799[#799]
-
fix: we don’t support mongodb-core v3.1.10+ {pull}792[#792]
-
feat(error): include sampled flag on errors {pull}767[#767]
-
feat(span): add tags to spans {pull}757[#757]
-
fix(tedious): don’t fail on newest tedious v4.1.3 {pull}775[#775]
-
fix(graphql): fix span name for unknown queries {pull}756[#756]
-
fix(graphql): don’t throw on invalid query {pull}747[#747]
-
fix(koa-router): support more complex routes {pull}749[#749]
-
chore: update engines field in package.json {pull}727[#727]
-
chore(package): bump random-poly-fill to ^1.0.1 {pull}726[#726]
-
fix(restify): support an array of handlers {pull}709[#709]
-
fix: don’t throw on older versions of Node.js 6 {pull}711[#711]
-
fix: use randomFillSync polyfill on Node.js <6.13.0 {pull}702[#702]
-
fix(hapi): ignore internal events channel {pull}700[#700]
-
chore: remove support for Node.js 4 and 9
-
chore: remove deprecated buildSpan function {pull}642[#642]
-
feat: support APM Server intake API version 2 {pull}465[#465]
-
feat: improved filtering function API {pull}579[#579]
-
feat: replace double-quotes with underscores in tag names {pull}666[#666]
-
feat(config): change config order {pull}604[#604]
-
feat(config): support time suffixes {pull}602[#602]
-
feat(config): stricter boolean parsing {pull}613[#613]
-
feat: add support for Distributed Tracing {pull}538[#538]
-
feat(transaction): add transaction.ensureParentId function {pull}661[#661]
-
feat(config): support byte suffixes {pull}601[#601]
-
feat(transaction): restructure span_count and include total {pull}553[#553]
-
perf: improve Async Hooks implementation {pull}679[#679]
-
feat(agent): return uuid in captureError callback {pull}636[#636]
-
feat(apollo-server-express): set custom GraphQL transaction names {pull}648[#648]
-
feat(finalhandler): improve capturing of errors in Express {pull}629[#629]
-
fix(http): bind writeHead to transaction {pull}637[#637]
-
fix(shimmer): safely handle property descriptors {pull}634[#634]
-
feat(ioredis): add support for ioredis version 4.x {pull}516[#516]
-
fix(ws): allow disabling WebSocket instrumentation {pull}599[#599]
-
fix: allow flushInterval to be set from env {pull}568[#568]
-
fix: default transactionMaxSpans to 500 {pull}567[#567]
-
feat(restify): add Restify instrumentation {pull}517[#517]
-
feat(config): default serviceName to package name {pull}508[#508]
-
fix: always call agent.flush() callback {pull}537[#537]
-
feat(filters): filter set-cookie headers {pull}485[#485]
-
fix(express): cannot create property symbol {pull}510[#510]
-
fix: ensure logger config can update {pull}503[#503]
-
perf: improve request body parsing speed {pull}492[#492]
-
feat(cassandra): instrument Cassandra queries {pull}437[#437]
-
feat(mssql): instrument SQL Server queries {pull}444[#444]
-
fix(parsers): use basic-auth rather than req.auth {pull}475[#475]
-
feat(agent): add currentTransaction getter {pull}462[#462]
-
feat: add support for ws 6.x {pull}464[#464]
-
fix: improve ability to run in an environment with muliple APM vendors {pull}417[#417]
-
feat: truncate very long error messages {pull}413[#413]
-
fix: be unicode aware when truncating body {pull}412[#412]
-
feat(mysql): support mysql2 module {pull}298[#298]
-
feat(graphql): add support for the upcoming GraphQL v14.x {pull}399[#399]
-
feat(config): add option to disable certain instrumentations {pull}353[#353]
-
feat(http2): instrument client requests {pull}326[#326]
-
fix: get remoteAddress before HTTP request close event {pull}384[#384]
-
fix: improve capture of spans when EventEmitter is in use {pull}371[#371]
-
feat(http2): instrument incoming http2 requests {pull}205[#205]
-
fix(agent): allow agent.endTransaction() to set result {pull}350[#350]
-
feat: add agent.addTags() method {pull}313[#313]
-
feat: add agent.isStarted() method {pull}311[#311]
-
feat: allow calling transaction.end() with transaction result {pull}328[#328]
-
fix: encode spans even if their stack trace can’t be captured {pull}321[#321]
-
fix(config): restore custom logger feature {pull}299[#299]
-
fix(doc): lambda getting started had old argument {pull}296[#296]
-
fix(span): Do not pass stack frames into promises (memory leak fix) {pull}269[#269]
-
feat(config): add serverTimeout {pull}238[#238]
-
fix(config): set default maxQueueSize to 100 {pull}270[#270]
-
feat(ws): add support for ws v5 {pull}267[#267]
-
feat: add agent.startSpan() function {pull}262[#262]
-
feat(debug): output more debug info on start {pull}254[#254]
-
feat(instrumentation): support sampling {pull}154[#154]
-
feat(transaction): add
transactionMaxSpans
config option {pull}170[#170] -
feat(errors): add captureError call location stack trace {pull}181[#181]
-
feat: allow setting of framework name and version {pull}228[#228]
-
feat(protcol): add
url.full
to intake API payload {pull}166[#166] -
refactor(config): replace
logBody
withcaptureBody
{pull}214[#214] -
refactor(config): unify config options with python {pull}213[#213]
-
fix: don’t collect source code for in-app span frames by default {pull}229[#229]
-
fix(protocol): report dropped span counts in intake API payload {pull}172[#172]
-
refactor(protocol): always include handled flag in intake API payload {pull}191[#191]
-
refactor(protocol): move process fields to own namespace in intake API payload {pull}155[#155]
-
refactor(protocol): rename
uncaught
tohandled
in intake API payload {pull}140[#140] -
refactor(protocol): rename
in_app
tolibrary_frame
in intake API payload {pull}96[#96] -
refactor: rename app to service {pull}93[#93]
-
refactor: rename trace to span {pull}92[#92]
-
feat(*): control amount of source context lines collected using new config options {pull}196[#196]
-
feat(agent): add public flush function to force flush of transaction queue: agent.flush([callback]) {pull}187[#187]
-
feat(mongodb): add support for mongodb-core 3.x {pull}190[#190]
-
refactor(config): update default flushInterval to 10 seconds (lower memory usage) {pull}186[#186]
-
chore(*): drop support for Node.js 5 and 7 {pull}169[#169]
-
refactor(instrumentation): encode transactions as they are added to the queue (lower memory usage) {pull}184[#184]
-
feat(*): Set default stack trace limit to 50 frames {pull}171[#171]
-
feat(ws): add support for [email protected] {pull}164[#164]
-
feat(errors): associate errors with active transaction
-
feat(express): auto-track errors (BREAKING CHANGE: removed express middleware) {pull}127[#127]
-
feat(hapi): add hapi 17 support {pull}146[#146]
-
fix(*): fix Node.js 8 support using async_hooks {pull}77[#77]
-
fix(graphql): support sync execute {pull}139[#139]
-
refactor(agent): make all config properties private (BREAKING CHANGE) {pull}107[#107]
-
feat(conf): allow serverUrl to contain a sub-path {pull}116[#116]
-
refactor(*): better format of error messages from the APM Server {pull}108[#108]
-
feat(parser): add sourceContext config option to control if code snippets are sent to the APM Server {pull}87[#87]
-
fix(*): move https-pem to list of devDependencies
-
refactor(*): drop support for Node.js <4 {pull}65[#65]
-
refactor(*): rename module to elastic-apm-node {pull}71[#71]
-
feat(queue): add fuzziness to flushInterval {pull}63[#63]
-
fix(https): instrument https.request in Node.js v9
-
refactor(http): log HTTP results in groups of 100 {pull}68[#68]
-
fix(api): add language to APM Server requests {pull}64[#64]
-
refactor(trans): set default transaction.result to success {pull}67[#67]
-
refactor(config): rename timeout config options {pull}59[#59]
-
fix(parsers): don’t log context.request.url.search as null {pull}48[#48]
-
fix(parsers): separate hostname and port when parsing Host header {pull}47[#47]
-
fix(instrumentation): don’t sample transactions {pull}40[#40]
-
feat(graphql): include GraphQL operation name in trace and transaction names {pull}27[#27]
-
feat(tls): add validateServerCert config option {pull}32[#32]
-
feat(parser): support http requests with full URI’s {pull}26[#26]
-
refactor(*): remove appGitRef config option
-
fix(instrumentation): fix setting of custom flushInterval
-
feat(elasticsearch): add simple Elasticsearch instrumentation
-
fix(*): don’t start agent if appName is invalid
-
refactor(*): support new default port 8200 in APM Server
-
refactor(*): support new context.response status code format