Observability of system is generally composed from these three areas:
Mostly time series data used for measuring of the performance. This applies both for the infrastructure and application.
Not requested
| public class MicronautFactory { | |
| private final ApplicationContext context = ApplicationContext.run(); | |
| public TaskScheduler getTaskScheduler() { | |
| return context.getBean(TaskScheduler.class, Qualifiers.byName(TaskExecutors.SCHEDULED)); | |
| } | |
| } | |
| public class HowToFetchTaskScheduler { |
| #!/usr/bin/env bash | |
| # | |
| # Store into the root of mgmt-service-templates directory and simply run. It uses python3.9 specifically to run templating | |
| CURR_DIR=$(pwd) | |
| OUT_DIR=${CURR_DIR}/tests | |
| rm -rf ./tmp |