Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3002ca9
feat: add `@opentelemetry/instrumentation-console` package for captur…
drdreo Dec 17, 2025
e92f1f3
chore: format
drdreo Dec 17, 2025
eab5e16
chore: remove open questions
drdreo Dec 17, 2025
5ce4f9a
chore: trigger CLA verification
drdreo Dec 17, 2025
43402e8
chore: trigger CLA verification
drdreo Dec 17, 2025
1b992d6
Update packages/instrumentation-console/package.json
drdreo Dec 18, 2025
cf2687d
chore: clean up imports and fix linting
drdreo Jan 2, 2026
5e9f1f2
Merge branch 'open-telemetry:main' into ot-console-instrumentation
drdreo Jan 6, 2026
e0c7941
chore: update linting from main
drdreo Jan 6, 2026
3dede67
refactor: PR feedback
drdreo Jan 7, 2026
9bbc0e7
chore: add instrumentation test app
drdreo Jan 7, 2026
f8a6bd7
Update packages/instrumentation-console/examples/package.json
drdreo Jan 9, 2026
04b8c00
Merge branch 'open-telemetry:main' into ot-console-instrumentation
drdreo Jan 15, 2026
caf96de
refactor: log context improvements
drdreo Jan 15, 2026
0c7b2e5
test: remove log spam in tests
drdreo Jan 15, 2026
d455a1d
refactor: remove trace parent context
drdreo Jan 22, 2026
5e9cb98
chore: update readme
drdreo Jan 25, 2026
20c0861
Merge branch 'main' into ot-console-instrumentation
martinkuba Jan 28, 2026
636d32a
Merge remote-tracking branch 'upstream/main' into ot-console-instrume…
drdreo Apr 13, 2026
331e74b
chore: move console instrumentation to new folder structure
drdreo Apr 13, 2026
4f81b2a
Merge remote-tracking branch 'upstream/main' into ot-console-instrume…
drdreo Apr 25, 2026
d261cf0
feat: make log methods dynamically configurable
drdreo Apr 25, 2026
35d05c7
Merge branch 'main' into ot-console-instrumentation
david-luna Apr 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions packages/instrumentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"browser",
"web",
"instrumentation",
"console",
"navigation-timing",
"user-action",
"web-vitals",
Expand All @@ -27,6 +28,7 @@
"#instrumentation-test-utils": "./src/test-utils/index.ts"
},
"exports": {
"./experimental/console": "./dist/console/index.js",
"./experimental/navigation-timing": "./dist/navigation-timing/index.js",
"./experimental/user-action": "./dist/user-action/index.js",
"./experimental/web-vitals": "./dist/web-vitals/index.js",
Expand Down
10 changes: 10 additions & 0 deletions packages/instrumentation/src/console/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/

export { ConsoleInstrumentation } from './instrumentation.ts';
export type {
ConsoleInstrumentationConfig,
ConsoleMethod,
} from './types.ts';
Loading