Skip to content

Commit

Permalink
Merge ce482c4 into 3d4d8b5
Browse files Browse the repository at this point in the history
  • Loading branch information
dyladan authored Apr 7, 2021
2 parents 3d4d8b5 + ce482c4 commit aeed39c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions packages/opentelemetry-tracing/src/MultiSpanProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@
* limitations under the License.
*/

import { Context } from '@opentelemetry/api';
import { Context, Span } from '@opentelemetry/api';
import { globalErrorHandler } from '@opentelemetry/core';
import { ReadableSpan } from './export/ReadableSpan';
import { Span } from './Span';
import { SpanProcessor } from './SpanProcessor';

/**
Expand Down
3 changes: 1 addition & 2 deletions packages/opentelemetry-tracing/src/NoopSpanProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
* limitations under the License.
*/

import { Context } from '@opentelemetry/api';
import { Context, Span } from '@opentelemetry/api';
import { ReadableSpan } from './export/ReadableSpan';
import { Span } from './Span';
import { SpanProcessor } from './SpanProcessor';

/** No-op implementation of SpanProcessor */
Expand Down
3 changes: 1 addition & 2 deletions packages/opentelemetry-tracing/src/SpanProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
* limitations under the License.
*/

import { Context } from '@opentelemetry/api';
import { Context, Span } from '@opentelemetry/api';
import { ReadableSpan } from './export/ReadableSpan';
import { Span } from './Span';

/**
* SpanProcessor is the interface Tracer SDK uses to allow synchronous hooks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@
* limitations under the License.
*/

import { context, suppressInstrumentation } from '@opentelemetry/api';
import { context, Span, suppressInstrumentation } from '@opentelemetry/api';
import {
ExportResultCode,
globalErrorHandler,
unrefTimer,
getEnv,
} from '@opentelemetry/core';
import { Span } from '../Span';
import { SpanProcessor } from '../SpanProcessor';
import { BufferConfig } from '../types';
import { ReadableSpan } from './ReadableSpan';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
* limitations under the License.
*/

import { context, suppressInstrumentation } from '@opentelemetry/api';
import { context, suppressInstrumentation, Span } from '@opentelemetry/api';
import { ExportResultCode, globalErrorHandler } from '@opentelemetry/core';
import { Span } from '../Span';
import { SpanExporter } from './SpanExporter';
import { SpanProcessor } from '../SpanProcessor';
import { ReadableSpan } from './ReadableSpan';
Expand Down

0 comments on commit aeed39c

Please sign in to comment.