-
Notifications
You must be signed in to change notification settings - Fork 954
feat(otlp-transformer)!: introduce separate entry-points for OTLP serializers #5263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 2 commits
7aca149
ceb94c0
ae149d1
99a147c
e0cf263
263669f
da71c63
f74eb25
5db09fe
5a8b387
f6492d1
ce7c5a3
67f20d4
a28cb38
6f8b37c
75d5724
44b5be3
3a7f853
4a56136
80abc0f
5b09076
1b00c3c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,102 @@ | |
| "esnext": "build/esnext/index.js", | ||
| "types": "build/src/index.d.ts", | ||
| "main": "build/src/index.js", | ||
| "exports": { | ||
| ".": { | ||
| "module": "./build/esm/index.js", | ||
| "esnext": "./build/esnext/index.js", | ||
| "types": "./build/src/index.d.ts", | ||
| "default": "./build/src/index.js" | ||
| }, | ||
| "./metrics": { | ||
| "module": "./build/esm/metrics/index.js", | ||
| "esnext": "./build/esnext/metrics/index.js", | ||
| "types": "./build/src/metrics/index.d.ts", | ||
| "default": "./build/src/metrics/index.js" | ||
| }, | ||
| "./metrics/protobuf": { | ||
| "module": "./build/esm/metrics/protobuf/index.js", | ||
| "esnext": "./build/esnext/metrics/protobuf/index.js", | ||
| "types": "./build/src/metrics/protobuf/index.d.ts", | ||
| "default": "./build/src/metrics/protobuf/index.js" | ||
| }, | ||
| "./metrics/json": { | ||
| "module": "./build/esm/metrics/json/index.js", | ||
| "esnext": "./build/esnext/metrics/json/index.js", | ||
| "types": "./build/src/metrics/json/index.d.ts", | ||
| "default": "./build/src/metrics/json/index.js" | ||
| }, | ||
| "./trace": { | ||
| "module": "./build/esm/trace/index.js", | ||
| "esnext": "./build/esnext/trace/index.js", | ||
| "types": "./build/src/trace/index.d.ts", | ||
| "default": "./build/src/trace/index.js" | ||
| }, | ||
| "./trace/protobuf": { | ||
| "module": "./build/esm/trace/protobuf/index.js", | ||
| "esnext": "./build/esnext/trace/protobuf/index.js", | ||
| "types": "./build/src/trace/protobuf/index.d.ts", | ||
| "default": "./build/src/trace/protobuf/index.js" | ||
| }, | ||
| "./trace/json": { | ||
| "module": "./build/esm/trace/json/index.js", | ||
| "esnext": "./build/esnext/trace/json/index.js", | ||
| "types": "./build/src/trace/json/index.d.ts", | ||
| "default": "./build/src/trace/json/index.js" | ||
| }, | ||
| "./experimental/logs": { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: I'm not aware off all the history behind logs. I know the API is still experimental. Is that the reason why the word appears in the export path?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would unblock us from marking this package as stable before logs becomes stable. |
||
| "module": "./build/esm/logs/index.js", | ||
| "esnext": "./build/esnext/logs/index.js", | ||
| "types": "./build/src/logs/index.d.ts", | ||
| "default": "./build/src/logs/index.js" | ||
| }, | ||
| "./experimental/logs/protobuf": { | ||
| "module": "./build/esm/logs/protobuf/index.js", | ||
| "esnext": "./build/esnext/logs/protobuf/index.js", | ||
| "types": "./build/src/logs/protobuf/index.d.ts", | ||
| "default": "./build/src/logs/protobuf/index.js" | ||
| }, | ||
| "./experimental/logs/json": { | ||
| "module": "./build/esm/logs/json/index.js", | ||
| "esnext": "./build/esnext/logs/json/index.js", | ||
| "types": "./build/src/logs/json/index.d.ts", | ||
| "default": "./build/src/logs/json/index.js" | ||
| } | ||
| }, | ||
| "typesVersions": { | ||
pichlermarc marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "*": { | ||
| "*": [ | ||
| "./build/src/index.d.ts" | ||
| ], | ||
| "metrics": [ | ||
| "./build/src/metrics/index.d.ts" | ||
| ], | ||
| "metrics/protobuf": [ | ||
| "./build/src/metrics/protobuf/index.d.ts" | ||
| ], | ||
| "metrics/json": [ | ||
| "./build/src/metrics/json/index.d.ts" | ||
| ], | ||
| "trace": [ | ||
| "./build/src/trace/index.d.ts" | ||
| ], | ||
| "trace/protobuf": [ | ||
| "./build/src/trace/protobuf/index.d.ts" | ||
| ], | ||
| "trace/json": [ | ||
| "./build/src/trace/json/index.d.ts" | ||
| ], | ||
| "experimental/logs": [ | ||
| "./build/src/logs/index.d.ts" | ||
| ], | ||
| "experimental/logs/protobuf": [ | ||
| "./build/src/logs/protobuf/index.d.ts" | ||
| ], | ||
| "experimental/logs/json": [ | ||
| "./build/src/logs/json/index.d.ts" | ||
| ] | ||
| } | ||
| }, | ||
| "repository": "open-telemetry/opentelemetry-js", | ||
| "scripts": { | ||
| "prepublishOnly": "npm run compile", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.