services/reference/src/main/java/com/example/reference/ReferenceApplication.java [30:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public static void main(String[] args) {
		Runtime r = Runtime.getRuntime();
		logger.info("ReferenceApplication: Active processors: " + r.availableProcessors()); 
		logger.info("ReferenceApplication: Total memory: " + r.totalMemory()); 
		logger.info("ReferenceApplication: Free memory: " + r.freeMemory()); 
		logger.info("ReferenceApplication: Max memory: " + r.maxMemory()); 


		SpringApplication.run(ReferenceApplication.class, args);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



runtimes/crac/reference-crac/src/main/java/com/example/reference/ReferenceApplication.java [30:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public static void main(String[] args) {
		Runtime r = Runtime.getRuntime();
		logger.info("ReferenceApplication: Active processors: " + r.availableProcessors()); 
		logger.info("ReferenceApplication: Total memory: " + r.totalMemory()); 
		logger.info("ReferenceApplication: Free memory: " + r.freeMemory()); 
		logger.info("ReferenceApplication: Max memory: " + r.maxMemory()); 


		SpringApplication.run(ReferenceApplication.class, args);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



