Domain Separation for dashboard(s) in Threat Intelligence Security Center (TISC)Summary<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } In order to support the domain separation for the widgets using Performance Analytics (PA) indicators in the TISC Home dashboard, please follow the below steps: Ensure that the domain separation plugin is installed in the instance to support domain separation. Plugin Name and ID: Domain Support - Domain Extensions Installer (com.glide.domain.msp_extensions.installer) Ensure that the user who's logged into the instance has "admin" role to create the TISC PA jobs in the respective domain. For each domain which requires widget data of the TISC dashboard to be considered for that domain, please follow the below steps: Navigate to TISC PA Job (using Data collectors > Jobs ) and open the record named "TISC PA Job".Use insert and stay option to clone the TISC PA job and change the name of the job appropriately (for example, by appending the respective target domain name just to differentiate between TISC PA jobs belonging to different domains).Change the "Run As" user to any user belonging to the target domain for this new PA job record.Link existing PA indicators to the new PA job using Edit option in the related list. Below are the existing PA indicators for TISC Home dashboard: Active ObservablesActive IndicatorsTop TagsTargeted Sectors Alternatively, admin user can also execute the below script for replicating the PA job in a specific domain and automatically linking the existing PA indicators to the that newly created PA job. Provide the user name of the user belonging to the target domain in the "userName" variable before executing. Below script needs to be executed in the "global" scope: var pa = new SNC.PADomainUtils(); var tiscPaJobSysId = "96ccf96343b8421460eee0ea78b8f267"; var userName = ""; // Provide User name of the user belonging to target domain. var userGr = new GlideRecord("sys_user"); userGr.addQuery("user_name", userName); userGr.query(); if(userGr.next()) pa.copyJob(tiscPaJobSysId, userGr.getUniqueValue()); The new TISC PA job created in the target domain is automatically marked as active. // (Optional step) Just to differentiate between TISC PA jobs belonging to different domains, open the corresponding PA job (the latest created record with name as "TISC PA Job") and append the target domain name to that newly created TISC PA Job. Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } NA