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
Copy file name to clipboardExpand all lines: README.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,17 @@
12
12
13
13
## ⚠️ Breaking change
14
14
15
-
With version 3.x.x we have dropped support for Node v0.10. This means that future releases under this major version might contain code changes that are incompatible with Node.js v0.10 to an extent of crashing your application. Please consider updating to a newer runtime, especially that the [maintenance of v0.10 has already ended](node-lts). See our compatibility table below.
16
-
15
+
With version 3.x.x we have dropped support for Node v0.10. This means that
16
+
future releases under this major version might contain code changes that are
17
+
incompatible with Node.js v0.10 to an extent of crashing your application.
18
+
Please consider updating to a newer runtime, especially that the
19
+
[maintenance of v0.10 has already ended](node-lts). See our compatibility table
20
+
below.
21
+
22
+
Also, since 3.1.0 we switched to a different API backend for collecting traces
23
+
which is incompatible with the old one. The old endpoint is still supported, but
24
+
we would like it to be phased out eventually. Please update your agents to
25
+
3.1.0 or newer.
17
26
18
27
## Installation and usage
19
28
@@ -79,10 +88,13 @@ module.exports = {
79
88
disableInstrumentations: [
80
89
'mongodb'
81
90
],
82
-
proxy:'http://168.63.76.32:3128'
91
+
proxy:'http://168.63.76.32:3128',
92
+
keepQueryParams:true
83
93
}
84
94
```
85
95
96
+
For the complete set of configuration options, visit the [docs](https://trace-docs.risingstack.com/docs/advanced-usage#section-available-options).
97
+
86
98
*Note: Custom reporters are no longer supported in trace 2.x*
87
99
88
100
*Note: If you are running your app with NODE_ENV=test, Trace won't start*
0 commit comments