Skip to content
Jan Meznarič edited this page Sep 15, 2017 · 3 revisions

EeRuntime

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();

Topics supported by the object

  • 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.