HTTPC, API Call
-
whatap.profile_httpc_resource_enabled Boolean
Default
false
When collecting HTTP call steps from the transaction trace, the CPU and memory usages in the step is traced.
-
whatap.trace_httpc_normalize_enabled Boolean
Default
true
It enables the function to parse and normalize HTTPC URLs for transactions.
-
whatap.trace_httpc_normalize_urls String
Define the HTTPC URL patterns to normalize. It deletes the path parameter after parsing the call URL patterns.
NoteFor example, if declared as
/a/{v}/b
,a/123/b
is replaced bya/{v}/b
. For multiple values, use comma (,) as the delimiter. A complement is required after arranging substitution patterns. -
whatap.profile_curl_return_enabled Boolean
Default
true
If the value is
true
, when the result of the curl library function is 'false', the function to display it as an error is enabled. -
whatap.profile_curl_error_info_enabled Boolean
Default
true
If the value is
true
, the function to mark as an error when the result of the curl library function isfalse
. If thewhatap.profile_curl_return_enabled
setting isfalse
, this is not applied.- The error type of the cURL library has the format of error number added after
HttpConnectionReturnFalse
. - Additional error type has been added when the HTTP result code of the calling URL is 400 or greater. An example of
HttpConnectionServerError (result code)
is as follows:HttpConnectionReturnFalse(6)
,HttpConnectionServerError(500)
- The error type of the cURL library has the format of error number added after
-
whatap.profile_curl_error_ignore_empty Boolean
Default
true
If the value is
false
, when there is no error code or message, it appears as normal. If thewhatap.profile_curl_return_enabled
setting isfalse
, it is not applied.