How to generate gc logs out of hyperion services?
Hi experts,
I want to generate GC logs upon hyperion EAS service start, I tried to add new JVMOption41 with below string:
-verbose:gc -Xloggc:D:/Hyperion/gclogs/gc_eas.log -XX:+PrintGCDetails -XX:+PrintGCDateStamps
and also modify JVMOptionCount to 41, after doing so the service started normally but wouldn't generate gc logs.
The same method I tried on other services such as Planning/FR... and all of them doesn't generate gc logs.
I've studied "How To Set GC Log on WebLogic (Doc ID 2727874.1)" and tried the command it provided but not working as well, and if I remove "-verbose:gc" and only put "-Xloggc:D:/Hyperion/gclogs/gc_eas.log -XX:+PrintGCDetails -XX:+PrintGCDateStamps" the service can't even startup so I'm sure JVMOption41 did get loaded during service startup. I'm certain that the log location I specified(D:/Hyperion/gclogs/) is writable and I can manually generate log's in this folder.