Fix Readme
Abstract
In Facet view, correlation column is always last in the table. However, correlation is an more important indicator than count in most cases.
Starting from Version 11.0.2.1, we provide an option to show the correlation column before the count column. This document describes the detailed steps about how to make the change.
Content
Follow these steps to change the column order of Facet view in the Content Miner UI.
1. Backup $ES_NODE_ROOT/master_config/searchserver/repo/analytics/APPNAME/layout/LAYOUTFILE file.
For example, the default Content Miner UI configuration file is
$ES_NODE_ROOT/master_config/searchserver/repo/analytics/default/layout/layout.json.
Note that
- The default APPNAME for out of the box Content Miner UI is "default".
- The default LAYOUTFILE for analytics application is "layout.json".
2. Find the entry with "name":"Facets" that represents the Facet view.
Add widgetProperties property and assign showCorrelationFirst property with value true as follows, and save the change.
{
"enabled":true,
"type":"pane",
"name":"default",
"widgetProperties": {"open": true, "title":"analytics.view.title.category", "iconClass":"categoryViewIcon"},
"children": [{
"type":"content","eventName":"event_facets","name":"Facets", "widgetProperties": {"showCorrelationFirst":true}
}]
}
3. Issue esadmin config sync to reflect the changes.
4. Issue esadmin system stopall and esadmin system startall to restart the server.
Was this topic helpful?
Document Information
Modified date:
17 June 2018
UID
swg22005028