diff --git a/docs/configuration.md b/docs/configuration.md index 12137918..5c53c900 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -199,17 +199,15 @@ For example, the following telemetry config array causes the web client to ignor ```javascript telemetries: [ + 'errors', + 'http', [ - 'errors', - 'http', - [ - 'performance', - { - ignore: (entry: PerformanceEntry) => { - return entry.entryType === 'resource'; - } + 'performance', + { + ignore: (entry: PerformanceEntry) => { + return entry.entryType === 'resource'; } - ] + } ] ]; ```