You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 3, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: packages/opencensus-exporter-jaeger/README.md
+40-1Lines changed: 40 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,48 @@ OpenCensus Jaeger Exporter allows the user to send collected traces with OpenCen
5
5
6
6
This project is still at an early stage of development. It's subject to change.
7
7
8
+
## Installation
9
+
10
+
Install OpenCensus Jaeger Exporter with:
11
+
```bash
12
+
npm install @opencensus/nodejs
13
+
npm install @opencensus/exporter-jaeger
14
+
```
15
+
16
+
## Usage
17
+
18
+
Instance the exporter on your application and pass the options, it must contain a service name and, optionaly, an URL. If no URL is passed, `http://localhost:9411/api/v2/spans` is used as default.
0 commit comments