Skip to content
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

Separate Events API from Logs API #3550

Merged
merged 18 commits into from
Feb 7, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
fixed package name, updated changelog, updated tsconfig
  • Loading branch information
martinkuba committed Jan 20, 2023
commit ea0a4098267722eb98905b02b10f56e5b0ee47a9
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ For experimental package changes, see the [experimental CHANGELOG](experimental/

### :rocket: (Enhancement)

* feat (api-logs): separate Events API into its own package [3550](https://github.com/open-telemetry/opentelemetry-js/pull/3550) @martinkuba

### :bug: (Bug Fix)

### :books: (Refine Doc)
Expand Down
8 changes: 4 additions & 4 deletions experimental/packages/api-events/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@opentelemetry/api-logs",
"name": "@opentelemetry/api-events",
"version": "0.35.0",
dyladan marked this conversation as resolved.
Show resolved Hide resolved
"description": "Public logs API for OpenTelemetry",
"description": "Public events API for OpenTelemetry",
"main": "build/src/index.js",
"module": "build/esm/index.js",
"esnext": "build/esnext/index.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"nodejs",
"browser",
"profiling",
"logs",
"events",
"events",
pichlermarc marked this conversation as resolved.
Show resolved Hide resolved
"stats",
"monitoring"
Expand Down Expand Up @@ -82,6 +82,6 @@
"typescript": "4.4.4",
"webpack": "4.46.0"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/api-logs",
"homepage": "https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/api-events",
"sideEffects": false
}
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@
{
"path": "api"
},
{
"path": "experimental/packages/api-events"
},
{
"path": "experimental/packages/api-logs"
},
Expand Down