In ORDS 17.4, how can we monitor the APIs calls? I am asking whether there is a built-in logging method or not.
If not, then the first thing comes to mind is changing all the APIs from SQL query to PL/SQL and wrap the SQL query with an insert statement to log the calls e.g.,
REST_API_CALL_LOG (API , CALL_TIME, IP_DDRESS, USER_AGENT )
So, anyone can recommend a better way?