Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On the host of the Client Tier tools being used by your MettleCI solution, under c:\users\<username>\ds_logs directory there are usually some dstage_wrapper_trace_xxx.logfiles.

To start writing debug-level information to those files…

  1. Create a file on the client in C:\IBM\InformationServer\ASBNode\conf\ called NewRepos.debug.properties.

  2. In the file add the following lines:

    Code Block
    # Logging level
    
    com.ibm.datastage.jlog.DSFileHandler.level=DEBUG
    
    
    # maximum number of log files, when exceeded least recently modified file will be overwritten
    
    com.ibm.datastage.jlog.DSFileHandler.count=20
    
    
    # log file names, {0} will be replaced with next file number
    
    com.ibm.datastage.jlog.DSFileHandler.pattern=${user.home}/ds_logs/dstage_wrapper_trace_{0}.log
  3. Inspect those files the next time you experience a hang.

  4. Be sure to do your housekeeping at least daily to ensure that the disk isn’t consumed by detailed log data.

...