Log Pool Aliases

The logging of a profile job can be done in a separate Log Pool. Very login-intensive profiles, for example, can use their own Log Pool. By default, the Log Pool STANDARD is assigned to a profile.

You can then select a specific Log Pool in the Control Center to view those logs.

More Log Pools can be added via the context menu.


images/download/attachments/73600148/Log_Pools_1_EN-version-1-modificationdate-1620031855889-api-v2.png


(1) The name of the Log Pool.

(2) The retention period of the logs (in table dw_log_sum) in days for this Log Pool. Note: The value -1 is allowed. In that case, the default value from parameter retainDaysForStatistic in configuration file ./etc/startup.xml is used at runtime. See also section Retention Periods of Backup Files and Logs.

(3) Defines whether the logs of this Log Pool should also be replicated for the Web Monitor (and therefore be visible there). Note: This setting only works if there is any replication going on at all! If the Web Monitor does not use its own database schema but instead uses the logAlias of Lobster_data, the replication cannot be prevented, since it does not take place anyway. For technical details see section Installation of the Web Monitor (specifically subsection Installation Without DMZ).


Alternatively, you can manually create an additional Log Pool in the configuration file ./etc/startup.xml.


<Call name="addApplication">
<Arg>
<New class="com.ebd.hub.datawizard.app.DataWizardSetup">
<Call name="setConfiguration">
<Arg>
<New class="com.ebd.hub.datawizard.app.DataWizard">
...
...
<!-- Sample for log pools: STANDARD is always created,
add another pool 'Bulk ' with retain days of 1, no replication for Web Monitor,
pool 'Webmonitor' with 10 days and replication for Web Monitor
pool 'Support' with 30 days, no replication for Web Monitor -->
<Call name="addLogPool">
<Arg>Bulk</Arg>
<Arg type="int">1</Arg>
<Arg type="boolean">false</Arg>
</Call>
<Call name="addLogPool">
<Arg>Webmonitor</Arg>
<Arg type="int">10</Arg>
<Arg type="boolean">true</Arg>
</Call>
<Call name="addLogPool">
<Arg>Support</Arg>
<Arg type="int">30</Arg>
<Arg type="boolean">false</Arg>
</Call>
...
...
</New>
</Arg>
</Call>
</New>
</Arg>
</Call>