-
Notifications
You must be signed in to change notification settings - Fork 71
EeRuntime
Jan Meznarič edited this page Sep 15, 2017
·
3 revisions
Use the EeRuntime
object to get information about the current microservice runtime such as present EE components, KumuluzEE Extensions, KumuluzEE version and assigned instance id. The current object can be retrieved using its following static method:
EeRuntime eeRuntime = EeRuntime.getInstance();
-
String getInstanceId()
Returns the unique identifier of the current running microservice instance.
-
String getVersion()
Returns the version of KumuluzEE.
-
List<EeRuntimeComponent> getEeComponents()
Returns the list of all EE components and their details in the current runtime.
-
List<EeRuntimeExtension> getEeExtensions()
Returns the list of all KumuluzEE Extensions and their details in the current runtime.