-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Observability] Split up observability-utils package #199801
[Observability] Split up observability-utils package #199801
Conversation
…/kibana into observability-utils-pkg-split
…/kibana into observability-utils-pkg-split
🤖 GitHub commentsExpand to view the GitHub comments
Just comment with:
|
@@ -43,6 +61,13 @@ export function useAbortableAsync<T>( | |||
setError(undefined); | |||
} | |||
|
|||
function handleError(err: Error) { | |||
setError(err); | |||
// setValue(undefined); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: commented code, was it a mistake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you! it is, at least the fact that the comment is still there.
Starting backport for target branches: 8.15, 8.16, 8.18, 8.x https://github.com/elastic/kibana/actions/runs/11823871605 |
Starting backport for target branches: 8.18, 8.x https://github.com/elastic/kibana/actions/runs/11823906372 |
💔 All backports failed
Manual backportTo create the backport manually run:
Questions ?Please refer to the Backport tool documentation |
💔 All backports failed
Manual backportTo create the backport manually run:
Questions ?Please refer to the Backport tool documentation |
Friendly reminder: Looks like this PR hasn’t been backported yet. |
Friendly reminder: Looks like this PR hasn’t been backported yet. |
Split up observability-utils package in browser, common, server. Also made a small change to `withSpan` to automatically log operation times when the debug level for the logger is enabled. --------- Co-authored-by: kibanamachine <[email protected]>
Split up observability-utils package in browser, common, server. Also made a small change to `withSpan` to automatically log operation times when the debug level for the logger is enabled. --------- Co-authored-by: kibanamachine <[email protected]>
Friendly reminder: Looks like this PR hasn’t been backported yet. |
1 similar comment
Friendly reminder: Looks like this PR hasn’t been backported yet. |
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
Split up observability-utils package in browser, common, server. Also made a small change to `withSpan` to automatically log operation times when the debug level for the logger is enabled. --------- Co-authored-by: kibanamachine <[email protected]> (cherry picked from commit 11a752d) # Conflicts: # .github/CODEOWNERS
…200886) # Backport This will backport the following commits from `main` to `8.x`: - [[Observability] Split up observability-utils package (#199801)](#199801) <!--- Backport version: 8.9.8 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Dario Gieselaar","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-11-13T18:51:42Z","message":"[Observability] Split up observability-utils package (#199801)\n\nSplit up observability-utils package in browser, common, server. Also\r\nmade a small change to `withSpan` to automatically log operation times\r\nwhen the debug level for the logger is enabled.\r\n\r\n---------\r\n\r\nCo-authored-by: kibanamachine <[email protected]>","sha":"11a752da8751f447a083f050e0c4eeb85073fa56","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport missing","v9.0.0","backport:prev-minor","ci:project-deploy-observability","Team:obs-ux-infra_services","v8.17.0","v8.18.0"],"number":199801,"url":"https://github.com/elastic/kibana/pull/199801","mergeCommit":{"message":"[Observability] Split up observability-utils package (#199801)\n\nSplit up observability-utils package in browser, common, server. Also\r\nmade a small change to `withSpan` to automatically log operation times\r\nwhen the debug level for the logger is enabled.\r\n\r\n---------\r\n\r\nCo-authored-by: kibanamachine <[email protected]>","sha":"11a752da8751f447a083f050e0c4eeb85073fa56"}},"sourceBranch":"main","suggestedTargetBranches":["8.x","8.18"],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","labelRegex":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/199801","number":199801,"mergeCommit":{"message":"[Observability] Split up observability-utils package (#199801)\n\nSplit up observability-utils package in browser, common, server. Also\r\nmade a small change to `withSpan` to automatically log operation times\r\nwhen the debug level for the logger is enabled.\r\n\r\n---------\r\n\r\nCo-authored-by: kibanamachine <[email protected]>","sha":"11a752da8751f447a083f050e0c4eeb85073fa56"}},{"branch":"8.x","label":"v8.17.0","labelRegex":"^v8.17.0$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"8.18","label":"v8.18.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT-->
Split up observability-utils package in browser, common, server. Also made a small change to
withSpan
to automatically log operation times when the debug level for the logger is enabled.