UNPKG
@coozzy/tracing
Version:
latest (2.0.3)
2.0.3
2.0.2
2.0.1
2.0.0
1.2.0
1.1.0
1.0.1
1.0.0
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
Provides tooling for distributed tracing with OpenTelemetry
@coozzy/tracing
/
index.d.ts
16 lines
(8 loc)
•
291 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Tracer
}
from
'@opentelemetry/api'
;
export
as
namespace
tracing
;
export
=
Tracing
;
declare
module
Tracing
{
const
tracer
:
Tracer
;
function
init
(
exporterUrl
:
string
,
namespace
:
string
,
serviceName
:
string
):
void
;
function
shutdown
(
):
Promise
<
void
>; }