Skip to content

mariodavid/cuba-component-runtime-diagnose

Repository files navigation

Download license Build Status Coverage Status

CUBA Platform Component - Runtime diagnose

This application component can be used for interactive runtime application diagnose and debugging of a CUBA application. It is based on the idea of the Grails console.

It mainly consists of the three parts:

  • interactive Groovy console
  • interactive JPQL / SQL console
  • non-interactive diagnose wizard

Installation

  1. runtime-diagnose is available in the CUBA marketplace
  2. Select a version of the add-on which is compatible with the platform version used in your project:
Platform Version Add-on Version
7.2.x 1.5.x
7.1.x 1.4.x
7.0.x 1.3.x
6.10.x 1.2.x
6.9.x 1.1.x
6.8.x 1.0.x
6.7.x 0.4.x
6.6.x 0.2.x - 0.3.x
6.5.x 0.1.x

The latest version is: Download

Add custom application component to your project:

  • Artifact group: de.diedavids.cuba.runtimediagnose
  • Artifact name: runtime-diagnose-global
  • Version: add-on version
dependencies {
  appComponent("de.diedavids.cuba.runtimediagnose:runtime-diagnose-global:*addon-version*")
}

Groovy console

The groovy console allows you to interactively inspect the running application. You enter a groovy script and execute it in an ad-hoc fashion.

Screenshot Groovy-Console

WARN: Using the groovy console in production can be dangerous. Make sure that you will use the security subsystem properly so that only allowed users are able to execute code in production. For more information see the section about security

The console uses the Scripting Interface of the platform in order to execute groovy code. Therefore most of the features of the scripting interface apply to the groovy console as well.

Using existing classes

In order to use existing platform beans or your application specific beans, you can use bean(TimeSource) to get a reference to abitrary Spring beans.

NOTE: To reference classes by name you have to manually add the corresponding import statements at the top of the scripts

If you want to define custom variables that are accessible in your scripts, you create a Spring bean which implements GroovyScriptBindingSupplier.

@Component('myapp_MyAdditionalBindingSupplier')
class MyAdditionalBindingSupplier implements GroovyScriptBindingSupplier {

    @Inject
    TimeSource timeSource
    
    @Override
    Map<String, Object> getBinding() {
        [ timeSource: timeSource ]
    }
}

You can define multiple Spring beans that implement GroovyScriptBindingSupplier in your project. All Maps will be merged and be accessible in the groovy script.

Auto import statements

Writing manual import statements is a tedious task. Doing it for every groovy console over and over again even more so.

Therefore the groovy script that should be executed can be enhanced by defining the import statements once and automatically adding import statements. It is possible to configure the auto import statement functionality by Administration > Application Properties:

  • runtime-diagnose.console.autoImport.entities adds automatically import statements for all persistent entity classes
  • runtime-diagnose.console.autoImport.additionalClasses adds all mentioned classes as import statements. Entries have to be separated by ;, wildcard imports are also possible.

Example:

runtime-diagnose.console.autoImport.additionalClasses = com.haulmont.cuba.core.app.UniqueNumbersService; com.haulmont.cuba.core.app.EntityLogService; com.haulmont.cuba.core.app.importexport.*

Execution results

There are different results of a groovy script (displayed in the different tabs). The actual result of the script (meaning the return value of the last statement) is displayed in the first tab. The stacktrace tab displayes the stacktrace of a possible exception that occurs during script execution. The tab executed script shows the actual executed script.

Result log

Since STDOUT and STDERR will not captured through the runtime, println 'hello world' will not be included in any of the execution results. To make debug statements you can use the log variable which is passed into the script.

The possible methods are:

  • log.debug('debug information')
  • log.warn('warnnings')
  • log.error('error information')

Download of the execution results

Execution results can be downloaded through the corresponding button. It will create a zip file which will contain the different execution results in different files. Additionally, there is a file called environmentInformation.log which will include information about the current environment of execution (like information about the user that executed the script, information about the application itself etc.)

JPQL / SQL console

The JPQL / SQL console allows you to interactivly interact with the database using raw JPQL / SQL statements. You enter a JPQL / SQL script and execute it in an ad-hoc fashion.

Screenshot SQL-Console

Screenshot JPQL-Console

NOTE: for normal data diagnosis the Entity inspector is oftentimes more user friendly, even for debugging purposes. Usage of the SQL-console is to be preferable to the entity inspector if you want to access data across tables using joins for example. The JPQL console is useful if you want to test your JPQL queries that you want to use in your application e.g.

Results of a JPQL / SQL statement are displayed in a table in the result tab. The result can be downloaded using the Excel button in the Results tab.

The JPQL / SQL console supports comments in the form of -- single line comment and /* multi line comments */.

In the JPQL console you additionally have the possibility to convert your written JPQL into an equivivalent SQL query. This can be handy sometimes when working with the default mechanism of CUBA to load in data via SQL files e.g.

Security of the SQL-Console

By default, only SELECT stements are allowed to execute through the SQL-Console. If you want to execute other types of SQL statements like INSERT or ALTER it has to be explicitly configured the application component through CUBAs App properties UI: Administration > Application properties > console

The following configuration options allow different statement types:

  • runtime-diagnose.sql.allowDataManipulation
    • INSERT INTO...
    • UPDATE ...
    • DELETE ...
    • MERGE ...
    • REPLACE ...
    • TRUNCATE ...
  • runtime-diagnose.sql.allowSchemaManipulation
    • DROP ...
    • CREATE TABLE ...
    • CREATE VIEW ...
    • ALTER ...
    • ALTER VIEW ...
    • CREATE INDEX ...
  • runtime-diagnose.sql.allowExecuteOperations
    • EXECUTE ...
    • SET ...

Diagnose wizard

The last part is the diagnose wizard. This option is relevant if you as a developer or customer support person don't have direct access to the running application, because of security reasons or it is boxed software that is running out of your control. You could send your counterpart on customer side a text file which the the user should execute in the Groovy / SQL console, but this process is fairly insecure as well as error prone.

In these cases you can send the person a zip file (as a black box) and tell them to upload this file in the diagnose wizard. The person will be guided through the different steps, executed the scripts and gets back the execution results (as a zip file) that should be handed back to you.

Screenshot Diagnose Wizard

Checks on the diagnose file

There are some checks in place in the wizard that will ensure the correctness of the zip file. Within the zip archive, there has to be the following files:

  • diagnose.groovy / diagnose.sql
  • manifest.json

The diagnose.(sql|groovy) contains the executable script. The manifest file describes some metadata on the diagnose archive. Here's a valid manifest.json file:

{
  "appVersion": "1.1",
  "appName": "runtime-diagnose-app",
  "diagnoseType": "GROOVY",
  "dataStore": "__MAIN__"
}

The diagnoseType has to be either GROOVY or SQL.

If the values in the manifest file do not match the expected values from the application, the script cannot be executed.

The diagnose files can be created manually or preferably from the Groovy / SQL Console. After defining the diagnose script, the "Download Diagnose File" lets the developer create the diagnose file that can be handed to the customer representative.

Audit Log of diagnose execution

Since running these kind of operations can be dangerous sometimes, there is the possibility to write an audit log for the execution of those diagnosis. The audit log is written for ad-hoc diagnosis as well as diagnose wizard executions.

The audit logging can be enabled through CUBAs App properties UI: Administration > Application properties

  • runtime-diagnose.log.enabled - enables / disables the audit logging feature for diagnose executions
  • runtime-diagnose.log.logDiagnoseDetails - enables / disables detailed logging, including the content of the diagnose script and diagnose result

Audit Log Details

In case the audit log details are enabled, the diagnose results are also stored during execution. This allows administrators to afterwards see all information about the script (Groovy / SQL) that was executed as well as the result it produced.

The Audit Log Details are stored in a file, that will itself be written to the FileStorage subsystem of CUBA.

dialog execution logs