Skip to content

Commit

Permalink
observability: add base for instrumentation + tests (#2097)
Browse files Browse the repository at this point in the history
This change adds the scaffolding for instrumentation along with tests for the
tracing mechanisms that'll be used to trace the entire package.

Built from #2087
Updates #2079
  • Loading branch information
odeke-em authored Aug 30, 2024
1 parent 95d2151 commit 992baaa
Show file tree
Hide file tree
Showing 8 changed files with 784 additions and 434 deletions.
34 changes: 34 additions & 0 deletions observability-test/helper.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*!
* Copyright 2024 Google LLC. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import {ContextManager, context} from '@opentelemetry/api';

/**
* This utility exists as a test helper because mocha has builtin "context"
* and referring to context causes type/value collision errors.
*/
export function setGlobalContextManager(manager: ContextManager) {
context.setGlobalContextManager(manager);
}

/**
* This utility exists as a test helper because mocha has builtin "context"
* and referring to context causes type/value collision errors.
*/
export function disableContextAndManager(manager: ContextManager) {
manager.disable();
context.disable();
}
Loading

0 comments on commit 992baaa

Please sign in to comment.