Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit b90d44c

Browse files
committed
refactor: changes after PR review
1 parent 618b9d6 commit b90d44c

38 files changed

Lines changed: 860 additions & 1345 deletions

AUTHORS

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
Google Inc.
1+
#CESAR's team (www.cesar.org.br):
2+
Fabio Silva <fgs@cesar.org.br>
3+
Djonathas Cardoso <djonathas.cardoso@cesar.org.br>
4+
Luana Martins dos Santos <lms@cesar.org.br>
5+
Eduardo Emery <eecs@cesar.org.br>
6+
Eldrey Seolin Galindo <esg@cesar.org.br>

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
1-
# OpenCensus Libraries for Node.js
1+
# OpenCensus Core Node.js
22
[![Gitter chat][gitter-image]][gitter-url]
33

4-
OpenCensus Node.js is an implementation of OpenCensus, a toolkit for collecting application performance and behavior monitoring data. Right now OpenCensus for Node.js supports custom tracing and automatic tracing for http and mongodb.
4+
OpenCensus for Node.js is an implementation of OpenCensus, a toolkit for collecting application performance and behavior monitoring data.
55

66
The library is in alpha stage and the API is subject to change.
77

88
Please join [gitter](https://gitter.im/census-instrumentation/Lobby) for help or feedback on this project.
99

10-
Note: This code was tested on the following Node versions:
11-
- v6.10.0 (for console exporter only)
12-
- v9.8.0 (for Stackdriver and Zipkin exporters)
13-
14-
___
15-
16-
10+
## Useful links
11+
- For more information on OpenCensus, visit: <https://opencensus.io/>
12+
- To checkout the OpenCensus for Node.js, visit: <https://github.com/census-instrumentation/opencensus-node>
13+
- For help or feedback on this project, join us on [gitter](https://gitter.im/census-instrumentation/Lobby)
1714

1815
[gitter-image]: https://badges.gitter.im/census-instrumentation/lobby.svg
1916
[gitter-url]: https://gitter.im/census-instrumentation/lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
17+

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
"version": "0.0.1",
44
"description": "OpenCensus is a toolkit for collecting application performance and behavior data.",
55
"main": "build/src/index.js",
6-
"types": "build/src/index.d.js",
6+
"types": "build/src/index.d.ts",
77
"repository": "census-instrumentation/opencensus-node",
88
"scripts": {
99
"postinstall": "npm run bootstrap;npm run build;",
1010
"build": "node_modules/.bin/lerna run build",
11+
"test": "node_modules/.bin/lerna run test",
1112
"bootstrap": "node_modules/.bin/lerna bootstrap",
1213
"bump": "node_modules/.bin/lerna publish"
1314
},
@@ -20,7 +21,7 @@
2021
"author": "Google Inc.",
2122
"license": "Apache-2.0",
2223
"engines": {
23-
"node": ">=6.00"
24+
"node": ">=6.0"
2425
},
2526
"files": [
2627
"build/src/**/*.js",

packages/opencensus-core/AUTHORS

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
Google Inc.
1+
#CESAR's team (www.cesar.org.br):
2+
Fabio Silva <fgs@cesar.org.br>
3+
Djonathas Cardoso <djonathas.cardoso@cesar.org.br>
4+
Luana Martins dos Santos <lms@cesar.org.br>
5+
Eduardo Emery <eecs@cesar.org.br>
6+
Eldrey Seolin Galindo <esg@cesar.org.br>

packages/opencensus-core/README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
# OpenCensus Core Node.js
22
[![Gitter chat][gitter-image]][gitter-url]
33

4-
OpenCensus Node.js is an implementation of OpenCensus, a toolkit for collecting application performance and behavior monitoring data. Right now OpenCensus for Node.js supports custom tracing and automatic tracing for http and mongodb.
4+
OpenCensus for Node.js is an implementation of OpenCensus, a toolkit for collecting application performance and behavior monitoring data.
55

66
The library is in alpha stage and the API is subject to change.
77

8-
OpenCensus Core allow exporters and plugins to be built on it. To instrument an application, please visit [OpenCensus Node.js](https://github.com/census-instrumentation/opencensus-node)
9-
108
Please join [gitter](https://gitter.im/census-instrumentation/Lobby) for help or feedback on this project.
119

12-
Note: This code was tested on the following Node versions:
13-
- v6.10.0 (for console exporter only)
14-
- v9.8.0 (for Stackdriver and Zipkin exporters)
15-
16-
17-
1810
## Useful links
1911
- For more information on OpenCensus, visit: <https://opencensus.io/>
2012
- To checkout the OpenCensus for Node.js, visit: <https://github.com/census-instrumentation/opencensus-node>

0 commit comments

Comments
 (0)