This sample microservices architecture allows developers to explore the functionality of Chronos but with one docker compose command. This consists of four microservices, which are contained within the directories:
- books
- customers
- frontend
- orders
Each microservice has its own server, which receives requests from both the client and from other microservices.
- books, customers, and orders also have their own databases, which they can query to respond to those requests.
The frontend has a reverse proxy set up for proxying requests to the appropriate service (individual application) in the microservice network.
In development they're all run separately on different ports, with said ports listening out for requests. This is for demonstration and testing purposes.
Ideally, in a production environment, all the services will be up and running concurrently from the get go and that's what the docker-compose.yml
file helps us achieve. It is able to chain all the services and run them together with one command.
Docker also ensures that the versions that worked well on dev are bundled up and distributed and used to run the containers for the individual containers.
For additional details on how Chronos works this example, please review the Docker section in the Chronos NPM Package README.
-
To initiate your Grafana container and prepare for accessing your service account token, execute the following command:
docker-compose -f docker-compose.yml up
-
In your browser, go to
localhost:32000
, which will be the login page of Grafana. Useadmin
as both username and password to login. You can change the password after login. -
Navigate to
Home -> Administration -> Service accounts
, then clickAdd service account
to create a service account. Be sure to chooseAdmin
as the role. Then clickAdd service account token
, hitgenerate
, you are done! Remember this token, you will be using this token to access Grafana HTTP API programmatically. -
Stop all containers and delete all images (except Grafana).
Peform the following steps in each of the books, customers, frontend, and orders directories
- Add a
.env
file to each of books, customers, frontend, and orders folders with the following key/value pairs:
- NOTE: Ensure that there are no quotes surrounding any of the keys and values.
CHRONOS_DB = MongoDB or PostgreSQL
CHRONOS_URI = The URI to the desired MongoDB or PostgreSQL database to save health metrics via Chronos
BOOK_URI = A MongoDB URI for the bookserver microservice to use
CUSTOMER_URI = A MongoDB URI for the customerserver microservice to use
ORDER_URI = A MongoDB URI for the orderserver microservice to use
CHRONOS_GRAFANA_API_KEY = Bearer [the access token you created in above section (Grafana API Key)]
-
Verify that
@chronosmicro/tracker
is a dependency in each of the books, customers, frontend, and orders folders (see thepackage.json
in each folder).-
If the @chronosmicro/tracker dependency is listed as a remote npm package (i.e.
"@chronosmicro/tracker": "^12.0.1"
) and you've rannpm install
, no further work is needed continue to step 3. However, confirm that the "@chronosmicro/tracker" you've installed from npm has the correct information which you will query later because the database automation will build from the npm installed version NOT the root directory level "chronos_npm_package" -
If you have the dependency as
"@chronosmicro/tracker": "file:./chronos_npm_package"
, which is a local file, make sure to change the version from"file:./chronos_npm_package"
to"^12.0.1"
and run npm install. Unless you are wanting to test local copies of the "Chronos_npm_package" file
-
-
With the terminal navigated to the examples/docker folder, run the command:
docker-compose -f docker-compose.yml up
- If you run into any issues regarding
linux/amd64,linux/arm/v7,linux/arm64/v8
for cadvisor, navigate to the docker-compose.yml and find the cadvisor dictionary and try the below solutions. - Change
platform
tolinux/arm64/v8
for M1 Chips andlinux/amd64
for Intel Chips. - Change "image" to
image: gcr.io/cadvisor/cadvisor:latest
toimage: gcr.io/cadvisor/cadvisor:v0.47.0
- Alternatively, use Docker Buildx to specify multi-platform.
You should now see the containers running in your terminal, each reporting "docker metrics recorded in..."
.
If this is being displayed for the books, customers, frontend, and orders microservices then the example is successfully saving health metrics to your database of choice!
If there is any error when running the applications and the underlying files for a microservice were changed, be sure to delete the previous image before calling docker-compose -f docker-compose.yml up
again.
- If you do not, the above docker compose command will not know to rebuild the image and the code changes meant to fix any issues will not be rolled into the existing Docker image!
Your microservice health metrics can now be viewed at the given CHRONOS_URI
or, preferrably, in the Electron.js desktop application.
To stop containers, use ^C
.
Use docker compose down
to remove.
To configure Prometheus and Grafana, you can simply copy the below yaml files to your own app.
prometheus.yml
datasource.yml
dashboard.yml
10619_rev1.json
**(Please note dashboard.yml and 10619_rev1.json is just one of many dashboards available on https://grafana.com/grafana/dashboards/)**
Then configure Prometheus and Grafana with your own application's deployments using images.
MIT ...