Skip to content

Commit 1a99489

Browse files
committed
working w grafana
1 parent 0f7c341 commit 1a99489

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

chronos_npm_package/chronos.js

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,18 @@ class Chronos {
7777
return mongo.communications(this.config);
7878
}
7979
} else if (database.type === 'PostgreSQL') {
80-
81-
/**
82-
* If the provided database is PostgreSQL
83-
* - Connection is made to the postgres client via the provided URI by the user.
84-
*
85-
* - 'services' table will be created if not already and stores every microservice
86-
* that is apart of the application.
87-
*
88-
* - Information is collected if the microservice is containerized
89-
*
90-
* - 'communications' table will be created which creates a new row entry for every
91-
* endpoint that the user Request travels through (tracked with hpropograte)
92-
*/
80+
/**
81+
* If the provided database is PostgreSQL
82+
* - Connection is made to the postgres client via the provided URI by the user.
83+
*
84+
* - 'services' table will be created if not already and stores every microservice
85+
* that is apart of the application.
86+
*
87+
* - Information is collected if the microservice is containerized
88+
*
89+
* - 'communications' table will be created which creates a new row entry for every
90+
* endpoint that the user Request travels through (tracked with hpropograte)
91+
*/
9392
postgres.connect(this.config);
9493
postgres.services(this.config);
9594
dockerized ? postgres.docker(this.config) : postgres.health(this.config);

0 commit comments

Comments
 (0)