1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Cognos Analytics のLibertyのjavaプロセスのGCログ出力設定

Last updated at Posted at 2020-06-10

Cognos Analytics のLibertyのjavaプロセスのGCログ出力設定

Cognos AnalyticsのQuery Serviceのjavaプロセスは、デフォルトでGCログを以下の記事のように出力しますが、Cognos Analyticsの本体であるWebSphere Libertyはデフォルトでは、GCログは出力しません。
https://qiita.com/shinyama/items/faf7e1a86b9ac6fb9653

GCログ出力のやり方をいつも忘れてしまって、探すのが手間なので、自分のメモ変わりに投稿しておきます。

<CognosInstall>\bootstrap_wlp_linuxi38664.xml ファイルを修正します。※linuxの場合のファイル名

下記のように、以下の一行を追加します。
001.PNG

<param>-Xverbosegclog:../logs/gc.log</param>

Cognosを再起動します。

<CognosInstall>/logs/gc.log にGCログが出力されるようになります。
002.PNG

以上です。ご活用下さい。

2023/8/31追記

いつの間にやらbootstrapファイルの記載方法が変更になっているようです。
以下の記載が必要です。

<param condName="${java_vendor}" condValue="IBM">"-Xverbosegclog:${install_path}/logs/verbosegc_%Y%m%d.%H%M%S.%pid.log,10,5000"</param>

参考
How to Enable Garbage Collection (GC) Logging on the Cognos Analytics Server
https://www.ibm.com/support/pages/how-enable-garbage-collection-gc-logging-cognos-analytics-server

Cognos Analytics のLibertyのjavaプロセスのGCログ出力設定(Oracle Java版)
https://qiita.com/shinyama/items/5e447732026011548112

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?