|
35 | 35 | diff</md-nav-item>
|
36 | 36 | <md-nav-item class="wz-nav-item" md-nav-click="switchConfigurationSubTab('fim-whodata')" ng-if="!agent || isLinux"
|
37 | 37 | name="fim-whodata">Who-data</md-nav-item>
|
| 38 | + <md-nav-item class="wz-nav-item" md-nav-click="switchConfigurationSubTab('fim-synchronization')" |
| 39 | + name="fim-synchronization">Synchronization</md-nav-item> |
38 | 40 | </md-nav-bar>
|
39 | 41 | <!-- End Integrity monitoring navigation bar -->
|
40 | 42 |
|
|
96 | 98 | <wz-config-item label="Skip scan on CIFS/NFS mounts"
|
97 | 99 | value="currentConfig['syscheck-syscheck'].syscheck.skip_nfs">
|
98 | 100 | </wz-config-item>
|
| 101 | + <wz-config-item |
| 102 | + label="Skip scan of /dev directory" |
| 103 | + value="currentConfig['syscheck-syscheck'].syscheck.skip_dev"> |
| 104 | + </wz-config-item> |
| 105 | + <wz-config-item |
| 106 | + label="Skip scan of /sys directory" |
| 107 | + value="currentConfig['syscheck-syscheck'].syscheck.skip_sys"> |
| 108 | + </wz-config-item> |
| 109 | + <wz-config-item |
| 110 | + label="Skip scan of /proc directory" |
| 111 | + value="currentConfig['syscheck-syscheck'].syscheck.skip_proc"> |
| 112 | + </wz-config-item> |
99 | 113 | <wz-config-item label="Remove old local snapshots"
|
100 | 114 | value="currentConfig['syscheck-syscheck'].syscheck.remove_old_diff || 'yes'">
|
101 | 115 | </wz-config-item>
|
|
108 | 122 | <wz-config-item label="Command to prevent prelinking"
|
109 | 123 | value="currentConfig['syscheck-syscheck'].syscheck.prefilter_cmd || '-'">
|
110 | 124 | </wz-config-item>
|
| 125 | + <wz-config-item |
| 126 | + label="Maximum event reporting throughput" |
| 127 | + value="currentConfig['syscheck-syscheck'].syscheck.max_eps"> |
| 128 | + </wz-config-item> |
| 129 | + <wz-config-item |
| 130 | + label="Process priority" |
| 131 | + value="currentConfig['syscheck-syscheck'].syscheck.process_priority"> |
| 132 | + </wz-config-item> |
| 133 | + <wz-config-item |
| 134 | + label="Database type" |
| 135 | + value="currentConfig['syscheck-syscheck'].syscheck.database"> |
| 136 | + </wz-config-item> |
111 | 137 |
|
112 | 138 | </div>
|
113 | 139 | <!-- End configuration block -->
|
|
526 | 552 | </md-card>
|
527 | 553 | <!-- End auditkeys card -->
|
528 | 554 |
|
| 555 | + |
| 556 | + <md-card class="wz-md-card" ng-if="!JSONContent && !XMLContent && configurationSubTab === 'fim-synchronization'"> |
| 557 | + <md-card-content> |
| 558 | + <div layout="row" layout-align="start center"> |
| 559 | + <div> |
| 560 | + <span class="font-size-16">Synchronization</span> |
| 561 | + <div class="wz-margin-top-10"> |
| 562 | + <span class="md-subheader small">Database synchronization settings</span> |
| 563 | + </div> |
| 564 | + </div> |
| 565 | + <span flex></span> |
| 566 | + <span ng-class="JSONContent ? 'wz-text-active' : ''" class="wz-text-link small" ng-click="getJSON()">JSON</span> |
| 567 | + <span class="small"> · </span> |
| 568 | + <span ng-class="XMLContent ? 'wz-text-active' : ''" class="wz-text-link small" ng-click="getXML()">XML</span> |
| 569 | + </div> |
| 570 | + <md-divider class="wz-margin-top-10"></md-divider> |
| 571 | + |
| 572 | + <!-- Configuration block --> |
| 573 | + <div class="wz-padding-top-10"> |
| 574 | + <wz-config-item |
| 575 | + label="Synchronization status" |
| 576 | + value="currentConfig['syscheck-syscheck'].syscheck.synchronization.enabled === 'yes' ? 'enabled' : 'disabled'"> |
| 577 | + </wz-config-item> |
| 578 | + <wz-config-item |
| 579 | + label="Maximum interval (in seconds) between every sync" |
| 580 | + value="currentConfig['syscheck-syscheck'].syscheck.synchronization.max_interval"> |
| 581 | + </wz-config-item> |
| 582 | + <wz-config-item |
| 583 | + label="Interval (in seconds) between every sync" |
| 584 | + value="currentConfig['syscheck-syscheck'].syscheck.synchronization.interval"> |
| 585 | + </wz-config-item> |
| 586 | + <wz-config-item |
| 587 | + label="Response timeout (in seconds)" |
| 588 | + value="currentConfig['syscheck-syscheck'].syscheck.synchronization.response_timeout"> |
| 589 | + </wz-config-item> |
| 590 | + <wz-config-item |
| 591 | + label="Queue size of the manager responses" |
| 592 | + value="currentConfig['syscheck-syscheck'].syscheck.synchronization.queue_size"> |
| 593 | + </wz-config-item> |
| 594 | + <wz-config-item |
| 595 | + label="Maximum message throughput" |
| 596 | + value="currentConfig['syscheck-syscheck'].syscheck.synchronization.max_eps"> |
| 597 | + </wz-config-item> |
| 598 | + </div> |
| 599 | + <!-- End configuration block --> |
| 600 | + </md-card-content> |
| 601 | + </md-card> |
| 602 | + |
529 | 603 | <!-- JSON && XML card-->
|
530 | 604 | <wz-config-viewer flex getjson="getJSON()" getxml="getXML()" jsoncontent="JSONContent" xmlcontent="XMLContent" />
|
531 | 605 |
|
|
0 commit comments