Enabling and disabling automatic generation of Profiles statistics files
You can enable or disable automatic generation of Profiles statistics files. By default, automatic generation is enabled.
Before you begin
To edit configuration files, you must use the IBM® WebSphere® Application Server wsadmin client. See Starting the wsadmin client for information about how to start the wsadmin command-line tool.
About this task
Procedure
- Start the wsadmin client from the following
directory of the system on which you installed the Deployment Manager:
where app_server_root is the WebSphere® Application Server installation directory and dm_profile_root is the Deployment Manager profile directory, typically dmgr01.app_server_root\profiles\dm_profile_root\bin
You must start the client from this directory or subsequent commands that you enter do not execute correctly.
- Start the Profiles Jython script interpreter.
- In the working_directory from Step 2,
locate and open the profiles-config.xml file
using a text editor. Scroll to task StatsCollectorTask in
the <scheduledTasks> section.
- To disable auto generation of the statistics file, specify enabled="false" in the StatsCollectorTask statement.
- To enable auto generation of the statistics file, specify enabled="true" in the StatsCollectorTask statement.
Example:<task name="StatsCollectorTask" interval="0 0 1 * * ?" enabled="false" type="internal" scope="local"> <args> <property name="filePath">${PROFILES_STATS_DIR}//LC_NODE_NAME//${WAS_SERVER_NAME}</property> <property name="fileName">profilesStats</property> </args> </task>
- After making changes, you must check the configuration files back in, and you must do so during the same wsadmin session in which you checked them out for the changes to take effect. See Applying property changes in Profiles for information about how to save and apply your changes.