Thanks for the information.
I will probably use WFA until 2024, as my customer plans to use it until just before support expires.
There are various logs in the specified directory, but I didn't find anything with the access source IP.
So I checked the standalone.xml and standalone-full.xml configuration files and changed the value of audit-log to true.
(Configuration file in C:\Program Files\NetApp\WFA\jboss\standalone\configuration)
The audit file has been created, but I can't find any information such as IP access source, so I am still looking for information.
For reference, edit the following to create the audit-log.
--------------------------------------------
<audit-log>
<formatters>
<json-formatter name="json-formatter"/>
</formatters>
<handlers>
<file-handler name="file" formatter="json-formatter" path="audit-log.log" relative-to="jboss.server.log.dir"/>
</handlers>
<logger log-boot="true" log-read-only="false" enabled="true">
<handlers>
<handler name="file"/>
</handlers>
</logger>
</audit-log>
--------------------------------------------