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
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,9 @@ npm install chronos-tracker
93
93
```
94
94
95
95
### 3. Configure Chronos
96
-
After you've installed `chronos-tracker` in the root directory of your application, add a `chronos-config.js` file in the root directory. If your application has
96
+
In the root directory of _each of your microservice applications_, do two things:
97
+
1. Run `npm install chronos-tracker`
98
+
2. Create a `chronos-config.js` file with properties listed below:
97
99
98
100
```js
99
101
// A sample `chronos-config.js` file
@@ -139,11 +141,11 @@ Add text here<br>
139
141
Add text here<br>
140
142
141
143
```js
142
-
constcmd=require('chronos-tracker');
143
-
require('./cmd-config'); // Bring in config file
144
+
constchronos=require('chronos-tracker');
145
+
require('./chronos-config'); // Bring in config file
0 commit comments