Skip to content

Commit 87f765f

Browse files
authored
docs: Remove remaining references to Epsagon (#1197)
Missed this in #1168
1 parent b42e74f commit 87f765f

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

docs/services/LoggerService.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Provides logging and integrations with our monitoring tools.
44

5-
For logging we use [Winston](https://github.com/winstonjs/winston). Errors will also be sent to [Sentry](https://sentry.io/) and [Epsagon](https://epsagon.com/) if those are configured.
5+
For logging we use [Winston](https://github.com/winstonjs/winston). Errors will also be sent to [Sentry](https://sentry.io/) and [Lumigo](https://lumigo.io/) if those are configured.
66

77
## Usage
88

@@ -42,12 +42,9 @@ The `warning` method is equivalent to `error` by default, but can be switched to
4242

4343
This is handy for muting certain errors in staging, where we expect our integration tests to cause a lot of errors deliberately that would otherwise spam us with Epsagon alerts.
4444

45-
### Epsagon
45+
### Lumigo
4646

47-
To configure Epsagon, set the following environment variables:
48-
49-
- `EPSAGON_TOKEN` – your access token
50-
- `EPSAGON_SERVICE_NAME` – the application name (including stage) to record traces under
47+
To configure Lumigo, either [enable auto-tracing](https://docs.lumigo.io/docs/serverless-applications#automatic-instrumentation), or set the `LUMIGO_TRACER_TOKEN` environment variable.
5148

5249
### Sentry
5350

src/services/LoggerService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (sentryIsAvailable) {
2323
*
2424
* For logging we use [Winston](https://github.com/winstonjs/winston).
2525
* Errors will also be sent to [Sentry](https://sentry.io/) and
26-
* [Epsagon](https://epsagon.com/) if those are available.
26+
* [Lumigo](https://lumigo.io/) if those are configured.
2727
*/
2828
export default class LoggerService extends DependencyAwareClass {
2929
private sentry: typeof Sentry | null;

0 commit comments

Comments
 (0)