4.1 Configure the Investigation Toolkit Parameters

This chapter provides information on configuring and customization of the Investigation Toolkit parameters for Special Investigation, ECM Integration L1, and ECM Case Narrative seeded notebooks.

Updating Notebook Parameters Configuration

An admin user can configure the parameters of the Investigation Toolkit notebooks by updating the values. To update the value, follow these steps:
  1. Login to Data Studio.
  2. Navigate to the Investigation Toolkit folder.
  3. Open the desired notebook.
  4. Open the notebook and navigate to the Click to Start Investigation paragraph in ECM Integration L1 and Special Investigation notebooks or Entity Summary Risk Report paragraph in the ECM Case Narrative notebook.

  5. Click on the Visibility icon and select the Code option.
  6. Navigate to the line IHub ihub = new Ihub(ds, session, visualQuery);
  7. Update the value by adding a line just after the above line with ihub.config. followed by variable_name and then the value.

    For example, ihub.config.DATE_DISPLAY_FORMAT = "MM-dd-yyyy";

  8. To update another value, add the additional line as above.

    For example, with multiple parameter updates as follows:

    IHub ihub = new IHub(ds, session, visualQuery); 
    ihub.config.DATE_DISPLAY_FORMAT = "MM-dd-yyyy";
    ihub.config.HIGH_RISK_MIN_SCORE_BOUNDARY = 5;