Unify and manage your data

Configure inactivity timeout in Hub UI

Learn how to configure the idle timeout for Hub UI sessions by updating the checkIdle parameter under the properties section of the UI configuration file.

Prerequisites:

  • Access to the Reltio Console.
  • Permission to use the UI Modeler.

The inactivity timeout determines how long a user can remain idle in the Hub UI before being logged out. This behavior is managed using the checkIdle parameter under the properties object of the UI configuration.

Default behavior:
  • If checkIdle is not defined, users are not logged out due to inactivity.
  • If checkIdle is set to true, the default timeout is 1800000 milliseconds (30 minutes).
Custom behavior:
  • To set a specific idle timeout, define checkIdle with a numeric value in milliseconds. For example, 3600000 sets the timeout to 1 hour.
To configure the session timeout for the Hub UI, follow these steps:
  1. Log in to the Console and open UI Modeler.
  2. Go to Import/Export UI Config Files and select the current UI configuration and click Export to download.
  3. Open the downloaded JSON file in a text or JSON editor.
  4. In the properties object, locate or add the checkIdle parameter.
    • To use the default 30-minute timeout: Update "checkIdle": true.
    • To set a custom timeout: For example, 1 hour, update "checkIdle": 3600000.
    • To disable inactivity logout: Remove the checkIdle parameter from properties object.
  5. Save the file.
  6. In the Import/export UI config files screen of the UI Modeler, hover over the configuration file and select Import & Replace.
  7. Upload the updated configuration file and confirm the replacement.
  8. Click Publish to apply the configuration to your tenant.
  9. Test the new inactivity timeout by logging into the Hub UI and remaining idle for the configured time.
The new idle timeout is enforced. After the configured period of inactivity, users will be automatically logged out.