UNPKG
nestjs-otel
Version:
canary (7.0.0-canary-1)
latest (7.0.1)
7.0.1
7.0.0
7.0.0-canary-1
6.2.0
6.1.2
6.1.1
6.1.0
6.0.0
5.1.5
5.1.4
5.1.3
5.1.2
5.1.1
5.1.0
5.0.0
4.1.0
4.0.1
4.0.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.6.1
2.6.0
2.5.2
2.5.1
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
1.8.2
1.8.1
1.8.0
1.7.0
1.6.0
1.5.0
1.4.0
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
NestJS OpenTelemetry Library
github.com/pragmaticivan/nestjs-otel
pragmaticivan/nestjs-otel
nestjs-otel
/
lib
/
tracing
/
trace.service.d.ts
7 lines
(6 loc)
•
203 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Span
}
from
'@opentelemetry/api'
;
export
declare
class
TraceService
{
getTracer
():
import
(
"@opentelemetry/api"
).
Tracer
;
getSpan
():
Span
|
undefined
;
startSpan
(
name
:
string
):
Span
; }