Skip to content

Commit 2a4d877

Browse files
committed
Committing examples and renamed JMX config file
1 parent 0329af8 commit 2a4d877

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+6182
-20486
lines changed

examples/docker/books/.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

examples/docker/books/BookModel.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
const mongoose = require('mongoose');
1+
const path = require('path');
22
require('dotenv').config();
33

4+
const mongoose = require('mongoose');
5+
46
// pull schema from the mongoose object
57
const { Schema } = mongoose;
68

79
// DB link for books data.
810
// Search dotenv documentation for details
9-
const book_db_URI = `${process.env.BOOKS_DB}`;
11+
const book_db_URI = process.env.BOOK_URI;
1012

1113
// const URI = process.env.MONGO_URI || myURI;
1214

examples/docker/books/BookServer.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
const express = require('express');
22
const path = require('path');
33
const cors = require('cors');
4-
const chronos = require('chronos-tracker');
5-
require('./chronos-config');
64
const controller = require('./BookController.js');
7-
require('dotenv').config();
5+
6+
const chronosConfig = require('./chronos-config.js');
7+
const Chronos = require('chronos-tracker');
8+
const chronos = new Chronos(chronosConfig);
89

910
// Places a unique header on every req in order to trace the path in the req's life cycle.
1011
chronos.propagate();

examples/docker/books/Dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
FROM node:10.16
2-
WORKDIR /usr/src/app
3-
COPY package*.json ./
1+
FROM node:16
2+
WORKDIR /app
43
COPY . .
54
RUN npm install
65
EXPOSE 8888
+14-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
1-
const chronos = require('chronos-tracker');
1+
const path = require('path');
2+
require('dotenv').config({path: path.resolve(__dirname, './.env')});
23

3-
chronos.use({
4+
module.exports = {
5+
// General configuration
46
microservice: 'books',
5-
interval: 2000,
7+
interval: 5000,
8+
9+
// Mode Specific
10+
mode: 'microservices',
611
dockerized: true,
12+
713
database: {
8-
type: 'MongoDB',
9-
URI: ' < INSERT MONGODB URL HERE > ',
14+
connection: 'REST',
15+
type: process.env.CHRONOS_DB,
16+
URI: process.env.CHRONOS_URI,
1017
},
18+
1119
notifications: [],
12-
});
20+
}

0 commit comments

Comments
 (0)