diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 48d046adf..bb0949f8e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -52,6 +52,12 @@ jobs: # â„šī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + - name: Provision agent's build dependencies + if: ${{ matrix.language == 'c-cpp' }} + run: | + sudo apt-get update + sudo apt-get install -y libprotobuf-c-dev protobuf-c-compiler + - name: Build run: | make ${{ matrix.language == 'go' && 'daemon' || 'agent' }} diff --git a/Makefile b/Makefile index 11a871312..dd630354e 100644 --- a/Makefile +++ b/Makefile @@ -227,7 +227,7 @@ bin/: # .PHONY: axiom -axiom: vendor +axiom: protobuf-c $(MAKE) -C axiom # @@ -238,15 +238,15 @@ axiom: vendor # TESTARGS = .PHONY: axiom-tests -axiom-tests: vendor +axiom-tests: protobuf-c $(MAKE) -C axiom tests .PHONY: axiom-check axiom-run-tests -axiom-check axiom-run-tests: vendor axiom/tests/cross_agent_tests +axiom-check axiom-run-tests: protobuf-c axiom/tests/cross_agent_tests $(MAKE) -C axiom run_tests .PHONY: axiom-valgrind -axiom-valgrind: vendor axiom/tests/cross_agent_tests +axiom-valgrind: protobuf-c axiom/tests/cross_agent_tests $(MAKE) -C axiom valgrind .PHONY: tests @@ -279,9 +279,7 @@ axiom-clean: daemon-protobuf: daemon/internal/newrelic/infinite_tracing/com_newrelic_trace_v1/v1.pb.go daemon/internal/newrelic/infinite_tracing/com_newrelic_trace_v1/v1.pb.go: protocol/infinite_tracing/v1.proto - $(MAKE) vendor # Only build vendor stuff if v1.proto has changed. Otherwise - # this rule will be triggered every time the daemon is built. - $(VENDOR_PREFIX)/bin/protoc \ + protoc \ -I=./protocol/infinite_tracing \ --go_out="paths=source_relative,plugins=grpc:daemon/internal/newrelic/infinite_tracing/com_newrelic_trace_v1" \ protocol/infinite_tracing/v1.proto @@ -403,7 +401,7 @@ coverage: # .PHONY: clean -clean: agent-clean axiom-clean daemon-clean package-clean coverage-clean vendor-clean +clean: agent-clean axiom-clean daemon-clean package-clean coverage-clean rm -rf releases rm -f agent/newrelic.map agent/LicenseData/license_errors.txt @@ -441,21 +439,14 @@ lasp-test-all: $(MAKE) lasp-test SUITE_LASP=suite-random-3 # -# Vendored libraries +# Check for protobuf-c (HAVE_PROTOBUF_C): +# - axiom build needs protoc-c (protobuf-c-compiler) +# - agent build needs protobuf-c static library (protobuf-c-devel) # -export GIT - -.PHONY: vendor vendor-clean +.PHONY: protobuf-c +protobuf-c: ifeq (0,$(HAVE_PROTOBUF_C)) -vendor: - $(MAKE) -C vendor all - -vendor-clean: - $(MAKE) -C vendor clean -else -vendor: ; - -vendor-clean: ; + $(error Build dependency 'protobuf-c' not found.) endif # diff --git a/THIRD_PARTY_NOTICES.md b/THIRD_PARTY_NOTICES.md index 7067fda8a..babe6df71 100644 --- a/THIRD_PARTY_NOTICES.md +++ b/THIRD_PARTY_NOTICES.md @@ -23,6 +23,7 @@ by e-mailing [open-source@newrelic.com](mailto:open-source@newrelic.com). * [PCRE](#pcre) * [PHP](#php) * [Portable OpenSSH](#portable-openssh) +* [protobuf-c](#protobuf-c) * [TSRM](#tsrm) * [Symfony](#symfony) @@ -895,6 +896,46 @@ under */ ``` +## protobuf-c + +This product includes [protobuf-c]https://github.com/protobuf-c/protobuf-c) ([v1.3.3](https://github.com/protobuf-c/protobuf-c/tree/v1.3.3)), +distributed under the [protobuf-c license](https://github.com/protobuf-c/protobuf-c/blob/v1.3.3/LICENSE): + +``` +Copyright (c) 2008-2016, Dave Benson and the protobuf-c authors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +The code generated by the protoc-gen-c code generator and by the +protoc-c compiler is owned by the owner of the input files used when +generating it. This code is not standalone and requires a support +library to be linked with it. This support library is covered by the +above license. +``` + ## TSRM This product includes source derived from diff --git a/agent/fw_drupal.c b/agent/fw_drupal.c index 3537f8b42..0312fef44 100644 --- a/agent/fw_drupal.c +++ b/agent/fw_drupal.c @@ -484,8 +484,7 @@ static void nr_drupal_wrap_hook_within_module_invoke_all( */ #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA - zval* curr_hook - = (zval*)nr_stack_get_top(&NRPRG(drupal_invoke_all_hooks)); + zval* curr_hook = (zval*)nr_stack_get_top(&NRPRG(drupal_invoke_all_hooks)); if (!nr_php_is_zval_non_empty_string(curr_hook)) { nrl_verbosedebug(NRL_FRAMEWORK, "%s: cannot extract hook name from global stack", diff --git a/agent/fw_drupal8.c b/agent/fw_drupal8.c index 32976c64a..1ed5d2fcb 100644 --- a/agent/fw_drupal8.c +++ b/agent/fw_drupal8.c @@ -66,8 +66,7 @@ NR_PHP_WRAPPER(nr_drupal_exception) { if (NR_SUCCESS != nr_php_error_record_exception(NRPRG(txn), exception, priority, true, - NULL, - &NRPRG(exception_filters))) { + NULL, &NRPRG(exception_filters))) { nrl_verbosedebug(NRL_TXN, "Drupal: unable to record exception"); } @@ -134,12 +133,12 @@ static void nr_drupal8_add_method_callback(const zend_class_entry* ce, #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA static void nr_drupal8_add_method_callback_before_after_clean( - const zend_class_entry* ce, - const char* method, - size_t method_len, - nrspecialfn_t before_callback, - nrspecialfn_t after_callback, - nrspecialfn_t clean_callback) { + const zend_class_entry* ce, + const char* method, + size_t method_len, + nrspecialfn_t before_callback, + nrspecialfn_t after_callback, + nrspecialfn_t clean_callback) { zend_function* function = NULL; if (NULL == ce) { @@ -164,13 +163,13 @@ static void nr_drupal8_add_method_callback_before_after_clean( nr_php_class_entry_name(ce), NRSAFELEN(method_len), method); nr_php_wrap_user_function_before_after_clean( - class_method, nr_strlen(class_method), - before_callback, after_callback, clean_callback); + class_method, nr_strlen(class_method), before_callback, after_callback, + clean_callback); nr_free(class_method); } } -#endif // OAPI +#endif // OAPI /* * Purpose : Check if the given function or method is in the current call @@ -501,8 +500,7 @@ NR_PHP_WRAPPER(nr_drupal94_invoke_all_with_callback) { #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA - zval* curr_hook - = (zval*)nr_stack_get_top(&NRPRG(drupal_invoke_all_hooks)); + zval* curr_hook = (zval*)nr_stack_get_top(&NRPRG(drupal_invoke_all_hooks)); if (UNEXPECTED(!nr_php_is_zval_non_empty_string(curr_hook))) { nrl_verbosedebug(NRL_FRAMEWORK, "%s: cannot extract hook name from global stack", @@ -515,7 +513,7 @@ NR_PHP_WRAPPER(nr_drupal94_invoke_all_with_callback) { nr_drupal_hook_instrument(Z_STRVAL_P(module), Z_STRLEN_P(module), NRPRG(drupal_invoke_all_hook), NRPRG(drupal_invoke_all_hook_len) TSRMLS_CC); -#endif // OAPI +#endif // OAPI leave: NR_PHP_WRAPPER_CALL; @@ -536,7 +534,7 @@ NR_PHP_WRAPPER(nr_drupal94_invoke_all_with) { || defined OVERWRITE_ZEND_EXECUTE_DATA char* prev_hook = NULL; int prev_hook_len; -#endif // not OAPI +#endif // not OAPI (void)wraprec; @@ -547,7 +545,7 @@ NR_PHP_WRAPPER(nr_drupal94_invoke_all_with) { #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA nr_php_arg_release(&hook); -#endif // OAPI +#endif // OAPI goto leave; } @@ -561,7 +559,7 @@ NR_PHP_WRAPPER(nr_drupal94_invoke_all_with) { = nr_strndup(Z_STRVAL_P(hook), Z_STRLEN_P(hook)); NRPRG(drupal_invoke_all_hook_len) = Z_STRLEN_P(hook); NRPRG(check_cufa) = true; -#endif // OAPI +#endif // OAPI callback = nr_php_arg_get(2, NR_EXECUTE_ORIG_ARGS TSRMLS_CC); /* This instrumentation will fail if callback has already been wrapped @@ -581,14 +579,14 @@ NR_PHP_WRAPPER(nr_drupal94_invoke_all_with) { if (NULL == NRPRG(drupal_invoke_all_hook)) { NRPRG(check_cufa) = false; } -#endif // not OAPI +#endif // not OAPI -leave: ; +leave:; #if ZEND_MODULE_API_NO < ZEND_8_0_X_API_NO \ || defined OVERWRITE_ZEND_EXECUTE_DATA /* for OAPI, the _after callback handles this free */ nr_php_arg_release(&hook); -#endif // not OAPI +#endif // not OAPI } NR_PHP_WRAPPER_END @@ -605,7 +603,7 @@ NR_PHP_WRAPPER(nr_drupal94_invoke_all_with_clean) { nr_drupal_invoke_all_hook_stacks_pop(); } NR_PHP_WRAPPER_END -#endif // OAPI +#endif // OAPI /* * Purpose : Wrap the invoke() method of the module handler instance in use. @@ -642,10 +640,8 @@ NR_PHP_WRAPPER(nr_drupal8_module_handler) { #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA nr_drupal8_add_method_callback_before_after_clean( - ce, NR_PSTR("invokeallwith"), - nr_drupal94_invoke_all_with, - nr_drupal94_invoke_all_with_after, - nr_drupal94_invoke_all_with_clean); + ce, NR_PSTR("invokeallwith"), nr_drupal94_invoke_all_with, + nr_drupal94_invoke_all_with_after, nr_drupal94_invoke_all_with_clean); #else nr_drupal8_add_method_callback(ce, NR_PSTR("invokeallwith"), nr_drupal94_invoke_all_with TSRMLS_CC); @@ -766,14 +762,16 @@ void nr_drupal8_enable(TSRMLS_D) { */ #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA + // clang-format off nr_php_wrap_user_function_before_after_clean( - NR_PSTR("Symfony\\Component\\HttpKernel\\EventListe" - "ner\\RouterListener::onKernelRequest"), + NR_PSTR("Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"), nr_drupal8_name_the_wt_via_symfony, NULL, NULL); + // clang-format on #else - nr_php_wrap_user_function(NR_PSTR("Symfony\\Component\\HttpKernel\\EventListe" - "ner\\RouterListener::onKernelRequest"), + // clang-format off + nr_php_wrap_user_function(NR_PSTR("Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"), nr_drupal8_name_the_wt_via_symfony TSRMLS_CC); + // clang-format on #endif /* @@ -783,9 +781,10 @@ void nr_drupal8_enable(TSRMLS_D) { * above, but kicks in for use cases where the RouterListener is not * involved. */ - nr_php_wrap_user_function(NR_PSTR("Drupal\\Core\\Controller\\ControllerResolv" - "er::getControllerFromDefinition"), + // clang-format off + nr_php_wrap_user_function(NR_PSTR("Drupal\\Core\\Controller\\ControllerResolver::getControllerFromDefinition"), nr_drupal8_name_the_wt TSRMLS_CC); + // clang-format on /* * ExceptionSubscribers handle Drupal errors and exceptions before diff --git a/agent/fw_drupal_common.c b/agent/fw_drupal_common.c index 894ff2270..b0762239d 100644 --- a/agent/fw_drupal_common.c +++ b/agent/fw_drupal_common.c @@ -177,8 +177,9 @@ nr_status_t module_invoke_all_parse_module_and_hook_from_strings( nrl_verbosedebug(NRL_FRAMEWORK, "%s: module len is %d; ; " "hook='%.*s'; module_hook='%.*s'", - __func__, (int)module_len, NRSAFELEN(hook_len), NRSAFESTR(hook), - NRSAFELEN(module_hook_len), NRSAFESTR(module_hook)); + __func__, (int)module_len, NRSAFELEN(hook_len), + NRSAFESTR(hook), NRSAFELEN(module_hook_len), + NRSAFESTR(module_hook)); return NR_FAILURE; } diff --git a/agent/fw_drupal_common.h b/agent/fw_drupal_common.h index d94097a07..03f907031 100644 --- a/agent/fw_drupal_common.h +++ b/agent/fw_drupal_common.h @@ -147,23 +147,25 @@ nr_status_t module_invoke_all_parse_module_and_hook_from_strings( */ void nr_drupal_headers_add(zval* arg, bool is_drupal_7 TSRMLS_DC); - #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA /* - * Purpose: Before an invoke_all style call, adds the hook to that hook states stacks + * Purpose: Before an invoke_all style call, adds the hook to that hook states + * stacks * - * Params : 1. A zval holding a copy of the hook invoked, to be managed by the hook - * states stacks and freed by nr_drupal_invoke_all_hook_stacks_pop() after the - * invoke_all call completes + * Params : 1. A zval holding a copy of the hook invoked, to be managed by the + * hook states stacks and freed by + * nr_drupal_invoke_all_hook_stacks_pop() after the invoke_all call + * completes */ void nr_drupal_invoke_all_hook_stacks_push(zval* hook_copy); /* - * Purpose: After an invoke_all style call, pops that states stack and conditionally - * pops the hook stack based on the previously popped state + * Purpose: After an invoke_all style call, pops that states stack and + * conditionally pops the hook stack based on the previously + * popped state */ void nr_drupal_invoke_all_hook_stacks_pop(); -#endif // OAPI +#endif // OAPI #endif /* FW_DRUPAL_COMMON_HDR */ diff --git a/agent/lib_aws_sdk_php.c b/agent/lib_aws_sdk_php.c index 46a71ce3c..02a0ef4bb 100644 --- a/agent/lib_aws_sdk_php.c +++ b/agent/lib_aws_sdk_php.c @@ -15,9 +15,16 @@ #include "fw_support.h" #include "util_logging.h" #include "nr_segment_message.h" +#include "nr_segment_external.h" #include "lib_aws_sdk_php.h" #define PHP_PACKAGE_NAME "aws/aws-sdk-php" +#define AWS_LAMBDA_ARN_REGEX "(arn:(aws[a-zA-Z-]*)?:lambda:)?" \ + "((?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\\d{1}):)?" \ + "((?\\d{12}):)?" \ + "(function:)?" \ + "(?[a-zA-Z0-9-\\.]+)" \ + "(:(?\\$LATEST|[a-zA-Z0-9-]+))?" #if ZEND_MODULE_API_NO >= ZEND_8_1_X_API_NO /* PHP8.1+ */ /* Service instrumentation only supported above PHP 8.1+*/ @@ -295,6 +302,194 @@ void nr_lib_aws_sdk_php_sqs_parse_queueurl( cloud_attrs->cloud_region = region; } +void nr_lib_aws_sdk_php_lambda_handle(nr_segment_t* auto_segment, + char* command_name_string, + size_t command_name_len, + NR_EXECUTE_PROTO) { + nr_segment_t* external_segment = NULL; + zval** retval_ptr = NR_GET_RETURN_VALUE_PTR; + + nr_segment_cloud_attrs_t cloud_attrs = { + .cloud_platform = "aws_lambda" + }; + + if (NULL == auto_segment) { + return; + } + + if (NULL == command_name_string || 0 == command_name_len) { + return; + } + + if (NULL == *retval_ptr) { + /* Do not instrument when an exception has happened */ + return; + } + +#define AWS_COMMAND_IS(CMD) \ + (command_name_len == (sizeof(CMD) - 1) && nr_streq(CMD, command_name_string)) + + /* Determine if we instrument this command. */ + if (AWS_COMMAND_IS("invoke")) { + /* reconstruct the ARN */ + nr_aws_sdk_lambda_client_invoke_parse_args(NR_EXECUTE_ORIG_ARGS, &cloud_attrs); + } else { + return; + } +#undef AWS_COMMAND_IS + + /* + * By this point, it's been determined that this call will be instrumented so + * only create the segment now, grab the parent segment start time, add our + * special segment attributes/metrics then close the newly created segment. + */ + external_segment = nr_segment_start(NRPRG(txn), NULL, NULL); + if (NULL == external_segment) { + nr_free(cloud_attrs.cloud_resource_id); + return; + } + /* re-use start time from auto_segment started in func_begin */ + external_segment->start_time = auto_segment->start_time; + cloud_attrs.aws_operation = command_name_string; + + /* end the segment */ + nr_segment_traces_add_cloud_attributes(external_segment, &cloud_attrs); + nr_segment_external_params_t external_params = {.library = "aws_sdk"}; + zval* data = nr_php_get_zval_object_property(*retval_ptr, "data"); + if (nr_php_is_zval_valid_array(data)) { + zval* status_code = nr_php_zend_hash_find(Z_ARRVAL_P(data), "StatusCode"); + if (nr_php_is_zval_valid_integer(status_code)) { + external_params.status = Z_LVAL_P(status_code); + } + zval* metadata = nr_php_zend_hash_find(Z_ARRVAL_P(data), "@metadata"); + if (NULL != metadata && IS_REFERENCE == Z_TYPE_P(metadata)) { + metadata = Z_REFVAL_P(metadata); + } + if (nr_php_is_zval_valid_array(metadata)) { + zval* uri = nr_php_zend_hash_find(Z_ARRVAL_P(metadata), "effectiveUri"); + if (nr_php_is_zval_non_empty_string(uri)) { + external_params.uri = Z_STRVAL_P(uri); + } + } + + } + nr_segment_external_end(&external_segment, &external_params); + nr_free(cloud_attrs.cloud_resource_id); +} + +/* This stores the compiled regex to parse AWS ARNs. The compilation happens when + * it is first needed and is destroyed in mshutdown + */ +static nr_regex_t* aws_arn_regex; + +static void nr_aws_sdk_compile_regex(void) { + aws_arn_regex = nr_regex_create(AWS_LAMBDA_ARN_REGEX, 0, 0); +} + +void nr_aws_sdk_mshutdown(void) { + nr_regex_destroy(&aws_arn_regex); +} + +void nr_aws_sdk_lambda_client_invoke_parse_args(NR_EXECUTE_PROTO, nr_segment_cloud_attrs_t* cloud_attrs) { + zval* call_args = nr_php_get_user_func_arg(2, NR_EXECUTE_ORIG_ARGS); + zval* this_obj = NR_PHP_USER_FN_THIS(); + char* arn = NULL; + char* function_name = NULL; + char* region = NULL; + zval* region_zval = NULL; + char* qualifier = NULL; + char* accountID = NULL; + bool using_account_id_ini = false; + + /* verify arguments */ + if (!nr_php_is_zval_valid_array(call_args)) { + return; + } + zval* lambda_args = nr_php_zend_hash_index_find(Z_ARRVAL_P(call_args), 0); + if (!nr_php_is_zval_valid_array(lambda_args)) { + return; + } + zval* lambda_name = nr_php_zend_hash_find(Z_ARRVAL_P(lambda_args), "FunctionName"); + if (!nr_php_is_zval_non_empty_string(lambda_name)) { + return; + } + + /* Ensure regex exists */ + if (NULL == aws_arn_regex) { + nr_aws_sdk_compile_regex(); + } + + /* Extract all information possible from the passed lambda name via regex */ + nr_regex_substrings_t* matches = + nr_regex_match_capture(aws_arn_regex, + Z_STRVAL_P(lambda_name), + Z_STRLEN_P(lambda_name)); + function_name = nr_regex_substrings_get_named(matches, "functionName"); + accountID = nr_regex_substrings_get_named(matches, "accountId"); + region = nr_regex_substrings_get_named(matches, "region"); + qualifier = nr_regex_substrings_get_named(matches, "qualifier"); + + /* supplement missing information with API calls */ + if (nr_strempty(function_name)) { + /* + * Cannot get the needed data. Function name is required in the + * argument, so this won't happen in normal operation + */ + nr_free(function_name); + nr_free(accountID); + nr_free(region); + nr_free(qualifier); + nr_regex_substrings_destroy(&matches); + return; + } + if (nr_strempty(accountID)) { + nr_free(accountID); + accountID = NRINI(aws_account_id); + using_account_id_ini = true; + } + if (nr_strempty(region)) { + zend_class_entry* base_class = NULL; + if (NULL != execute_data->func && NULL!= execute_data->func->common.scope) { + base_class = execute_data->func->common.scope; + } + region_zval + = nr_php_get_zval_object_property_with_class(this_obj, base_class, "region"); + if (nr_php_is_zval_valid_string(region_zval)) { + /* + * In this case, region is likely to be NULL, but could be an empty + * string instead, so we must free + */ + nr_free(region); + region = Z_STRVAL_P(region_zval); + } + } + + if (!nr_strempty(accountID) && !nr_strempty(region)) { + /* construct the ARN */ + if (!nr_strempty(qualifier)) { + arn = nr_formatf("arn:aws:lambda:%s:%s:function:%s:%s", + region, accountID, function_name, qualifier); + } else { + arn = nr_formatf("arn:aws:lambda:%s:%s:function:%s", + region, accountID, function_name); + } + + /* Attach the ARN */ + cloud_attrs->cloud_resource_id = arn; + } + + nr_regex_substrings_destroy(&matches); + nr_free(function_name); + if (!using_account_id_ini) { + nr_free(accountID); + } + /* if region_zval is a valid string, we have already freed region */ + if (!nr_php_is_zval_valid_string(region_zval)) { + nr_free(region); + } + nr_free(qualifier); +} + char* nr_lib_aws_sdk_php_get_command_arg_value(char* command_arg_name, NR_EXECUTE_PROTO) { zval* param_array = NULL; @@ -383,6 +578,10 @@ NR_PHP_WRAPPER(nr_aws_client_call) { nr_lib_aws_sdk_php_sqs_handle(auto_segment, command_name_string, Z_STRLEN_P(command_name), NR_EXECUTE_ORIG_ARGS); + } else if (AWS_CLASS_IS("Aws\\Lambda\\LambdaClient", "LambdaClient")) { + nr_lib_aws_sdk_php_lambda_handle(auto_segment, command_name_string, + Z_STRLEN_P(command_name), + NR_EXECUTE_ORIG_ARGS); } #undef AWS_CLASS_IS @@ -566,5 +765,6 @@ void nr_aws_sdk_php_enable() { nr_php_wrap_user_function_before_after_clean( NR_PSTR("Aws\\AwsClient::__call"), NULL, nr_aws_client_call, nr_aws_client_call); + #endif } diff --git a/agent/lib_aws_sdk_php.h b/agent/lib_aws_sdk_php.h index 6eb0c1e54..2e6bfc74c 100644 --- a/agent/lib_aws_sdk_php.h +++ b/agent/lib_aws_sdk_php.h @@ -7,6 +7,8 @@ #ifndef LIB_AWS_SDK_PHP_HDR #define LIB_AWS_SDK_PHP_HDR +#include "nr_segment_message.h" + #if ZEND_MODULE_API_NO >= ZEND_8_1_X_API_NO /* PHP8.1+ */ /* Service instrumentation only supported above PHP 8.1+*/ @@ -74,6 +76,24 @@ extern void nr_lib_aws_sdk_php_sqs_handle(nr_segment_t* segment, size_t command_name_len, NR_EXECUTE_PROTO); +/* + * Purpose : Handle when a LambdaClient::invoke command happens + * + * Params : 1. NR_EXECUTE_ORIG_ARGS (execute_data, func_return_value) + * 2. cloud_attrs : the cloud attributes pointer to be + * populated with the ARN + * + * Returns : + * + * Note: The caller is responsible for freeing cloud_attrs->cloud_resource_id + */ +void nr_aws_sdk_lambda_client_invoke_parse_args(NR_EXECUTE_PROTO, nr_segment_cloud_attrs_t* cloud_attrs); + +/* + * Purpose : Handles regex destruction during mshutdown + */ +void nr_aws_sdk_mshutdown(void); + /* * Purpose : The second argument to the Aws/AwsClient::__call function should be * an array, the first element of which is itself an array of arguments that diff --git a/agent/php_mshutdown.c b/agent/php_mshutdown.c index 1c67d38b4..189960240 100644 --- a/agent/php_mshutdown.c +++ b/agent/php_mshutdown.c @@ -16,6 +16,7 @@ #include "nr_agent.h" #include "util_logging.h" #include "fw_wordpress.h" +#include "lib_aws_sdk_php.h" #ifdef TAGS void zm_shutdown_newrelic(void); /* ctags landing pad only */ @@ -42,6 +43,10 @@ PHP_MSHUTDOWN_FUNCTION(newrelic) { nr_wordpress_mshutdown(); +#if ZEND_MODULE_API_NO >= ZEND_8_1_X_API_NO /* PHP 8.1+ */ + nr_aws_sdk_mshutdown(); +#endif + /* restore header handler */ sapi_module.header_handler = NR_PHP_PROCESS_GLOBALS(orig_header_handler); NR_PHP_PROCESS_GLOBALS(orig_header_handler) = NULL; diff --git a/agent/php_newrelic.h b/agent/php_newrelic.h index 6afaf531a..9080dd370 100644 --- a/agent/php_newrelic.h +++ b/agent/php_newrelic.h @@ -328,7 +328,6 @@ bool wordpress_core; /* set based on nrinistr_t wordpress_hooks_skip_filename; /* newrelic.framework.wordpress.hooks_skip_filename */ - nrinibool_t analytics_events_enabled; /* DEPRECATED newrelic.analytics_events.enabled */ nrinibool_t @@ -383,6 +382,11 @@ nrinibool_t nrinibool_t database_name_reporting_enabled; /* newrelic.datastore_tracer.database_name_reporting.enabled */ +/* + * Cloud relationship settings + */ +nrinistr_t + aws_account_id; /* newrelic.cloud.aws.account_id */ /* * Deprecated settings that control request parameter capture. @@ -464,6 +468,7 @@ nr_stack_t wordpress_tag_states; /* stack of bools indicating bool check_cufa; /* Whether we need to check cufa because we are instrumenting hooks, or whether we can skip cufa */ char* wordpress_tag; /* The current WordPress tag */ + #endif //OAPI nr_matcher_t* wordpress_plugin_matcher; /* Matcher for plugin filenames */ @@ -481,6 +486,8 @@ int php_cur_stack_depth; /* Total current depth of PHP stack, measured in PHP nrphpcufafn_t cufa_callback; /* The current call_user_func_array callback, if any */ + +nr_regex_t* aws_arn_regex; /* The compiled regex to search for ARNs */ /* * We instrument database connection constructors and store the instance * information in a hash keyed by a string containing the connection resource @@ -580,6 +587,12 @@ nrinibool_t nriniuint_t log_forwarding_log_level; /* newrelic.application_logging.forwarding.log_level */ +nrinibool_t + log_forwarding_labels_enabled; /* newrelic.application_logging.forwarding.labels.enabled */ + +nrinistr_t + log_forwarding_labels_exclude; /* newrelic.application_logging.forwarding.labels.exclude */ + /* * Configuration option to toggle code level metrics collection. diff --git a/agent/php_nrini.c b/agent/php_nrini.c index 4a2f7c471..dce25a27a 100644 --- a/agent/php_nrini.c +++ b/agent/php_nrini.c @@ -1212,6 +1212,33 @@ static PHP_INI_MH(nr_string_mh) { return FAILURE; } +static PHP_INI_MH(nr_aws_account_id_mh) { + nrinistr_t* p; + const int AWS_ACCOUNT_ID_SIZE = 12; + +#ifndef ZTS + char* base = (char*)mh_arg2; +#else + char* base = (char*)ts_resource(*((int*)mh_arg2)); +#endif + + p = (nrinistr_t*)(base + (size_t)mh_arg1); + + (void)entry; + (void)mh_arg3; + NR_UNUSED_TSRMLS; + + p->where = 0; + + if (NEW_VALUE_LEN == AWS_ACCOUNT_ID_SIZE) { + p->value = NEW_VALUE; + p->where = stage; + return SUCCESS; + } + + return FAILURE; +} + static PHP_INI_MH(nr_boolean_mh) { nrinibool_t* p; int val = 0; @@ -3078,6 +3105,22 @@ STD_PHP_INI_ENTRY_EX("newrelic.application_logging.forwarding.context_data.exclu zend_newrelic_globals, newrelic_globals, 0) +STD_PHP_INI_ENTRY_EX("newrelic.application_logging.forwarding.labels.enabled", + "0", + NR_PHP_REQUEST, + nr_boolean_mh, + log_forwarding_labels_enabled, + zend_newrelic_globals, + newrelic_globals, + nr_enabled_disabled_dh) +STD_PHP_INI_ENTRY_EX("newrelic.application_logging.forwarding.labels.exclude", + "", + NR_PHP_REQUEST, + nr_string_mh, + log_forwarding_labels_exclude, + zend_newrelic_globals, + newrelic_globals, + 0) /* * Vulnerability Management @@ -3100,6 +3143,18 @@ STD_PHP_INI_ENTRY_EX("newrelic.vulnerability_management.composer_api.enabled", newrelic_globals, nr_enabled_disabled_dh) +/* + * Cloud relationship settings + */ +STD_PHP_INI_ENTRY_EX("newrelic.cloud.aws.account_id", + "", + NR_PHP_REQUEST, + nr_aws_account_id_mh, + aws_account_id, + zend_newrelic_globals, + newrelic_globals, + 0) + /* * Messaging API */ diff --git a/agent/php_txn.c b/agent/php_txn.c index bc0ea6b7e..32fd8c90e 100644 --- a/agent/php_txn.c +++ b/agent/php_txn.c @@ -536,6 +536,119 @@ static nrobj_t* nr_php_txn_get_labels() { return nr_labels_parse(NR_PHP_PROCESS_GLOBALS(env_labels)); } +static nr_status_t nr_php_txn_collect_label_keys_iter(const char* key, + const nrobj_t* value, + void* ptr) { + nrobj_t* user_data = (nrobj_t*)ptr; + + (void)value; + + if (NULL == key || NULL == user_data) { + return NR_FAILURE; + } + + nro_set_array_string(user_data, 0, key); + + return NR_SUCCESS; +} + +/* + * Purpose : Filter the labels hash to exclude any labels that are in the + * newrelic.application_logging.forwarding.labels.exclude list. + * + * Params : 1. The labels hash to filter. + * + * Returns : A new hash containing the filtered labels. + * If no labels exist or all labels are excluded, then return NULL. + * + */ + +nrobj_t* nr_php_txn_get_log_forwarding_labels(nrobj_t* labels) { + nrobj_t* label_keys = NULL; + nrobj_t* exclude_labels_list = NULL; + nrobj_t* exclude_labels_hash = NULL; + nrobj_t* log_labels = NULL; + + if (NULL == labels || 0 == nro_getsize(labels)) { + nrl_verbosedebug(NRL_TXN, "%s: No labels defined", __FUNCTION__); + return NULL; + } + + /* if logging labels are disabled then nothing to do */ + if (0 == NRINI(log_forwarding_labels_enabled)) { + nrl_verbosedebug(NRL_TXN, "%s: Log forwarding labels disabled", + __FUNCTION__); + return NULL; + } + + /* split exclude string on commas - nr_strsplit() will trim leading + * and trailing whitespace from each string extracted, as well as + * ignoring empty strings after whitespace trimming + */ + exclude_labels_list + = nr_strsplit(NRINI(log_forwarding_labels_exclude), ",", 0); + + /* convert to lowercase to support case insensitive search below + * will store lowercase version in a hash for more convenient lookup + */ + exclude_labels_hash = nro_new(NR_OBJECT_HASH); + for (int i = 0; i < nro_getsize(exclude_labels_list); i++) { + char* label = nr_string_to_lowercase( + nro_get_array_string(exclude_labels_list, i + 1, NULL)); + + if (!nr_strempty(label)) { + nro_set_hash_boolean(exclude_labels_hash, label, 1); + } + nr_free(label); + } + + /* original parsed exclude list is no longer needed */ + nro_delete(exclude_labels_list); + + /* collect label keys from existing labels */ + label_keys = nro_new(NR_OBJECT_ARRAY); + nro_iteratehash(labels, nr_php_txn_collect_label_keys_iter, + (void*)label_keys); + + /* filter by going over the list of label keys, seeing if it exists in the + * exclude hash, and if it does skip it otherwise copy key/value for label + * to the log labels + */ + log_labels = nro_new(NR_OBJECT_HASH); + for (int i = 0; i < nro_getsize(label_keys); i++) { + const char* key = NULL; + char* lower_key = NULL; + int exclude = false; + + key = nro_get_array_string(label_keys, i + 1, NULL); + if (NULL == key) { + continue; + } + + lower_key = nr_string_to_lowercase(key); + + if (1 != nro_get_hash_boolean(exclude_labels_hash, lower_key, NULL)) { + nro_set_hash_string(log_labels, key, + nro_get_hash_string(labels, key, NULL)); + } else { + nrl_verbosedebug(NRL_TXN, "%s: Excluding label %s", __FUNCTION__, + NRSAFESTR(key)); + } + nr_free(lower_key); + } + + nro_delete(exclude_labels_hash); + nro_delete(label_keys); + + /* return NULL if all labels were excluded */ + if (0 == nro_getsize(log_labels)) { + nro_delete(log_labels); + log_labels = NULL; + } + + return log_labels; +} + static void nr_php_txn_prepared_statement_destroy(void* sql) { nr_free(sql); } @@ -666,6 +779,11 @@ static void nr_php_txn_send_metrics_once(nrtxn_t* txn TSRMLS_DC) { nrm_force_add(NRTXN(unscoped_metrics), metname, 0); nr_free(metname); + metname = nr_formatf("Supportability/Logging/Labels/PHP/%s", + FMT_BOOL(nr_txn_log_forwarding_labels_enabled(txn))); + nrm_force_add(NRTXN(unscoped_metrics), metname, 0); + nr_free(metname); + txn->created_logging_onetime_metrics = true; #undef FMT_BOOL @@ -762,6 +880,7 @@ nr_status_t nr_php_txn_begin(const char* appnames, nrtxnopt_t opts; const char* lic_to_use; int pfd; + nrobj_t* log_forwarding_labels = NULL; nr_attribute_config_t* attribute_config; nr_app_info_t info; bool is_cli = (0 != NR_PHP_PROCESS_GLOBALS(cli)); @@ -854,6 +973,7 @@ nr_status_t nr_php_txn_begin(const char* appnames, opts.log_forwarding_log_level = NRINI(log_forwarding_log_level); opts.log_events_max_samples_stored = NRINI(log_events_max_samples_stored); opts.log_metrics_enabled = NRINI(log_metrics_enabled); + opts.log_forwarding_labels_enabled = NRINI(log_forwarding_labels_enabled); opts.message_tracer_segment_parameters_enabled = NRINI(message_tracer_segment_parameters_enabled); @@ -917,17 +1037,21 @@ nr_status_t nr_php_txn_begin(const char* appnames, &nr_php_app_settings, NR_PHP_PROCESS_GLOBALS(daemon_app_connect_timeout)); nr_app_info_destroy_fields(&info); - if (0 == NRPRG(app)) { + if (NULL == NRPRG(app)) { nrl_debug(NRL_INIT, "unable to begin transaction: app '%.128s' is unknown", appnames ? appnames : ""); return NR_FAILURE; } attribute_config = nr_php_create_attribute_config(TSRMLS_C); - NRPRG(txn) = nr_txn_begin(NRPRG(app), &opts, attribute_config); + log_forwarding_labels + = nr_php_txn_get_log_forwarding_labels(NRPRG(app)->info.labels); + NRPRG(txn) = nr_txn_begin(NRPRG(app), &opts, attribute_config, + log_forwarding_labels); nrt_mutex_unlock(&(NRPRG(app)->app_lock)); nr_attribute_config_destroy(&attribute_config); + nro_delete(log_forwarding_labels); if (0 == NRPRG(txn)) { nrl_debug(NRL_INIT, "no Axiom transaction this time around"); diff --git a/agent/php_txn_private.h b/agent/php_txn_private.h index 6788877ad..ab7d5d7b4 100644 --- a/agent/php_txn_private.h +++ b/agent/php_txn_private.h @@ -86,3 +86,16 @@ extern void nr_php_txn_php_package_create_major_metric(void* value, * Params : 1. The current transaction. */ extern void nr_php_txn_create_packages_major_metrics(nrtxn_t* txn); + +/* + * Purpose : Filter the labels hash to exclude any labels that are in the + * newrelic.application_logging.forwarding.labels.exclude list. + * + * Params : 1. The labels hash to filter. + * + * Returns : A new hash containing the filtered labels. + * If no labels exist or all labels are excluded, then return NULL. + * + */ + +extern nrobj_t* nr_php_txn_get_log_forwarding_labels(nrobj_t* labels); \ No newline at end of file diff --git a/agent/scripts/newrelic.ini.template b/agent/scripts/newrelic.ini.template index b406628a9..aeaf75641 100644 --- a/agent/scripts/newrelic.ini.template +++ b/agent/scripts/newrelic.ini.template @@ -1242,7 +1242,6 @@ newrelic.daemon.logfile = "/var/log/newrelic/newrelic-daemon.log" ; ;newrelic.application_logging.forwarding.log_level = "WARNING" - ; Setting: newrelic.application_logging.local_decorating.enabled ; Type : boolean ; Scope : per-directory @@ -1305,6 +1304,34 @@ newrelic.daemon.logfile = "/var/log/newrelic/newrelic-daemon.log" ;newrelic.application_logging.forwarding.context_data.include = "" ;newrelic.application_logging.forwarding.context_data.exclude = "" +; Setting: newrelic.application_logging.forwarding.labels.enabled +; Type : boolean +; Scope : per-directory +; Default: false +; Info : Toggles whether the agent adds labels as attributes to log records which +; are sent to New Relic. The labels can be defined by the newrelic.labels +; configuration value, and filtered using the +; newrelic.application_logging.forwarding.labels.exclude configuration value. +; +;newrelic.application_logging.forwarding.labels.enabled = false + +; Setting: newrelic.application_logging.forwarding.labels.exclude +; Type : string +; Scope : per-directory +; Default: "" +; Info : A list of labels to NOT add as attributes to logs which are forwarded +; to New Relic. The values in the list must be separated by commas. +; +; NOTE: The values in this list are compared to label key names in a case +; insensitive fashion. So if an exclude rule for "server" is specified +; here then it would exclude keys like "server", "Server", "SERVER", and +; any other combination of lower and upper case letters that spell out "server". +; +; Ex: +; newrelic.application_logging.forwarding.labels.exclude = "label1, label2" +; +;newrelic.application_logging.forwarding.labels.exclude = "" + ; Setting: newrelic.code_level_metrics.enabled ; Type : boolean ; Scope : per-directory @@ -1352,3 +1379,17 @@ newrelic.daemon.logfile = "/var/log/newrelic/newrelic-daemon.log" ; newrelic.span_events.attributes.include/exclude ; ;newrelic.message_tracer.segment_parameters.enabled = true + +; Setting: newrelic.cloud.aws.account_id +; Type : string +; Scope : per-directory +; Default: none +; Info : This setting is read by some cloud service instrumentation so the +; cloud.resource_id attribute can be set in the respective spans. +; Do not include any "-" characters; this should be 12 characters. +; +; AWS DynamoDB and Kinesis are services that require this value to be +; able to populate the cloud.resource_id attribute. Likewise, AWS Lambda +; requires that this value when the account ID is not part of the function name. +; +;newrelic.cloud.aws.account_id = "" diff --git a/agent/tests/test_lib_aws_sdk_php.c b/agent/tests/test_lib_aws_sdk_php.c index 0ac040424..83c6962a8 100644 --- a/agent/tests/test_lib_aws_sdk_php.c +++ b/agent/tests/test_lib_aws_sdk_php.c @@ -61,6 +61,30 @@ NR_PHP_WRAPPER(expect_arg_value_null) { } NR_PHP_WRAPPER_END +NR_PHP_WRAPPER(aws_lambda_invoke_wrapper) { + nr_segment_cloud_attrs_t cloud_attrs = {0}; + /* + * Because argument 1 is not used in instrumentation, we will use it + * to pass in the expected value + */ + zval* expected = nr_php_get_user_func_arg(1, NR_EXECUTE_ORIG_ARGS); + nr_aws_sdk_lambda_client_invoke_parse_args(NR_EXECUTE_ORIG_ARGS, &cloud_attrs); + (void)wraprec; + + if (nr_php_is_zval_valid_string(expected)) { + tlib_pass_if_str_equal("Expected should match reconstructed arn", + Z_STRVAL_P(expected), + cloud_attrs.cloud_resource_id); + } else { + tlib_pass_if_str_equal("Expected should match reconstructed arn", + NULL, + cloud_attrs.cloud_resource_id); + } + NR_PHP_WRAPPER_CALL; + nr_free(cloud_attrs.cloud_resource_id); +} +NR_PHP_WRAPPER_END + static void test_nr_lib_aws_sdk_php_get_command_arg_value() { zval* expr = NULL; zval* first_arg = NULL; @@ -458,14 +482,190 @@ static void test_nr_lib_aws_sdk_php_handle_version(void) { tlib_php_request_end(); } +#if ZEND_MODULE_API_NO >= ZEND_8_1_X_API_NO +static void test_nr_lib_aws_sdk_php_lambda_invoke() { + tlib_php_engine_create(""); + tlib_php_request_start(); + + tlib_php_request_eval("function lambda_invoke($a, $b) { return; }"); + nr_php_wrap_user_function(NR_PSTR("lambda_invoke"), aws_lambda_invoke_wrapper); + + NRINI(aws_account_id) = "111122223333"; + + /* Test full-info run */ + char* args + = "array(" + " 0 => array(" + " 'FunctionName' => 'us-east-2:012345678901:function:my-function'" + " )" + ")"; + zval* array_arg = tlib_php_request_eval_expr(args); + char* expect = "'arn:aws:lambda:us-east-2:012345678901:function:my-function'"; + zval* expect_arg = tlib_php_request_eval_expr(expect); + zval* expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&expect_arg); + nr_php_zval_free(&array_arg); + + /* Test alias full-info run */ + args + = "array(" + " 0 => array(" + " 'FunctionName' => 'us-east-2:012345678901:function:my-function:v1'" + " )" + ")"; + array_arg = tlib_php_request_eval_expr(args); + expect = "'arn:aws:lambda:us-east-2:012345678901:function:my-function:v1'"; + expect_arg = tlib_php_request_eval_expr(expect); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&expect_arg); + nr_php_zval_free(&array_arg); + + /* Test INI extract */ + args + = "array(" + " 0 => array(" + " 'FunctionName' => 'us-east-2:my-function'" + " )" + ")"; + array_arg = tlib_php_request_eval_expr(args); + expect = "'arn:aws:lambda:us-east-2:111122223333:function:my-function'"; + expect_arg = tlib_php_request_eval_expr(expect); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&expect_arg); + nr_php_zval_free(&array_arg); + + /* Test failed INI extract */ + NRINI(aws_account_id) = ""; + args + = "array(" + " 0 => array(" + " 'FunctionName' => 'us-east-2:my-function'" + " )" + ")"; + array_arg = tlib_php_request_eval_expr(args); + expect = "NULL"; + expect_arg = tlib_php_request_eval_expr(expect); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&array_arg); + NRINI(aws_account_id) = "111122223333"; + + /* Test NULL INI */ + NRINI(aws_account_id) = NULL; + args + = "array(" + " 0 => array(" + " 'FunctionName' => 'us-east-2:my-function'" + " )" + ")"; + array_arg = tlib_php_request_eval_expr(args); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&array_arg); + NRINI(aws_account_id) = "111122223333"; + + /* Test invalid arg 1 */ + args + = "array(" + " 0 => array(" + " 'FunctionName' => 123" + " )" + ")"; + array_arg = tlib_php_request_eval_expr(args); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&array_arg); + + /* Test invalid arg 2 */ + args + = "array(" + " 0 => array(" + " )" + ")"; + array_arg = tlib_php_request_eval_expr(args); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&array_arg); + + /* Test invalid arg 3 */ + args = "array()"; + array_arg = tlib_php_request_eval_expr(args); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&array_arg); + + /* Test invalid arg 4 */ + args + = "array(" + " 0 => array(" + " 'FunctionName' => ''" + " )" + ")"; + array_arg = tlib_php_request_eval_expr(args); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&array_arg); + + /* Test invalid arg 5 */ + args + = "array(" + " 0 => array(" + " 'FunctionName' => NULL" + " )" + ")"; + array_arg = tlib_php_request_eval_expr(args); + expr = nr_php_call(NULL, "lambda_invoke", expect_arg, array_arg); + tlib_pass_if_not_null("Expression should evaluate.", expr); + nr_php_zval_free(&expr); + nr_php_zval_free(&expect_arg); + nr_php_zval_free(&array_arg); + + tlib_php_request_end(); + tlib_php_engine_destroy(); +} + +#endif /* PHP 8.1+ */ + +static void test_nr_lib_aws_sdk_ini() { + /* test too short */ + tlib_php_engine_create("newrelic.cloud.aws.account_id=\"12345678901\""); + tlib_php_request_start(); + tlib_pass_if_str_equal("Expected short account id to be dropped", + NULL, NRINI(aws_account_id)); + tlib_php_request_end(); + tlib_php_engine_destroy(); + + /* test too long */ + tlib_php_engine_create("newrelic.cloud.aws.account_id=\"1234567890123\""); + tlib_php_request_start(); + tlib_pass_if_str_equal("Expected short account id to be dropped", + NULL, NRINI(aws_account_id)); + tlib_php_request_end(); + tlib_php_engine_destroy(); +} + void test_main(void* p NRUNUSED) { tlib_php_engine_create(""); test_nr_lib_aws_sdk_php_add_supportability_service_metric(); test_nr_lib_aws_sdk_php_handle_version(); tlib_php_engine_destroy(); + test_nr_lib_aws_sdk_ini(); #if ZEND_MODULE_API_NO >= ZEND_8_1_X_API_NO test_nr_lib_aws_sdk_php_sqs_parse_queueurl(); test_nr_lib_aws_sdk_php_get_command_arg_value(); + test_nr_lib_aws_sdk_php_lambda_invoke(); #endif /* PHP 8.1+ */ } #else diff --git a/agent/tests/test_txn.c b/agent/tests/test_txn.c index 50c4ff8bc..c641fa8e7 100644 --- a/agent/tests/test_txn.c +++ b/agent/tests/test_txn.c @@ -288,6 +288,69 @@ static void test_create_agent_php_version_metrics() { #undef PHP_VERSION_METRIC_BASE #undef AGENT_VERSION_METRIC_BASE +static void test_create_log_forwarding_labels(TSRMLS_D) { + nrobj_t* labels = NULL; + nrobj_t* log_labels = NULL; + char* json = NULL; + + /* Test : Create log forwarding labels with valid key/value pairs */ + labels = nro_new_hash(); + nro_set_hash_string(labels, "key1", "value1"); + nro_set_hash_string(labels, "key2", "value2"); + nro_set_hash_string(labels, "key3", "value3"); + + log_labels = nr_php_txn_get_log_forwarding_labels(labels); + + json = nro_to_json(labels); + tlib_pass_if_str_equal( + "valid log label creation test", + "{\"key1\":\"value1\",\"key2\":\"value2\",\"key3\":\"value3\"}", json); + + nr_free(json); + nro_delete(labels); + nro_delete(log_labels); + + /* Test : Create log forwarding labels with empty key/value pairs */ + labels = nro_new_hash(); + nro_set_hash_string(labels, "", ""); + nro_set_hash_string(labels, "key", ""); + nro_set_hash_string(labels, "", "value"); + + log_labels = nr_php_txn_get_log_forwarding_labels(labels); + + json = nro_to_json(labels); + tlib_pass_if_str_equal("empty string log label creation test", + "{\"key\":\"\"}", json); + + nr_free(json); + nro_delete(labels); + nro_delete(log_labels); + + /* Test : Create log forwarding labels with NULL key/value pairs */ + labels = nro_new_hash(); + nro_set_hash_string(labels, NULL, NULL); + nro_set_hash_string(labels, "key", NULL); + nro_set_hash_string(labels, NULL, "value"); + + log_labels = nr_php_txn_get_log_forwarding_labels(labels); + + json = nro_to_json(labels); + tlib_pass_if_str_equal("NULL value log label creation test", "{\"key\":\"\"}", + json); + + nr_free(json); + nro_delete(labels); + nro_delete(log_labels); + + /* Test : Create log forwarding labels NULL labels object */ + log_labels = nr_php_txn_get_log_forwarding_labels(NULL); + json = nro_to_json(labels); + tlib_pass_if_str_equal("NULL object log label creation test", "null", json); + + nr_free(json); + nro_delete(log_labels); +} + tlib_parallel_info_t parallel_info = {.suggested_nthreads = 1, .state_size = 0}; void test_main(void* p NRUNUSED) { @@ -299,14 +362,16 @@ void test_main(void* p NRUNUSED) { * We're setting up our own engine instance because we need to control the * attribute configuration. */ - tlib_php_engine_create( - "newrelic.transaction_events.attributes.include=request.uri" PTSRMLS_CC); + // clang-format off + tlib_php_engine_create("newrelic.transaction_events.attributes.include=request.uri" PTSRMLS_CC); + // clang-format on test_handle_fpm_error(); test_max_segments_config_values(); test_create_php_version_metric(); test_create_agent_version_metric(); test_create_agent_php_version_metrics(); + test_create_log_forwarding_labels(); tlib_php_engine_destroy(); } diff --git a/axiom/Makefile b/axiom/Makefile index 4cce3a6f6..b8c605a5b 100644 --- a/axiom/Makefile +++ b/axiom/Makefile @@ -196,6 +196,9 @@ nr_config.h: configure Makefile # Build the 8T protobuf code. # v1.pb-c.c: v1.proto +ifeq (0,$(HAVE_PROTOBUF_C)) + $(error Build dependency 'protobuf-c' not found.) +endif $(PROTOBUF_C_PREFIX)/bin/protoc-c --c_out=. $< # diff --git a/axiom/cmd_txndata_transmit.c b/axiom/cmd_txndata_transmit.c index 6f03dea77..3bc60692d 100644 --- a/axiom/cmd_txndata_transmit.c +++ b/axiom/cmd_txndata_transmit.c @@ -32,6 +32,7 @@ #include "util_buffer.h" #include "util_errno.h" #include "util_flatbuffers.h" +#include "util_labels.h" #include "util_logging.h" #include "util_memory.h" #include "util_network.h" @@ -54,7 +55,7 @@ char* nr_txndata_error_to_json(const nrtxn_t* txn) { NR_ATTRIBUTE_DESTINATION_ERROR); // add guid to aid error linking ui - // make copy of txn->intrisics to not cause it to be modified for other + // make copy of txn->intrisics to not cause it to be modified for other // potential uses during conversion to flatbuffer intrinsics_attributes = nro_copy(txn->intrinsics); nro_set_hash_string(intrinsics_attributes, "guid", nr_txn_get_guid(txn)); @@ -198,6 +199,33 @@ static uint32_t nr_txndata_prepend_log_events(nr_flatbuffer_t* fb, return events; } +/* + * Send the log labels to the daemon. The format used is the same as + * the format used to send labels in a collector connect message and + * was chosen for convenience of unmarshalling in the daemon. + */ +static uint32_t nr_txndata_prepend_log_forwarding_labels(nr_flatbuffer_t* fb, + nrobj_t* log_labels) { + char* json; + nrobj_t* labels; + uint32_t data; + + labels = nr_labels_connector_format(log_labels); + json = nro_to_json(labels); + nro_delete(labels); + + if (NULL == json) { + return 0; + } + + data = nr_flatbuffers_prepend_string(fb, json); + nr_free(json); + + nr_flatbuffers_object_begin(fb, EVENT_NUM_FIELDS); + nr_flatbuffers_object_prepend_uoffset(fb, EVENT_FIELD_DATA, data, 0); + return nr_flatbuffers_object_end(fb); +} + uint32_t nr_txndata_prepend_span_events(nr_flatbuffer_t* fb, nr_vector_t* span_events, size_t span_event_limit) { @@ -605,12 +633,15 @@ static uint32_t nr_txndata_prepend_transaction(nr_flatbuffer_t* fb, uint32_t span_events; uint32_t log_events; uint32_t php_packages; + uint32_t log_labels; txn_trace = nr_txndata_prepend_trace_to_flatbuffer(fb, txn); span_events = nr_txndata_prepend_span_events(fb, txn->final_data.span_events, txn->app_limits.span_events); log_events = nr_txndata_prepend_log_events(fb, txn, txn->app_limits.log_events); + log_labels = nr_txndata_prepend_log_forwarding_labels( + fb, txn->log_forwarding_labels); error_events = nr_txndata_prepend_error_events(fb, txn); custom_events = nr_txndata_prepend_custom_events(fb, txn); slowsqls = nr_txndata_prepend_slowsqls(fb, txn); @@ -653,6 +684,8 @@ static uint32_t nr_txndata_prepend_transaction(nr_flatbuffer_t* fb, log_events, 0); nr_flatbuffers_object_prepend_uoffset(fb, TRANSACTION_FIELD_PHP_PACKAGES, php_packages, 0); + nr_flatbuffers_object_prepend_uoffset(fb, TRANSACTION_FIELD_LOG_LABELS, + log_labels, 0); return nr_flatbuffers_object_end(fb); } diff --git a/axiom/nr_commands_private.h b/axiom/nr_commands_private.h index 566a7db10..428df1310 100644 --- a/axiom/nr_commands_private.h +++ b/axiom/nr_commands_private.h @@ -115,7 +115,8 @@ enum { TRANSACTION_FIELD_SPAN_EVENTS = 12, TRANSACTION_FIELD_LOG_EVENTS = 13, TRANSACTION_FIELD_PHP_PACKAGES = 14, - TRANSACTION_NUM_FIELDS = 15 + TRANSACTION_FIELD_LOG_LABELS = 15, + TRANSACTION_NUM_FIELDS = 16 }; /* Generated from: table Event */ diff --git a/axiom/nr_segment.h b/axiom/nr_segment.h index 646f11e5f..1e9cce8ec 100644 --- a/axiom/nr_segment.h +++ b/axiom/nr_segment.h @@ -159,6 +159,8 @@ typedef struct _nr_segment_cloud_attrs_t { relationship.*/ char* cloud_account_id; /*The cloud provider account ID. Needed for SQS relationship.*/ + char* cloud_platform; /*The platform hosting the cloud. Needed for Lambda + relationship.*/ char* cloud_resource_id; /*Unique cloud provider identifier. For AWS, this is the ARN of the AWS resource being accessed.*/ char* aws_operation; /*AWS specific operation name.*/ diff --git a/axiom/nr_segment_traces.c b/axiom/nr_segment_traces.c index d2f1fddac..6d8870565 100644 --- a/axiom/nr_segment_traces.c +++ b/axiom/nr_segment_traces.c @@ -658,4 +658,9 @@ extern void nr_segment_traces_add_cloud_attributes( segment->attributes, NR_CLOUD_AGENT_ATTRIBUTE_DESTINATION, NR_ATTR_AWS_OPERATION, cloud_attrs->aws_operation); } + if (!nr_strempty(cloud_attrs->cloud_platform)) { + nr_attributes_agent_add_string( + segment->attributes, NR_CLOUD_AGENT_ATTRIBUTE_DESTINATION, + NR_ATTR_CLOUD_PLATFORM, cloud_attrs->cloud_platform); + } } diff --git a/axiom/nr_span_event.h b/axiom/nr_span_event.h index 33dced5c2..54d52e025 100644 --- a/axiom/nr_span_event.h +++ b/axiom/nr_span_event.h @@ -24,6 +24,7 @@ #define NR_ATTR_CLOUD_REGION "cloud.region" #define NR_ATTR_CLOUD_ACCOUNT_ID "cloud.account.id" #define NR_ATTR_CLOUD_RESOURCE_ID "cloud.resource_id" +#define NR_ATTR_CLOUD_PLATFORM "cloud.platform" #define NR_ATTR_AWS_OPERATION "aws.operation" typedef struct _nr_span_event_t nr_span_event_t; diff --git a/axiom/nr_txn.c b/axiom/nr_txn.c index 06c0214ef..85e7739af 100644 --- a/axiom/nr_txn.c +++ b/axiom/nr_txn.c @@ -35,6 +35,7 @@ #include "util_logging.h" #include "util_memory.h" #include "util_metrics.h" +#include "util_object.h" #include "util_random.h" #include "util_reply.h" #include "util_sampling.h" @@ -445,7 +446,8 @@ static bool nr_txn_flush_span_batch(nr_span_encoding_result_t* encoded_batch, nrtxn_t* nr_txn_begin(nrapp_t* app, const nrtxnopt_t* opts, - const nr_attribute_config_t* attribute_config) { + const nr_attribute_config_t* attribute_config, + const nrobj_t* log_forwarding_labels) { nrtxn_t* nt; char* guid; nr_status_t err = 0; @@ -541,6 +543,8 @@ nrtxn_t* nr_txn_begin(nrapp_t* app, nt->custom_events = nr_analytics_events_create(app->limits.custom_events); nt->log_events = nr_log_events_create(app->limits.log_events); + nt->log_forwarding_labels = nro_copy(log_forwarding_labels); + nt->php_packages = nr_php_packages_create(); nt->php_package_major_version_metrics_suggestions = nr_php_packages_create(); @@ -1276,6 +1280,8 @@ void nr_txn_destroy_fields(nrtxn_t* txn) { nro_delete(txn->cat.alternate_path_hashes); nr_free(txn->cat.client_cross_process_id); + nro_delete(txn->log_forwarding_labels); + nro_delete(txn->app_connect_reply); nr_free(txn->primary_app_name); nr_synthetics_destroy(&txn->synthetics); @@ -3369,6 +3375,14 @@ bool nr_txn_log_decorating_enabled(nrtxn_t* txn) { return true; } +bool nr_txn_log_forwarding_labels_enabled(nrtxn_t* txn) { + if (!nr_txn_log_forwarding_enabled(txn)) { + return false; + } + + return txn->options.log_forwarding_labels_enabled; +} + #define ENSURE_LOG_LEVEL_NAME(level_name) \ (nr_strempty(level_name) ? "UNKNOWN" : level_name) diff --git a/axiom/nr_txn.h b/axiom/nr_txn.h index 55871f1b1..02d45f65f 100644 --- a/axiom/nr_txn.h +++ b/axiom/nr_txn.h @@ -132,6 +132,8 @@ typedef struct _nrtxnopt_t { size_t log_events_max_samples_stored; /* The maximum number of log events per transaction */ bool log_metrics_enabled; /* Whether log metrics are enabled */ + bool log_forwarding_labels_enabled; /* Whether labels are forwarded with log + events */ bool message_tracer_segment_parameters_enabled; /* Determines whether to add message attr */ } nrtxnopt_t; @@ -287,6 +289,8 @@ typedef struct _nrtxn_t { nr_analytics_events_t* custom_events; /* Custom events created through the API. */ nr_log_events_t* log_events; /* Log events pool */ + nrobj_t* log_forwarding_labels; /* A hash of log labels to be added to log + events */ nr_php_packages_t* php_packages; /* Detected php packages */ nr_php_packages_t* php_package_major_version_metrics_suggestions; /* Suggested packages for @@ -383,13 +387,19 @@ void nr_txn_enforce_security_settings(nrtxnopt_t* opts, * Params : 1. The relevant application. This application is assumed * to be locked and is not unlocked by this function. * 2. Pointer to the starting options for the transaction. + * 3. Attributes configuration, usually generated by + * nr_php_create_attribute_config() + * 4. A hash containing log forwarding labels to be added to log + * events, usually genereated with + * nr_php_txn_get_log_forwarding_labels() * * Returns : A newly created transaction pointer or NULL if the request could * not be completed. */ extern nrtxn_t* nr_txn_begin(nrapp_t* app, const nrtxnopt_t* opts, - const nr_attribute_config_t* attribute_config); + const nr_attribute_config_t* attribute_config, + const nrobj_t* log_forwarding_labels); /* * Purpose : End a transaction by finalizing all metrics and timers. @@ -687,6 +697,11 @@ extern void nr_txn_record_log_event(nrtxn_t* txn, nr_attributes_t* context_attributes, nrapp_t* app); +/* + * Purpose : Check log labels forwarding configuration + */ +extern bool nr_txn_log_forwarding_labels_enabled(nrtxn_t* txn); + /* * Purpose : Return the CAT trip ID for the current transaction. * diff --git a/axiom/tests/.gitignore b/axiom/tests/.gitignore index 22ee3b042..fa0332187 100644 --- a/axiom/tests/.gitignore +++ b/axiom/tests/.gitignore @@ -95,6 +95,7 @@ test_segment test_segment_children test_segment_datastore test_segment_external +test_segment_message test_segment_private test_segment_terms test_segment_traces diff --git a/axiom/tests/test_cmd_txndata.c b/axiom/tests/test_cmd_txndata.c index ffb53a6c9..f1af51979 100644 --- a/axiom/tests/test_cmd_txndata.c +++ b/axiom/tests/test_cmd_txndata.c @@ -11,7 +11,6 @@ #include "nr_app.h" #include "nr_attributes.h" #include "nr_commands.h" -#include "nr_commands.h" #include "nr_commands_private.h" #include "nr_custom_events.h" #include "nr_errors.h" @@ -1113,6 +1112,129 @@ static void test_encode_txn_event(void) { nr_txn_destroy_fields(&txn); } +static void test_encode_log_forwarding_labels(void) { + nrtxn_t txn; + nr_flatbuffers_table_t tbl; + nrobj_t* obj; + nr_flatbuffer_t* fb; + int data_type; + int did_pass; + const char* input = "alpha:beta;gamma:delta"; + + obj = nr_labels_parse(input); + + nr_memset(&txn, 0, sizeof(txn)); + txn.status.recording = 1; + txn.options.log_forwarding_enabled = 1; + txn.options.log_forwarding_labels_enabled = 1; + txn.log_forwarding_labels = nro_copy(obj); + + fb = nr_txndata_encode(&txn); + + nr_flatbuffers_table_init_root(&tbl, nr_flatbuffers_data(fb), + nr_flatbuffers_len(fb)); + + data_type = nr_flatbuffers_table_read_i8(&tbl, MESSAGE_FIELD_DATA_TYPE, + MESSAGE_BODY_NONE); + did_pass = tlib_pass_if_true(__func__, MESSAGE_BODY_TXN == data_type, + "data_type=%d", data_type); + if (0 != did_pass) { + goto done; + } + + did_pass = tlib_pass_if_true( + __func__, + 0 != nr_flatbuffers_table_read_union(&tbl, &tbl, MESSAGE_FIELD_DATA), + "transaction data missing"); + if (0 != did_pass) { + goto done; + } + + did_pass + = tlib_pass_if_true(__func__, + 0 + != nr_flatbuffers_table_read_union( + &tbl, &tbl, TRANSACTION_FIELD_LOG_LABELS), + "log labels missing"); + if (0 != did_pass) { + goto done; + } + + tlib_pass_if_bytes_equal_f( + __func__, + NR_PSTR("[{\"label_type\":\"alpha\",\"label_value\":\"beta\"}," + "{\"label_type\":\"gamma\",\"label_" + "value\":\"delta\"}]"), + nr_flatbuffers_table_read_bytes(&tbl, EVENT_FIELD_DATA), + nr_flatbuffers_table_read_vector_len(&tbl, EVENT_FIELD_DATA), __FILE__, + __LINE__); + +done: + nr_flatbuffers_destroy(&fb); + nr_txn_destroy_fields(&txn); + nro_delete(obj); +} + +static void test_encode_log_forwarding_labels_null(void) { + nrtxn_t txn; + nr_flatbuffers_table_t tbl; + nrobj_t* obj; + nr_flatbuffer_t* fb; + int data_type; + int did_pass; + const char* input = "alpha:beta;gamma:delta"; + + obj = nr_labels_parse(input); + + nr_memset(&txn, 0, sizeof(txn)); + txn.status.recording = 1; + txn.options.log_forwarding_enabled = 1; + txn.options.log_forwarding_labels_enabled = 1; + txn.log_forwarding_labels = NULL; + + fb = nr_txndata_encode(&txn); + + nr_flatbuffers_table_init_root(&tbl, nr_flatbuffers_data(fb), + nr_flatbuffers_len(fb)); + + data_type = nr_flatbuffers_table_read_i8(&tbl, MESSAGE_FIELD_DATA_TYPE, + MESSAGE_BODY_NONE); + did_pass = tlib_pass_if_true(__func__, MESSAGE_BODY_TXN == data_type, + "data_type=%d", data_type); + if (0 != did_pass) { + goto done; + } + + did_pass = tlib_pass_if_true( + __func__, + 0 != nr_flatbuffers_table_read_union(&tbl, &tbl, MESSAGE_FIELD_DATA), + "transaction data missing"); + if (0 != did_pass) { + goto done; + } + + did_pass + = tlib_pass_if_true(__func__, + 0 + != nr_flatbuffers_table_read_union( + &tbl, &tbl, TRANSACTION_FIELD_LOG_LABELS), + "log labels missing"); + if (0 != did_pass) { + goto done; + } + + tlib_pass_if_bytes_equal_f( + __func__, NR_PSTR("[]"), + nr_flatbuffers_table_read_bytes(&tbl, EVENT_FIELD_DATA), + nr_flatbuffers_table_read_vector_len(&tbl, EVENT_FIELD_DATA), __FILE__, + __LINE__); + +done: + nr_flatbuffers_destroy(&fb); + nr_txn_destroy_fields(&txn); + nro_delete(obj); +} + static void test_encode_php_packages(void) { nrtxn_t txn; nr_flatbuffers_table_t tbl; @@ -1280,6 +1402,8 @@ void test_main(void* p NRUNUSED) { test_encode_trace(); test_encode_txn_event(); test_encode_log_events(); + test_encode_log_forwarding_labels(); + test_encode_log_forwarding_labels_null(); test_encode_php_packages(); test_bad_daemon_fd(); diff --git a/axiom/tests/test_segment.c b/axiom/tests/test_segment.c index 65f137408..1302e1761 100644 --- a/axiom/tests/test_segment.c +++ b/axiom/tests/test_segment.c @@ -1522,7 +1522,7 @@ static void test_segment_discard_not_keep_metrics_while_running(void) { int metric_count; nr_memset(&opts, 0, sizeof(opts)); - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); metric_count = nrm_table_size(txn->scoped_metrics); @@ -1552,7 +1552,7 @@ static void test_segment_discard_keep_metrics(void) { nr_segment_t* E; nr_memset(&opts, 0, sizeof(opts)); - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* Build a mock tree of segments with metrics * @@ -1629,7 +1629,7 @@ static void test_segment_discard_keep_metrics_while_running(void) { nr_segment_t* E; nr_memset(&opts, 0, sizeof(opts)); - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* Build a mock tree of segments with metrics * @@ -1746,7 +1746,7 @@ static void test_segment_discard_keep_metrics_no_exclusive(void) { */ opts.max_segments = 1000; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* Build a mock tree of segments with metrics * @@ -2351,7 +2351,7 @@ static void test_segment_ensure_id(void) { nr_memset(&opts, 0, sizeof(opts)); opts.distributed_tracing_enabled = 1; opts.span_events_enabled = 1; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); segment = nr_segment_start(txn, txn->segment_root, NULL); nr_distributed_trace_set_sampled(txn->distributed_trace, true); @@ -2548,7 +2548,7 @@ static void test_segment_to_span_event(void) { nr_memset(&opts, 0, sizeof(opts)); opts.distributed_tracing_enabled = 1; opts.span_events_enabled = 1; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); segment = nr_segment_start(txn, txn->segment_root, NULL); nr_distributed_trace_set_sampled(txn->distributed_trace, true); nr_txn_set_string_attribute(txn, nr_txn_request_method, "GET"); @@ -2887,7 +2887,7 @@ static void test_segment_record_exception(void) { nr_memset(&opts, 0, sizeof(opts)); opts.distributed_tracing_enabled = 1; opts.span_events_enabled = 1; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); segment = nr_segment_start(txn, NULL, NULL); nr_distributed_trace_set_sampled(txn->distributed_trace, true); txn->options.allow_raw_exception_messages = 1; diff --git a/axiom/tests/test_segment_helpers.h b/axiom/tests/test_segment_helpers.h index 9ff7f54f7..900ab235c 100644 --- a/axiom/tests/test_segment_helpers.h +++ b/axiom/tests/test_segment_helpers.h @@ -246,7 +246,7 @@ static NRUNUSED nrtxn_t* new_txn(int background) { .span_events = NR_DEFAULT_SPAN_EVENTS_MAX_SAMPLES_STORED, }; - txn = nr_txn_begin(&app, &nr_txn_test_options, 0); + txn = nr_txn_begin(&app, &nr_txn_test_options, NULL, NULL); if (0 == txn) { return txn; } diff --git a/axiom/tests/test_txn.c b/axiom/tests/test_txn.c index 5dc68deae..adac091d2 100644 --- a/axiom/tests/test_txn.c +++ b/axiom/tests/test_txn.c @@ -1604,7 +1604,7 @@ static void test_default_trace_id(void) { app.state = NR_APP_OK; nr_memset(&opts, 0, sizeof(opts)); - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); txnid = nr_txn_get_guid(txn); tlib_fail_if_null("txnid", txnid); @@ -1625,7 +1625,7 @@ static void test_root_segment_priority(void) { app.state = NR_APP_OK; nr_memset(&opts, 0, sizeof(opts)); - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); tlib_fail_if_null("txn", txn); tlib_fail_if_null("root segment", txn->segment_root); @@ -1651,21 +1651,21 @@ static void test_begin_bad_params(void) { app.state = NR_APP_OK; nr_memset(&opts, 0, sizeof(opts)); - txn = nr_txn_begin(0, 0, config); + txn = nr_txn_begin(0, 0, config, NULL); tlib_pass_if_true("null params", 0 == txn, "txn=%p", txn); - txn = nr_txn_begin(0, &opts, config); + txn = nr_txn_begin(0, &opts, config, NULL); tlib_pass_if_true("null app", 0 == txn, "txn=%p", txn); app.state = NR_APP_INVALID; - txn = nr_txn_begin(&app, &opts, config); + txn = nr_txn_begin(&app, &opts, config, NULL); tlib_pass_if_true("invalid app", 0 == txn, "txn=%p", txn); app.state = NR_APP_OK; - txn = nr_txn_begin(&app, NULL, config); + txn = nr_txn_begin(&app, NULL, config, NULL); tlib_pass_if_true("NULL options", 0 == txn, "txn=%p", txn); - txn = nr_txn_begin(&app, &opts, config); + txn = nr_txn_begin(&app, &opts, config, NULL); tlib_pass_if_true("tests valid", 0 != txn, "txn=%p", txn); nr_txn_destroy(&txn); @@ -1755,7 +1755,7 @@ static void test_begin(void) { correct.cross_process_enabled = 22; correct.max_segments = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); test_created_txn("options provided", rv, &correct); json = nr_attributes_debug_json(rv->attributes); tlib_pass_if_str_equal("display host attribute created", json, @@ -1772,7 +1772,7 @@ static void test_begin(void) { correct.tt_threshold = 12; correct.tt_is_apdex_f = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); test_created_txn("tt is not apdex_f", rv, &correct); nr_txn_destroy(&rv); @@ -1783,7 +1783,7 @@ static void test_begin(void) { correct.tt_enabled = 0; correct.ep_enabled = 0; correct.tt_slowsql = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); test_created_txn("app turns off traces", rv, &correct); nr_txn_destroy(&rv); @@ -1792,7 +1792,7 @@ static void test_begin(void) { */ nro_set_hash_boolean(app->connect_reply, "collect_errors", 0); correct.err_enabled = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); test_created_txn("app turns off errors", rv, &correct); nr_txn_destroy(&rv); @@ -1801,7 +1801,7 @@ static void test_begin(void) { */ nro_set_hash_boolean(app->connect_reply, "collect_analytics_events", 0); correct.analytics_events_enabled = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); test_created_txn("app turns off analytics events", rv, &correct); nr_txn_destroy(&rv); @@ -1810,7 +1810,7 @@ static void test_begin(void) { */ nro_set_hash_boolean(app->connect_reply, "collect_custom_events", 0); correct.custom_events_enabled = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); test_created_txn("app turns off custom events", rv, &correct); nr_txn_destroy(&rv); @@ -1819,7 +1819,7 @@ static void test_begin(void) { */ nro_set_hash_boolean(app->connect_reply, "collect_error_events", 0); correct.error_events_enabled = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); test_created_txn("app turns off error events", rv, &correct); nr_txn_destroy(&rv); @@ -1828,7 +1828,7 @@ static void test_begin(void) { */ nro_set_hash_boolean(app->connect_reply, "collect_span_events", 0); correct.span_events_enabled = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); test_created_txn("app turns off span events", rv, &correct); nr_txn_destroy(&rv); @@ -1836,7 +1836,7 @@ static void test_begin(void) { * Test : High security off */ app->info.high_security = 0; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); tlib_pass_if_int_equal("high security off", 0, rv->high_security); nr_txn_destroy(&rv); @@ -1844,7 +1844,7 @@ static void test_begin(void) { * Test : High Security On */ app->info.high_security = 1; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); tlib_pass_if_int_equal("app local high security copied to txn", 1, rv->high_security); nr_txn_destroy(&rv); @@ -1853,7 +1853,7 @@ static void test_begin(void) { /* * Test : CPU usage populated on create */ - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); /* * It is tempting to think that the process has already * incurred some user and system time at the start. @@ -1873,7 +1873,7 @@ static void test_begin(void) { /* * Test : App name is populated in the new transaction. */ - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); tlib_pass_if_str_equal("primary_app_name", "App Name", rv->primary_app_name); nr_txn_destroy(&rv); @@ -1883,7 +1883,7 @@ static void test_begin(void) { nro_set_hash_string(app->connect_reply, "trusted_account_key", "1"); nro_set_hash_string(app->connect_reply, "primary_application_id", "2"); nro_set_hash_string(app->connect_reply, "account_id", "3"); - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); tlib_pass_if_str_equal( "connect response", "1", nr_distributed_trace_get_trusted_key(rv->distributed_trace)); @@ -1904,7 +1904,7 @@ static void test_begin(void) { .error_events = 0, .span_events = 0, }; - rv = nr_txn_begin(app, opts, attribute_config); + rv = nr_txn_begin(app, opts, attribute_config, NULL); tlib_pass_if_int_equal("analytics_events_enabled", 0, rv->options.analytics_events_enabled); tlib_pass_if_int_equal("custom_events_enabled", 0, @@ -1954,7 +1954,7 @@ static nrtxn_t* create_full_txn_and_reset(nrapp_t* app) { /* * Create the Transaction */ - txn = nr_txn_begin(app, &nr_txn_test_options, 0); + txn = nr_txn_begin(app, &nr_txn_test_options, 0, NULL); tlib_pass_if_not_null("nr_txn_begin succeeds", txn); if (0 == txn) { return txn; @@ -3730,7 +3730,7 @@ static nrtxn_t* test_namer_with_app_and_expressions_and_return_txn( nr_memset(&simple_test_app, 0, sizeof(simple_test_app)); simple_test_app.state = NR_APP_OK; - txn = nr_txn_begin(&simple_test_app, &nr_txn_test_options, NULL); + txn = nr_txn_begin(&simple_test_app, &nr_txn_test_options, NULL, NULL); tlib_pass_if_not_null("nr_txn_begin succeeds", txn); nr_txn_add_match_files(txn, test_pattern); @@ -3766,7 +3766,7 @@ static void test_namer(void) { nr_txn_match_file(NULL, NULL); nr_txn_add_file_naming_pattern(NULL, ""); - txn = nr_txn_begin(&simple_test_app, &nr_txn_test_options, NULL); + txn = nr_txn_begin(&simple_test_app, &nr_txn_test_options, NULL, NULL); nr_txn_add_file_naming_pattern(txn, NULL); nr_txn_add_file_naming_pattern(txn, ""); @@ -3827,7 +3827,7 @@ static void test_namer(void) { tlib_pass_if_str_equal("Match freezes transaction", "pkg/.", txn->path); nr_txn_destroy(&txn); - txn = nr_txn_begin(&simple_test_app, &nr_txn_test_options, NULL); + txn = nr_txn_begin(&simple_test_app, &nr_txn_test_options, NULL, NULL); txn->status.recording = 0; nr_txn_add_match_files(txn, "pattern"); @@ -4362,7 +4362,7 @@ static void test_txn_cat_map_cross_agent_testcase_fn(nrapp_t* app, nr_free(app->entity_name); app->entity_name = nr_strdup(appname); - txn = nr_txn_begin(app, &nr_txn_test_options, NULL); + txn = nr_txn_begin(app, &nr_txn_test_options, NULL, NULL); test_pass_if_true_file_line("tests valid", NULL != txn, file, line, "txn=%p", txn); if (NULL == txn) { @@ -4646,7 +4646,7 @@ static void test_txn_dt_cross_agent_testcase(nrapp_t* app, trusted_account_key); nro_set_hash_string(app->connect_reply, "account_id", account_id); - txn = nr_txn_begin(app, &nr_txn_test_options, NULL); + txn = nr_txn_begin(app, &nr_txn_test_options, NULL, NULL); tlib_pass_if_not_null(testname, txn); if (NULL == txn) { @@ -4908,7 +4908,7 @@ static void test_txn_trace_context_cross_agent_testcase(nrapp_t* app, trusted_account_key); nro_set_hash_string(app->connect_reply, "account_id", account_id); - txn = nr_txn_begin(app, &nr_txn_test_options, NULL); + txn = nr_txn_begin(app, &nr_txn_test_options, NULL, NULL); tlib_pass_if_not_null(testname, txn); if (NULL == txn) { @@ -5497,7 +5497,7 @@ static void test_custom_parameters_segment(void) { /* * Setup and start txn and custom segment. */ - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); txn->options.span_events_enabled = true; txn->options.distributed_tracing_enabled = true; nr_distributed_trace_set_sampled(txn->distributed_trace, true); @@ -7475,7 +7475,7 @@ static void test_force_current_segment(void) { /* * Setup and start txn. */ - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* * segment_1 is the current segment in the default context. @@ -7573,7 +7573,7 @@ static void test_get_current_trace_id(void) { nr_memset(&opts, 0, sizeof(opts)); app.state = NR_APP_OK; opts.distributed_tracing_enabled = 1; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* * Test : Bad parameters @@ -7613,7 +7613,7 @@ static void test_get_current_trace_id(void) { app.state = NR_APP_OK; opts.distributed_tracing_enabled = 1; opts.distributed_tracing_pad_trace_id = true; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* * Test : trace id != txn_id with trace_id padding enabled */ @@ -7643,7 +7643,7 @@ static void test_get_current_span_id(void) { nr_memset(&opts, 0, sizeof(opts)); app.state = NR_APP_OK; opts.distributed_tracing_enabled = 1; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); segment = nr_segment_start(txn, txn->segment_root, NULL); nr_distributed_trace_set_sampled(txn->distributed_trace, true); nr_txn_set_current_segment(txn, segment); @@ -7696,7 +7696,7 @@ static void test_finalize_parent_stacks(void) { nr_memset(&app, 0, sizeof(app)); nr_memset(&opts, 0, sizeof(opts)); app.state = NR_APP_OK; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* * Don't crash on a NULL stack @@ -7751,7 +7751,7 @@ static void test_max_segments_no_limit(void) { p->txns_app = &app; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* * A segment heap must not be initialized. @@ -7808,7 +7808,7 @@ static void test_max_segments_count_tree(void) { p->txns_app = &app; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* * A segment heap must be initialized. @@ -7858,7 +7858,7 @@ static void test_max_segments(void) { p->txns_app = &app; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* * A segment heap must be initialized. @@ -7937,7 +7937,7 @@ static void test_allocated_segment_count(void) { /* * Initial state. */ - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); tlib_pass_if_size_t_equal("1 on initialized txn", 1, nr_txn_allocated_segment_count(txn)); @@ -7981,7 +7981,7 @@ static void test_allocate_segment(void) { */ tlib_pass_if_null("NULL segment on NULL txn", nr_txn_allocate_segment(NULL)); - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); /* * Allocate an uninitialized segment. @@ -8016,7 +8016,7 @@ static void test_span_queue(void) { /* * Test : Trace observer host with a zero batch size. */ - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); tlib_pass_if_null( "an app with a trace observer and a zero batch size should not create a " "span queue", @@ -8027,7 +8027,7 @@ static void test_span_queue(void) { * Test : Trace observer host with a non-zero batch size. */ opts.span_queue_batch_size = 1000; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); tlib_pass_if_not_null( "an app with a trace observer and a non-zero batch size should create a " @@ -8069,7 +8069,7 @@ static void test_segment_record_error(void) { nr_memset(&opts, 0, sizeof(opts)); opts.distributed_tracing_enabled = 1; opts.span_events_enabled = 1; - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); segment = nr_segment_start(txn, NULL, NULL); nr_distributed_trace_set_sampled(txn->distributed_trace, true); txn->options.allow_raw_exception_messages = 1; @@ -8188,7 +8188,7 @@ static nrtxn_t* new_txn_for_record_log_event_test(char* entity_name) { opts.distributed_tracing_enabled = 1; /* for linking meta data */ /* Start txn and segment */ - txn = nr_txn_begin(&app, &opts, NULL); + txn = nr_txn_begin(&app, &opts, NULL, NULL); segment = nr_segment_start(txn, txn->segment_root, NULL); nr_distributed_trace_set_sampled(txn->distributed_trace, true); nr_txn_set_current_segment(txn, segment); @@ -8613,6 +8613,11 @@ static void test_txn_log_configuration(void) { txn->options.log_decorating_enabled = true; tlib_pass_if_false(__func__, nr_txn_log_forwarding_enabled(txn), "global=1, high_security=1, forwarding=1, samples=1, decorating=1 -> forwarding off"); tlib_pass_if_true(__func__, nr_txn_log_decorating_enabled(txn), "global=1, high_security=1, forwarding=1, samples=1, decorating=1 -> decorating on"); + + // if log forwarding is disabled then log label forwarding should be disabled + txn->options.log_forwarding_enabled = false; + txn->options.log_forwarding_labels_enabled = true; + tlib_pass_if_false(__func__, nr_txn_log_forwarding_labels_enabled(txn), "forwarding=0, labels=1 -> off"); // clang-format on } diff --git a/daemon/go.mod b/daemon/go.mod index b76b8360f..d5e113a57 100644 --- a/daemon/go.mod +++ b/daemon/go.mod @@ -1,19 +1,18 @@ module github.com/newrelic/newrelic-php-agent/daemon -go 1.21 - +go 1.23.0 toolchain go1.23.6 require ( github.com/golang/protobuf v1.5.3 github.com/google/flatbuffers v23.5.26+incompatible - golang.org/x/net v0.33.0 + golang.org/x/net v0.36.0 google.golang.org/grpc v1.61.0 google.golang.org/protobuf v1.33.0 ) require ( - golang.org/x/sys v0.28.0 // indirect - golang.org/x/text v0.21.0 // indirect + golang.org/x/sys v0.30.0 // indirect + golang.org/x/text v0.22.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect ) diff --git a/daemon/go.sum b/daemon/go.sum index 8ede3e252..6c632bed6 100644 --- a/daemon/go.sum +++ b/daemon/go.sum @@ -6,12 +6,12 @@ github.com/google/flatbuffers v23.5.26+incompatible/go.mod h1:1AeVuKshWv4vARoZat github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= -golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= -golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= -golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= -golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= +golang.org/x/net v0.36.0 h1:vWF2fRbw4qslQsQzgFqZff+BItCvGFQqKzKIzx1rmoA= +golang.org/x/net v0.36.0/go.mod h1:bFmbeoIPfrw4sMHNhb4J9f6+tPziuGjq7Jk/38fxi1I= +golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc= +golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM= +golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 h1:Jyp0Hsi0bmHXG6k9eATXoYtjd6e2UzZ1SCn/wIupY14= google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17/go.mod h1:oQ5rr10WTTMvP4A36n8JpR1OrO1BEiV4f78CneXZxkA= diff --git a/daemon/internal/newrelic/commands.go b/daemon/internal/newrelic/commands.go index 109cf5298..52a78e599 100644 --- a/daemon/internal/newrelic/commands.go +++ b/daemon/internal/newrelic/commands.go @@ -167,6 +167,10 @@ func (t FlatTxn) AggregateInto(h *Harvest) { } } + if n := txn.LogForwardingLabels(nil); n != nil { + h.LogEvents.SetLogForwardingLabels(n.Data()) + } + if n := txn.PhpPackages(nil); n != nil { h.PhpPackages.AddPhpPackagesFromData(n.Data()) } diff --git a/daemon/internal/newrelic/log_events.go b/daemon/internal/newrelic/log_events.go index f59310cde..6f18c2fdb 100644 --- a/daemon/internal/newrelic/log_events.go +++ b/daemon/internal/newrelic/log_events.go @@ -7,18 +7,28 @@ package newrelic import ( "bytes" + "encoding/json" "time" + + "github.com/newrelic/newrelic-php-agent/daemon/internal/newrelic/log" ) // LogEvents is a wrapper over AnalyticsEvents created for additional type // safety and proper FailedHarvest behavior. type LogEvents struct { *analyticsEvents + LogForwardingLabels []LogForwardingLabel +} + +// define a struct to represent the format of labels as sent by agent +type LogForwardingLabel struct { + LabelType string `json:"label_type"` + LabelValue string `json:"label_value"` } // NewLogEvents returns a new Log event reservoir with capacity max. func NewLogEvents(max int) *LogEvents { - return &LogEvents{newAnalyticsEvents(max)} + return &LogEvents{analyticsEvents: newAnalyticsEvents(max)} } // AddEventFromData observes the occurrence of an Log event. If the @@ -28,6 +38,26 @@ func (events *LogEvents) AddEventFromData(data []byte, priority SamplingPriority events.AddEvent(AnalyticsEvent{data: data, priority: priority}) } +// AddLogForwardingLabels accepts JSON in the format used to send labels +// to the collector. This is used to add labels to the log events. The +// labels are added to the log events when the events are sent to the +// collector. +func (events *LogEvents) SetLogForwardingLabels(data []byte) { + err := json.Unmarshal(data, &events.LogForwardingLabels) + if nil != err { + log.Errorf("failed to unmarshal log labels json", err) + } + + // verify valid labels + for idx := range events.LogForwardingLabels { + if len(events.LogForwardingLabels[idx].LabelType) == 0 || len(events.LogForwardingLabels[idx].LabelValue) == 0 { + log.Errorf("invalid log label: %s log value: %s", events.LogForwardingLabels[idx].LabelType, events.LogForwardingLabels[idx].LabelValue) + events.LogForwardingLabels = nil + break + } + } +} + // FailedHarvest is a callback invoked by the processor when an // attempt to deliver the contents of events to the collector // fails. After a failed delivery attempt, events is merged into @@ -46,10 +76,28 @@ func (events *LogEvents) CollectorJSON(id AgentRunID) ([]byte, error) { estimate := len(es) * 128 buf.Grow(estimate) buf.WriteString(`[{` + - `"common": {"attributes": {}},` + + `"common": {"attributes": `) + nwrit := 0 + labelMap := make(map[string]string) + for _, label := range events.LogForwardingLabels { + // safegaurd against invalid labels + if len(label.LabelType) != 0 && len(label.LabelValue) != 0 { + labelMap["tags."+label.LabelType] = label.LabelValue + } + } + + j, e := json.Marshal(labelMap) + if e != nil { + log.Errorf("failed to marshal log label: %s", e) + buf.WriteString("{}") + } else { + buf.Write(j) + } + + buf.WriteString(`},` + `"logs": [`) - nwrit := 0 + nwrit = 0 for i := 0; i < len(es); i++ { // if obviously incomplete skip if len(es[i].data) < 4 { diff --git a/daemon/internal/newrelic/log_events_test.go b/daemon/internal/newrelic/log_events_test.go new file mode 100644 index 000000000..0f98e3132 --- /dev/null +++ b/daemon/internal/newrelic/log_events_test.go @@ -0,0 +1,137 @@ +// +// Copyright 2020 New Relic Corporation. All rights reserved. +// SPDX-License-Identifier: Apache-2.0 +// + +package newrelic + +import ( + "testing" +) + +type LogForwardingLabelsTestCase struct { + name string + labels string + expected string +} + +var ( + logForwardingLabelsTestCases = []LogForwardingLabelsTestCase{ + LogForwardingLabelsTestCase{name: "Valid JSON", + labels: `[{"label_type":"type1","label_value":"value1"},{"label_type":"type2","label_value":"value2"}]`, + expected: `{"tags.type1":"value1","tags.type2":"value2"}`}, + LogForwardingLabelsTestCase{name: "Invalid JSON", labels: `NOT VALID JSON`, expected: `{}`}, + LogForwardingLabelsTestCase{name: "Empty labels 1", labels: ``, expected: `{}`}, + LogForwardingLabelsTestCase{name: "Empty labels 2", labels: `[]`, expected: `{}`}, + LogForwardingLabelsTestCase{name: "Empty labels 3", labels: `[{}]`, expected: `{}`}, + LogForwardingLabelsTestCase{name: "Invalid keys", labels: `[{"label_tipe":"type1","label_valyue":"value1"}]`, expected: `{}`}, + LogForwardingLabelsTestCase{name: "Space in value", labels: `[{"label_type":"type1","label_value":"value 1"}]`, expected: `{"tags.type1":"value 1"}`}, + LogForwardingLabelsTestCase{name: "Space in key", labels: `[{"label_type":"type 1","label_value":"value1"}]`, expected: `{"tags.type 1":"value1"}`}, + LogForwardingLabelsTestCase{name: "Empty value", labels: `[{"label_type":"type1","label_value":""}]`, expected: `{}`}, + LogForwardingLabelsTestCase{name: "Empty key", labels: `[{"label_type":"","label_value":"value1"}]`, expected: `{}`}, + } +) + +// LogEvents is a wrapper over AnalyticsEvents created for additional type +// There are already unit tests for AnalyticsEvents in analytics_events_test.go +// These tests will focus on the methods specific to LogEvents + +func TestAddEventFromData(t *testing.T) { + events := NewLogEvents(10) + id := AgentRunID(`12345`) + data := []byte(`{"message":"test log event"}`) + priority := SamplingPriority(0.5) + + events.AddEventFromData(data, priority) + + if events.analyticsEvents.events.Len() != 1 { + t.Errorf("expected 1 event, got %d", events.analyticsEvents.events.Len()) + } + + es := *events.analyticsEvents.events + event := es[0] + + if string(event.data) != string(data) { + t.Errorf("expected event data %s, got %s", string(data), string(event.data)) + } + + if event.priority != priority { + t.Errorf("expected event priority %f, got %f", priority, event.priority) + } + + json, err := events.CollectorJSON(id) + if nil != err { + t.Fatal(err) + } + + expected := `[{"common": {"attributes": {}},"logs": [{"message":"test log event"}]}]` + if string(json) != expected { + t.Errorf("expected JSON %s, got %s", expected, string(json)) + } +} + +func TestSetLogForwardingLabels(t *testing.T) { + + for idx := range logForwardingLabelsTestCases { + testcase := logForwardingLabelsTestCases[idx] + events := NewLogEvents(10) + id := AgentRunID(`12345`) + log_data := []byte(`{"message":"test log event"}`) + label_data := []byte(testcase.labels) + priority := SamplingPriority(0.5) + + events.AddEventFromData(log_data, priority) + events.SetLogForwardingLabels(label_data) + + if events.analyticsEvents.events.Len() != 1 { + t.Errorf("%s: expected 1 event, got %d", testcase.name, events.analyticsEvents.events.Len()) + } + + json, err := events.CollectorJSON(id) + if nil != err { + t.Fatal(err) + } + + expected := `[{"common": {"attributes": ` + testcase.expected + `},` + + `"logs": [{"message":"test log event"}]}]` + if string(json) != expected { + t.Errorf("%s: expected JSON %s, got %s", testcase.name, expected, string(json)) + } + } +} + +func TestSetLogForwardingLabelsNilData(t *testing.T) { + events := NewLogEvents(10) + id := AgentRunID(`12345`) + log_data := []byte(`{"message":"test log event"}`) + priority := SamplingPriority(0.5) + + events.AddEventFromData(log_data, priority) + events.SetLogForwardingLabels(nil) + + if events.analyticsEvents.events.Len() != 1 { + t.Errorf("expected 1 event, got %d", events.analyticsEvents.events.Len()) + } + + es := *events.analyticsEvents.events + event := es[0] + + if string(event.data) != string(log_data) { + t.Errorf("expected event data %s, got %s", string(log_data), string(event.data)) + } + + if event.priority != priority { + t.Errorf("expected event priority %f, got %f", priority, event.priority) + } + + json, err := events.CollectorJSON(id) + if nil != err { + t.Fatal(err) + } + + expected := `[{"common": {"attributes": {}},` + + `"logs": [{"message":"test log event"}]}]` + if string(json) != expected { + t.Errorf("expected JSON %s, got %s", expected, string(json)) + } +} diff --git a/daemon/internal/newrelic/processor_test.go b/daemon/internal/newrelic/processor_test.go index 1c07ea331..105f5d1db 100644 --- a/daemon/internal/newrelic/processor_test.go +++ b/daemon/internal/newrelic/processor_test.go @@ -187,6 +187,7 @@ var ( }) txnLogEventSample = AggregaterIntoFn(func(h *Harvest) { h.LogEvents.AddEventFromData(sampleLogEvent, SamplingPriority(0.8)) + h.LogEvents.SetLogForwardingLabels([]byte(`[{"label_type":"label1","label_value":"value1"}]`)) }) txnPhpPackagesSample = AggregaterIntoFn(func(h *Harvest) { h.PhpPackages.AddPhpPackagesFromData(samplePhpPackages) @@ -382,7 +383,7 @@ func TestProcessorHarvestLogEvents(t *testing.T) { <-m.p.trackProgress // unblock processor after harvest - expected := `[{"common": {"attributes": {}},"logs": [log event test birthday]}]` + expected := `[{"common": {"attributes": {"tags.label1":"value1"}},"logs": [log event test birthday]}]` if string(cp.data) != expected { t.Fatalf("expected: %s \ngot: %s", expected, string(cp.data)) } diff --git a/daemon/internal/newrelic/protocol/Transaction.go b/daemon/internal/newrelic/protocol/Transaction.go index b53972002..f8fd853cf 100644 --- a/daemon/internal/newrelic/protocol/Transaction.go +++ b/daemon/internal/newrelic/protocol/Transaction.go @@ -264,8 +264,21 @@ func (rcv *Transaction) PhpPackages(obj *Event) *Event { return nil } +func (rcv *Transaction) LogForwardingLabels(obj *Event) *Event { + o := flatbuffers.UOffsetT(rcv._tab.Offset(34)) + if o != 0 { + x := rcv._tab.Indirect(o + rcv._tab.Pos) + if obj == nil { + obj = new(Event) + } + obj.Init(rcv._tab.Bytes, x) + return obj + } + return nil +} + func TransactionStart(builder *flatbuffers.Builder) { - builder.StartObject(15) + builder.StartObject(16) } func TransactionAddName(builder *flatbuffers.Builder, name flatbuffers.UOffsetT) { builder.PrependUOffsetTSlot(0, flatbuffers.UOffsetT(name), 0) @@ -333,6 +346,9 @@ func TransactionStartLogEventsVector(builder *flatbuffers.Builder, numElems int) func TransactionAddPhpPackages(builder *flatbuffers.Builder, phpPackages flatbuffers.UOffsetT) { builder.PrependUOffsetTSlot(14, flatbuffers.UOffsetT(phpPackages), 0) } +func TransactionAddLogForwardingLabels(builder *flatbuffers.Builder, logForwardingLabels flatbuffers.UOffsetT) { + builder.PrependUOffsetTSlot(15, flatbuffers.UOffsetT(logForwardingLabels), 0) +} func TransactionEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { return builder.EndObject() } diff --git a/docs/development.md b/docs/development.md index ec42de64d..20b1d72cd 100644 --- a/docs/development.md +++ b/docs/development.md @@ -12,17 +12,14 @@ Currently, the PHP agent has only been developed and compiled on Linux systems. #### Operating Systems - Fully supported for building from source - - Ubuntu 16.04+ - - CentOS/RHEL 7+ -- Supported in binary form only (may require experimentation to build) - - FreeBSD + - Debian/Ubuntu LTS - Alpine Linux - - AWS Linux 2 - - Any Linux with Kernel >=2.6.26 and `glibc` >=2.5 (or `musl libc` >= 1.1) + - CentOS/RHEL 7+ #### Build system dependencies - `build-essential` on Debian systems, `"Development Tools"` group on RHEL systems, equivalent packages on other supported systems for `make`, `cmake`, `gcc`, etc. - `valgrind` is extensively in the test suite +- `protoc-c` (protobuf-c-compiler) is needed to build the agent #### Go @@ -42,6 +39,7 @@ Install the [latest version of Go](https://golang.org/dl/). Typically it's insta - `libxslt` - `openssl` - `pcre` +- `protobuf-c` (`libprotobuf-c-dev` on Debian systems, `protobuf-c-devel` on RHEL systems) - `zlib` #### Application development headers @@ -54,6 +52,7 @@ _(most operating systems package these with `-dev` or `-devel` suffixes)_ - `php` - `postgresql` - `sqlite` +- `protobuf-c` (`libprotobuf-c-dev` on Debian systems, `protobuf-c-devel` on RHEL systems) ### PHP diff --git a/files/Dockerfile b/files/Dockerfile index 2f99740e3..6ad71f4a9 100644 --- a/files/Dockerfile +++ b/files/Dockerfile @@ -44,6 +44,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libmcrypt-dev \ libonig-dev \ libpcre3 libpcre3-dev \ +# 8T protobuf code in axiom depends on libprotobuf-c library + libprotobuf-c-dev \ libreadline-dev \ libssl-dev \ libsqlite3-dev \ @@ -52,6 +54,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ locales \ locales-all \ netcat-openbsd \ +# needed to generate 8T protobuf code in daemon + protobuf-compiler \ +# needed to generate 8T protobuf code in axiom + protobuf-c-compiler \ python3-yaml \ ${PHP_USER_SPECIFIED_PACKAGES} \ zlib1g-dev diff --git a/make/config.mk b/make/config.mk index 8283c9703..5578adb47 100644 --- a/make/config.mk +++ b/make/config.mk @@ -59,10 +59,6 @@ ifneq ($(findstring environment,$(origin PROTOBUF_C_PREFIX)), ) ifeq ($(HAVE_PROTOBUF_C), 0) $(error User provided 'protobuf-c' installation is not valid!) endif -else - ifeq ($(HAVE_PROTOBUF_C), 0) - $(info 'protobuf-c' installation not found, falling back to building from vendor subdir.) - endif endif diff --git a/make/vendor.mk b/make/vendor.mk index fd708870a..32c69288c 100644 --- a/make/vendor.mk +++ b/make/vendor.mk @@ -11,17 +11,8 @@ # It is recommended to use the VENDOR_... variables. # -# We need to find where the project's vendored dependencies live for these -# variables. -ifeq (0,$(HAVE_PROTOBUF_C)) -PROTOBUF_C_PREFIX := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST))))../vendor)/local -endif - -# -# protobuf-c # -# Note that this does not require protobuf, which is a build time dependency -# only. +# protobuf-c: 8T protobuf code from axiom needs protobuf-c library # PROTOBUF_C_CFLAGS := -I$(PROTOBUF_C_PREFIX)/include PROTOBUF_C_LDFLAGS := -L$(PROTOBUF_C_PREFIX)/lib diff --git a/protocol/flatbuffers/protocol.fbs b/protocol/flatbuffers/protocol.fbs index 394a190ce..db81f2e70 100644 --- a/protocol/flatbuffers/protocol.fbs +++ b/protocol/flatbuffers/protocol.fbs @@ -118,7 +118,8 @@ table Transaction { sampling_priority: double; // added in the 8.2 PHP agent release span_events: [Event]; log_events: [Event]; // added in the 10.1 PHP agent release - php_packages: Event; // added in the ??? PHP agent release + php_packages: Event; // added in the 10.17 PHP agent release + log_forwarding_labels: Event; // added in the 11.7 PHP agent release } union MessageBody { App, AppReply, Transaction, SpanBatch } diff --git a/tests/include/monolog2.tar.bz2 b/tests/include/monolog2.tar.bz2 index a1c0578e4..21332f674 100644 Binary files a/tests/include/monolog2.tar.bz2 and b/tests/include/monolog2.tar.bz2 differ diff --git a/tests/include/monolog3.tar.bz2 b/tests/include/monolog3.tar.bz2 index 783c067d6..2cea2a67e 100644 Binary files a/tests/include/monolog3.tar.bz2 and b/tests/include/monolog3.tar.bz2 differ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_disabled.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_disabled.php index 8a15fabe7..3e97252e5 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_disabled.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_disabled.php @@ -89,7 +89,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate.php index 9d8f8fc30..1569670a0 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate.php @@ -114,7 +114,7 @@ "string": "span str" }, { - "code.lineno": 157, + "code.lineno": 158, "code.filepath": "__FILE__", "code.function": "a" } @@ -143,7 +143,8 @@ [{"name":"Supportability/api/add_custom_parameter"}, [5, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate.php5.php index 2ced24f1d..bc69c7127 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate.php5.php @@ -133,7 +133,8 @@ [{"name":"Supportability/api/add_custom_parameter"}, [5, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate_te_off.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate_te_off.php index 682057acb..6e7188a94 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate_te_off.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate_te_off.php @@ -88,7 +88,7 @@ "string": "span str" }, { - "code.lineno": 131, + "code.lineno": 132, "code.filepath": "__FILE__", "code.function": "a" } @@ -117,7 +117,8 @@ [{"name":"Supportability/api/add_custom_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate_te_off.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate_te_off.php5.php index 6726eda98..264c78480 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate_te_off.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_duplicate_te_off.php5.php @@ -107,7 +107,8 @@ [{"name":"Supportability/api/add_custom_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter.php index 9e6b356d7..85cdcdb60 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter.php @@ -76,7 +76,7 @@ "double": 1.50000 }, { - "code.lineno": 118, + "code.lineno": 119, "code.filepath": "__FILE__", "code.function": "a" } @@ -104,7 +104,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter.php5.php index 2e97dc5f2..9df95dc9a 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter.php5.php @@ -94,7 +94,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter_logging_off.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter_logging_off.php index 40ca3c916..dec1e817d 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter_logging_off.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter_logging_off.php @@ -79,7 +79,7 @@ "double": 1.50000 }, { - "code.lineno": 121, + "code.lineno": 122, "code.filepath": "__FILE__", "code.function": "a" } @@ -105,9 +105,10 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/add_custom_tracer"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter_logging_off.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter_logging_off.php5.php index 0f4804782..50ec0d519 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter_logging_off.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_filter_logging_off.php5.php @@ -95,9 +95,10 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/add_custom_tracer"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key.php index 342c3f15e..e63ebd233 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key.php @@ -76,7 +76,7 @@ "int": 7 }, { - "code.lineno": 118, + "code.lineno": 119, "code.filepath": "__FILE__", "code.function": "a" } @@ -104,7 +104,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key.php5.php index d181a4691..89b899f62 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key.php5.php @@ -94,7 +94,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key_te_off.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key_te_off.php index 544ff70e7..2130f4b77 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key_te_off.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key_te_off.php @@ -81,7 +81,7 @@ "int": 7 }, { - "code.lineno": 123, + "code.lineno": 124, "code.filepath": "__FILE__", "code.function": "a" } @@ -109,7 +109,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key_te_off.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key_te_off.php5.php index c3060a4dd..773d82280 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key_te_off.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_key_te_off.php5.php @@ -99,7 +99,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_parameters.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_parameters.php index bef117bfd..46e3d5918 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_parameters.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_parameters.php @@ -198,7 +198,7 @@ "1": 1 }, { - "code.lineno": 240, + "code.lineno": 241, "code.filepath": "__FILE__", "code.function": "a" } @@ -226,7 +226,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [64, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_parameters.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_parameters.php5.php index 71d1cca08..bfa4ad71d 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_parameters.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_parameters.php5.php @@ -216,7 +216,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [64, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value.php index 658402980..5b57ca876 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value.php @@ -76,7 +76,7 @@ "string": "012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234" }, { - "code.lineno": 118, + "code.lineno": 119, "code.filepath": "__FILE__", "code.function": "a" } @@ -104,7 +104,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value.php5.php index f1896cd76..3fa6a5756 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value.php5.php @@ -94,7 +94,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value_te_off.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value_te_off.php index 21bfa0911..a2c2589d4 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value_te_off.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value_te_off.php @@ -86,7 +86,7 @@ "string": "012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234" }, { - "code.lineno": 128, + "code.lineno": 129, "code.filepath": "__FILE__", "code.function": "a" } @@ -114,7 +114,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value_te_off.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value_te_off.php5.php index fe1b596fc..c4b08d4d1 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value_te_off.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_max_value_te_off.php5.php @@ -104,7 +104,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters.php index 040bf7d00..8d45c615a 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters.php @@ -198,7 +198,7 @@ "1": 1 }, { - "code.lineno": 240, + "code.lineno": 241, "code.filepath": "__FILE__", "code.function": "a" } @@ -226,7 +226,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [65, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters.php5.php index 0e2cf9f14..198a51736 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters.php5.php @@ -216,7 +216,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [65, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off.php index 0aa959429..220568415 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off.php @@ -204,7 +204,7 @@ "1": 1 }, { - "code.lineno": 246, + "code.lineno": 247, "code.filepath": "__FILE__", "code.function": "a" } @@ -232,7 +232,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [65, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off.php5.php index a9837b59c..33323e4b7 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off.php5.php @@ -222,7 +222,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [65, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off_logging_off.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off_logging_off.php index ae622e252..309ecdf49 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off_logging_off.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off_logging_off.php @@ -207,7 +207,7 @@ "1": 1 }, { - "code.lineno": 249, + "code.lineno": 250, "code.filepath": "__FILE__", "code.function": "a" } @@ -235,7 +235,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [65, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off_logging_off.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off_logging_off.php5.php index 4489ff0fa..fe88c8585 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off_logging_off.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_parameters_te_off_logging_off.php5.php @@ -225,7 +225,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [65, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te.php index 8096885ba..cc97dad67 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te.php @@ -324,7 +324,7 @@ "35": 35 }, { - "code.lineno": 367, + "code.lineno": 368, "code.filepath": "__FILE__", "code.function": "a" } @@ -353,7 +353,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [34, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te.php5.php index 15625a351..282cb1a27 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te.php5.php @@ -343,7 +343,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [34, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te_te_off.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te_te_off.php index 851350df5..4792e60c8 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te_te_off.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te_te_off.php @@ -238,7 +238,7 @@ "35": 35 }, { - "code.lineno": 281, + "code.lineno": 282, "code.filepath": "__FILE__", "code.function": "a" } @@ -267,7 +267,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [34, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te_te_off.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te_te_off.php5.php index ed843a542..4fcce5000 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te_te_off.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_maxplus_span_and_te_te_off.php5.php @@ -257,7 +257,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [34, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_overwrite.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_overwrite.php index 605734190..10d64e5c1 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_overwrite.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_overwrite.php @@ -76,7 +76,7 @@ "bool": false }, { - "code.lineno": 119, + "code.lineno": 120, "code.filepath": "__FILE__", "code.function": "a" } @@ -105,7 +105,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [2, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_overwrite.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_overwrite.php5.php index 2603a0908..f51aef043 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_overwrite.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_overwrite.php5.php @@ -95,7 +95,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [2, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_te_off.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_te_off.php index 104d198ea..af2923b3b 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_te_off.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_te_off.php @@ -78,7 +78,7 @@ "string": "str" }, { - "code.lineno": 120, + "code.lineno": 121, "code.filepath": "__FILE__", "code.function": "a" } @@ -106,7 +106,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_te_off.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_te_off.php5.php index 95fc61f19..ea0d40f65 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_te_off.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_te_off.php5.php @@ -96,7 +96,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_types.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_types.php index dc91ae467..778f22b85 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_types.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_types.php @@ -77,7 +77,7 @@ "string": "str" }, { - "code.lineno": 119, + "code.lineno": 120, "code.filepath": "__FILE__", "code.function": "a" } @@ -105,7 +105,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_types.php5.php b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_types.php5.php index e26ea6bc3..f85038a34 100644 --- a/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_types.php5.php +++ b/tests/integration/api/add_custom_span_parameter/test_span_event_parameter_types.php5.php @@ -95,7 +95,8 @@ [{"name":"Supportability/api/add_custom_span_parameter"}, [4, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_tracer/test_happy.php b/tests/integration/api/add_custom_tracer/test_happy.php index ba65a7aed..4ecab82cb 100644 --- a/tests/integration/api/add_custom_tracer/test_happy.php +++ b/tests/integration/api/add_custom_tracer/test_happy.php @@ -37,7 +37,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_tracer/test_not_user_function.php b/tests/integration/api/add_custom_tracer/test_not_user_function.php index aa6d08324..9853477e0 100644 --- a/tests/integration/api/add_custom_tracer/test_not_user_function.php +++ b/tests/integration/api/add_custom_tracer/test_not_user_function.php @@ -26,7 +26,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/add_custom_tracer/test_short_segments.php b/tests/integration/api/add_custom_tracer/test_short_segments.php index fde7bcee3..d01a8c733 100644 --- a/tests/integration/api/add_custom_tracer/test_short_segments.php +++ b/tests/integration/api/add_custom_tracer/test_short_segments.php @@ -76,7 +76,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/custom_metric/test_bad_input.php b/tests/integration/api/custom_metric/test_bad_input.php index 60780c548..40c00c053 100644 --- a/tests/integration/api/custom_metric/test_bad_input.php +++ b/tests/integration/api/custom_metric/test_bad_input.php @@ -44,7 +44,8 @@ [{"name":"Supportability/api/custom_metric"}, [7, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/custom_metric/test_bad_input.php8.php b/tests/integration/api/custom_metric/test_bad_input.php8.php index 0fda2de37..839a500bd 100644 --- a/tests/integration/api/custom_metric/test_bad_input.php8.php +++ b/tests/integration/api/custom_metric/test_bad_input.php8.php @@ -44,7 +44,8 @@ [{"name":"Supportability/api/custom_metric"}, [7, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/custom_metric/test_happy.php b/tests/integration/api/custom_metric/test_happy.php index 02413bd60..bc7cc0991 100644 --- a/tests/integration/api/custom_metric/test_happy.php +++ b/tests/integration/api/custom_metric/test_happy.php @@ -35,7 +35,8 @@ [{"name":"Supportability/api/custom_metric"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/custom_metric/test_happy_logging_off.php b/tests/integration/api/custom_metric/test_happy_logging_off.php index 8b90ccc42..0daf910ca 100644 --- a/tests/integration/api/custom_metric/test_happy_logging_off.php +++ b/tests/integration/api/custom_metric/test_happy_logging_off.php @@ -38,7 +38,8 @@ [{"name":"Supportability/api/custom_metric"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/datastore/test_all_parameters_no_children.php b/tests/integration/api/datastore/test_all_parameters_no_children.php index 5dfc19488..c226ce3c0 100644 --- a/tests/integration/api/datastore/test_all_parameters_no_children.php +++ b/tests/integration/api/datastore/test_all_parameters_no_children.php @@ -39,7 +39,8 @@ [{"name":"Supportability/api/record_datastore_segment"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/datastore/test_all_parameters_nosql.php b/tests/integration/api/datastore/test_all_parameters_nosql.php index f318b31db..cfccc66d0 100644 --- a/tests/integration/api/datastore/test_all_parameters_nosql.php +++ b/tests/integration/api/datastore/test_all_parameters_nosql.php @@ -38,7 +38,8 @@ [{"name":"Supportability/api/record_datastore_segment"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/datastore/test_all_parameters_sql_no_query.php b/tests/integration/api/datastore/test_all_parameters_sql_no_query.php index 897e877e6..a0489995c 100644 --- a/tests/integration/api/datastore/test_all_parameters_sql_no_query.php +++ b/tests/integration/api/datastore/test_all_parameters_sql_no_query.php @@ -39,7 +39,8 @@ [{"name":"Supportability/api/record_datastore_segment"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/datastore/test_all_parameters_sql_obfuscated.php b/tests/integration/api/datastore/test_all_parameters_sql_obfuscated.php index 735d04364..20e757732 100644 --- a/tests/integration/api/datastore/test_all_parameters_sql_obfuscated.php +++ b/tests/integration/api/datastore/test_all_parameters_sql_obfuscated.php @@ -39,7 +39,8 @@ [{"name":"Supportability/api/record_datastore_segment"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/datastore/test_all_parameters_sql_obfuscated_logging_off.php b/tests/integration/api/datastore/test_all_parameters_sql_obfuscated_logging_off.php index cd8da7672..42d5e8617 100644 --- a/tests/integration/api/datastore/test_all_parameters_sql_obfuscated_logging_off.php +++ b/tests/integration/api/datastore/test_all_parameters_sql_obfuscated_logging_off.php @@ -42,7 +42,8 @@ [{"name":"Supportability/api/record_datastore_segment"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/datastore/test_all_parameters_sql_raw.php b/tests/integration/api/datastore/test_all_parameters_sql_raw.php index 17ead98f8..26de77cd0 100644 --- a/tests/integration/api/datastore/test_all_parameters_sql_raw.php +++ b/tests/integration/api/datastore/test_all_parameters_sql_raw.php @@ -39,7 +39,8 @@ [{"name":"Supportability/api/record_datastore_segment"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/datastore/test_basic.php b/tests/integration/api/datastore/test_basic.php index 6cf6eab22..ad458613c 100644 --- a/tests/integration/api/datastore/test_basic.php +++ b/tests/integration/api/datastore/test_basic.php @@ -38,7 +38,8 @@ [{"name":"Supportability/api/record_datastore_segment"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_bad_callback.php b/tests/integration/api/error_group_callback/test_error_group_callback_bad_callback.php index ef04b1766..5d1b89498 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_bad_callback.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_bad_callback.php @@ -46,7 +46,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_bad_callback.php7.php b/tests/integration/api/error_group_callback/test_error_group_callback_bad_callback.php7.php index 2b46375fd..5e570fec0 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_bad_callback.php7.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_bad_callback.php7.php @@ -43,7 +43,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_bad_params.php b/tests/integration/api/error_group_callback/test_error_group_callback_bad_params.php index c07fc9846..4ac274748 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_bad_params.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_bad_params.php @@ -36,7 +36,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_bad_return_null.php b/tests/integration/api/error_group_callback/test_error_group_callback_bad_return_null.php index 4b8e1cb70..841947633 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_bad_return_null.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_bad_return_null.php @@ -45,7 +45,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_bad_return_num.php b/tests/integration/api/error_group_callback/test_error_group_callback_bad_return_num.php index 2245f578a..dd559076e 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_bad_return_num.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_bad_return_num.php @@ -45,7 +45,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_clobber.php b/tests/integration/api/error_group_callback/test_error_group_callback_clobber.php index f6f1100ad..786c8f70d 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_clobber.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_clobber.php @@ -44,7 +44,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [2, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_empty_callback.php b/tests/integration/api/error_group_callback/test_error_group_callback_empty_callback.php index 3fe8ec488..49b6bce01 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_empty_callback.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_empty_callback.php @@ -36,7 +36,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_error_non_web.php b/tests/integration/api/error_group_callback/test_error_group_callback_error_non_web.php index 6e6f8624e..1a99a2b06 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_error_non_web.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_error_non_web.php @@ -42,7 +42,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_error_web.php b/tests/integration/api/error_group_callback/test_error_group_callback_error_web.php index 3b82e16f9..650df0f7a 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_error_web.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_error_web.php @@ -59,7 +59,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_error_web.php84.php b/tests/integration/api/error_group_callback/test_error_group_callback_error_web.php84.php index e740c7613..642d94e9e 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_error_web.php84.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_error_web.php84.php @@ -57,7 +57,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_exception_non_web.php b/tests/integration/api/error_group_callback/test_error_group_callback_exception_non_web.php index 635bfd80c..811b5a43a 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_exception_non_web.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_exception_non_web.php @@ -43,7 +43,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_exception_web.php b/tests/integration/api/error_group_callback/test_error_group_callback_exception_web.php index 21651b710..519b04b35 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_exception_web.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_exception_web.php @@ -50,7 +50,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/error_group_callback/test_error_group_callback_max_string_len.php b/tests/integration/api/error_group_callback/test_error_group_callback_max_string_len.php index 0a492390d..7c3c25eb5 100644 --- a/tests/integration/api/error_group_callback/test_error_group_callback_max_string_len.php +++ b/tests/integration/api/error_group_callback/test_error_group_callback_max_string_len.php @@ -46,7 +46,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_error_group_callback"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_linking_metadata_dt.php b/tests/integration/api/metadata/test_linking_metadata_dt.php index 82e898b09..2eed2afbb 100644 --- a/tests/integration/api/metadata/test_linking_metadata_dt.php +++ b/tests/integration/api/metadata/test_linking_metadata_dt.php @@ -41,7 +41,8 @@ [{"name":"Supportability/api/get_linking_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_linking_metadata_dt_logging_off.php b/tests/integration/api/metadata/test_linking_metadata_dt_logging_off.php index 9c0897aeb..2d135f26f 100644 --- a/tests/integration/api/metadata/test_linking_metadata_dt_logging_off.php +++ b/tests/integration/api/metadata/test_linking_metadata_dt_logging_off.php @@ -44,7 +44,8 @@ [{"name":"Supportability/api/get_linking_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_linking_metadata_invalid.php b/tests/integration/api/metadata/test_linking_metadata_invalid.php index 66796fef3..d52708233 100644 --- a/tests/integration/api/metadata/test_linking_metadata_invalid.php +++ b/tests/integration/api/metadata/test_linking_metadata_invalid.php @@ -40,7 +40,8 @@ [{"name":"Supportability/api/get_linking_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_linking_metadata_invalid.php8.php b/tests/integration/api/metadata/test_linking_metadata_invalid.php8.php index 831e5840d..08b6ab936 100644 --- a/tests/integration/api/metadata/test_linking_metadata_invalid.php8.php +++ b/tests/integration/api/metadata/test_linking_metadata_invalid.php8.php @@ -40,7 +40,8 @@ [{"name":"Supportability/api/get_linking_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_linking_metadata_no_dt.php b/tests/integration/api/metadata/test_linking_metadata_no_dt.php index af9c1dcc1..03224e800 100644 --- a/tests/integration/api/metadata/test_linking_metadata_no_dt.php +++ b/tests/integration/api/metadata/test_linking_metadata_no_dt.php @@ -35,7 +35,8 @@ [{"name":"Supportability/api/get_linking_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_trace_metadata_dt.php b/tests/integration/api/metadata/test_trace_metadata_dt.php index 66cc4d43a..f49963af8 100644 --- a/tests/integration/api/metadata/test_trace_metadata_dt.php +++ b/tests/integration/api/metadata/test_trace_metadata_dt.php @@ -37,7 +37,8 @@ [{"name":"Supportability/api/get_trace_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_trace_metadata_invalid.php b/tests/integration/api/metadata/test_trace_metadata_invalid.php index 9d574f0b1..57bac6223 100644 --- a/tests/integration/api/metadata/test_trace_metadata_invalid.php +++ b/tests/integration/api/metadata/test_trace_metadata_invalid.php @@ -43,7 +43,8 @@ [{"name":"Supportability/api/get_trace_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_trace_metadata_invalid.php8.php b/tests/integration/api/metadata/test_trace_metadata_invalid.php8.php index 20f2bf13d..96c64acf3 100644 --- a/tests/integration/api/metadata/test_trace_metadata_invalid.php8.php +++ b/tests/integration/api/metadata/test_trace_metadata_invalid.php8.php @@ -43,7 +43,8 @@ [{"name":"Supportability/api/get_trace_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/metadata/test_trace_metadata_no_dt.php b/tests/integration/api/metadata/test_trace_metadata_no_dt.php index ddb3c9553..78133d1a9 100644 --- a/tests/integration/api/metadata/test_trace_metadata_no_dt.php +++ b/tests/integration/api/metadata/test_trace_metadata_no_dt.php @@ -31,7 +31,8 @@ [{"name":"Supportability/api/get_trace_metadata"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/other/test_ignore_apdex.php b/tests/integration/api/other/test_ignore_apdex.php index 966336baa..018b7c1c5 100644 --- a/tests/integration/api/other/test_ignore_apdex.php +++ b/tests/integration/api/other/test_ignore_apdex.php @@ -28,7 +28,8 @@ [{"name":"Supportability/api/ignore_apdex"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/other/test_is_sampled_cancelled_txn.php b/tests/integration/api/other/test_is_sampled_cancelled_txn.php index 509caa29e..e244808a4 100644 --- a/tests/integration/api/other/test_is_sampled_cancelled_txn.php +++ b/tests/integration/api/other/test_is_sampled_cancelled_txn.php @@ -27,7 +27,8 @@ [{"name":"Supportability/api/end_transaction"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/other/test_is_sampled_dt_disabled.php b/tests/integration/api/other/test_is_sampled_dt_disabled.php index ed035ee1a..e317d9267 100644 --- a/tests/integration/api/other/test_is_sampled_dt_disabled.php +++ b/tests/integration/api/other/test_is_sampled_dt_disabled.php @@ -25,7 +25,8 @@ [{"name":"Supportability/api/is_sampled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/other/test_is_sampled_dt_enabled.php b/tests/integration/api/other/test_is_sampled_dt_enabled.php index cee406079..31002193e 100644 --- a/tests/integration/api/other/test_is_sampled_dt_enabled.php +++ b/tests/integration/api/other/test_is_sampled_dt_enabled.php @@ -27,7 +27,8 @@ [{"name":"Supportability/api/is_sampled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/other/test_is_sampled_extra_param.php b/tests/integration/api/other/test_is_sampled_extra_param.php index a6e69c592..044029711 100644 --- a/tests/integration/api/other/test_is_sampled_extra_param.php +++ b/tests/integration/api/other/test_is_sampled_extra_param.php @@ -39,7 +39,8 @@ [{"name":"Supportability/api/is_sampled"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/other/test_is_sampled_extra_param.php8.php b/tests/integration/api/other/test_is_sampled_extra_param.php8.php index 5aec50923..be9172203 100644 --- a/tests/integration/api/other/test_is_sampled_extra_param.php8.php +++ b/tests/integration/api/other/test_is_sampled_extra_param.php8.php @@ -39,7 +39,8 @@ [{"name":"Supportability/api/is_sampled"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_already_ended.php b/tests/integration/api/set_appname/test_already_ended.php index a4cf8824d..af4923ff3 100644 --- a/tests/integration/api/set_appname/test_already_ended.php +++ b/tests/integration/api/set_appname/test_already_ended.php @@ -21,16 +21,17 @@ [ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], - [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/after"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], + [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/after"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_appname_license.php b/tests/integration/api/set_appname/test_appname_license.php index 1e59554f3..5fdd770e1 100644 --- a/tests/integration/api/set_appname/test_appname_license.php +++ b/tests/integration/api/set_appname/test_appname_license.php @@ -20,17 +20,18 @@ [ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], - [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/after"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/with_license"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], + [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/after"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/with_license"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_appname_switch_license.php b/tests/integration/api/set_appname/test_appname_switch_license.php index 86a973ef6..cf51aaf93 100644 --- a/tests/integration/api/set_appname/test_appname_switch_license.php +++ b/tests/integration/api/set_appname/test_appname_switch_license.php @@ -18,22 +18,23 @@ "?? timeframe start", "?? timeframe stop", [ - [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"},[2, "??", "??", "??", "??", "??"]], + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [2, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], - [{"name":"see_me_also"}, [1, 1, 1, 1, 1, 1]], - [{"name":"Supportability/api/custom_metric"}, [2, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/before"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/after"}, [2, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/switched_license"}, [2, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/with_license"}, [2, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [2, "??", "??", "??", "??", "??"]] + [{"name":"OtherTransaction/all"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], + [{"name":"see_me_also"}, [1, 1, 1, 1, 1, 1]], + [{"name":"Supportability/api/custom_metric"}, [2, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/before"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/after"}, [2, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/switched_license"}, [2, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/with_license"}, [2, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [2, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_appname_switch_license_lasp.php b/tests/integration/api/set_appname/test_appname_switch_license_lasp.php index 47c2aa0d2..003abcf9b 100644 --- a/tests/integration/api/set_appname/test_appname_switch_license_lasp.php +++ b/tests/integration/api/set_appname/test_appname_switch_license_lasp.php @@ -24,18 +24,19 @@ "?? timeframe start", "?? timeframe stop", [ - [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"},[1, "??", "??", "??", "??", "??"]], + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/start_transaction"}, [1, 0, 0, 0, 0, 0]], - [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], - [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/start_transaction"}, [1, 0, 0, 0, 0, 0]], + [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_bad_params.php b/tests/integration/api/set_appname/test_bad_params.php index 30d1d5242..65938b4db 100644 --- a/tests/integration/api/set_appname/test_bad_params.php +++ b/tests/integration/api/set_appname/test_bad_params.php @@ -49,7 +49,8 @@ [{"name":"Supportability/api/set_appname/before"}, [5, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_bad_params.php8.php b/tests/integration/api/set_appname/test_bad_params.php8.php index 4397b395a..0ee7344a0 100644 --- a/tests/integration/api/set_appname/test_bad_params.php8.php +++ b/tests/integration/api/set_appname/test_bad_params.php8.php @@ -43,7 +43,8 @@ [{"name":"Supportability/api/set_appname/before"}, [5, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_no_license.php b/tests/integration/api/set_appname/test_no_license.php index 0a507cf55..6106cb099 100644 --- a/tests/integration/api/set_appname/test_no_license.php +++ b/tests/integration/api/set_appname/test_no_license.php @@ -20,16 +20,17 @@ [ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], - [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/after"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], + [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/after"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_transmit_false.php b/tests/integration/api/set_appname/test_transmit_false.php index 9bc2b23f7..7c6e8a116 100644 --- a/tests/integration/api/set_appname/test_transmit_false.php +++ b/tests/integration/api/set_appname/test_transmit_false.php @@ -21,17 +21,18 @@ [ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], - [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/after"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/api/set_appname/with_license"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"see_me"}, [1, 1, 1, 1, 1, 1]], + [{"name":"Supportability/api/custom_metric"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/after"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/api/set_appname/with_license"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_transmit_int.php b/tests/integration/api/set_appname/test_transmit_int.php index 340de0855..5eac31a77 100644 --- a/tests/integration/api/set_appname/test_transmit_int.php +++ b/tests/integration/api/set_appname/test_transmit_int.php @@ -33,7 +33,8 @@ [{"name":"Supportability/api/set_appname/before"}, [2, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [3, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [3, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [3, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [3, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_appname/test_transmit_true.php b/tests/integration/api/set_appname/test_transmit_true.php index c6e3fe22b..0bd7be593 100644 --- a/tests/integration/api/set_appname/test_transmit_true.php +++ b/tests/integration/api/set_appname/test_transmit_true.php @@ -34,7 +34,8 @@ [{"name":"Supportability/api/set_appname/with_license"}, [2, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [3, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [3, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [3, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [3, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_user_id/test_set_user_id.php b/tests/integration/api/set_user_id/test_set_user_id.php index 38afe8c23..5e663d6c1 100644 --- a/tests/integration/api/set_user_id/test_set_user_id.php +++ b/tests/integration/api/set_user_id/test_set_user_id.php @@ -33,7 +33,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_user_id"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_user_id/test_set_user_id_empty_string.php b/tests/integration/api/set_user_id/test_set_user_id_empty_string.php index a51035d71..72726a8ab 100644 --- a/tests/integration/api/set_user_id/test_set_user_id_empty_string.php +++ b/tests/integration/api/set_user_id/test_set_user_id_empty_string.php @@ -36,7 +36,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_user_id"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_user_id/test_set_user_id_error.php b/tests/integration/api/set_user_id/test_set_user_id_error.php index dbf782bdb..ee4caeafe 100644 --- a/tests/integration/api/set_user_id/test_set_user_id_error.php +++ b/tests/integration/api/set_user_id/test_set_user_id_error.php @@ -30,7 +30,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_user_id"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_user_id/test_set_user_id_exceeds_maxlen.php b/tests/integration/api/set_user_id/test_set_user_id_exceeds_maxlen.php index 1a369a76b..f77c3331a 100644 --- a/tests/integration/api/set_user_id/test_set_user_id_exceeds_maxlen.php +++ b/tests/integration/api/set_user_id/test_set_user_id_exceeds_maxlen.php @@ -32,7 +32,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_user_id"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_user_id/test_set_user_id_exception.php b/tests/integration/api/set_user_id/test_set_user_id_exception.php index e38ffef8d..4631705b2 100644 --- a/tests/integration/api/set_user_id/test_set_user_id_exception.php +++ b/tests/integration/api/set_user_id/test_set_user_id_exception.php @@ -31,7 +31,8 @@ [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/notice_error"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_user_id"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_user_id/test_set_user_id_noarg.php b/tests/integration/api/set_user_id/test_set_user_id_noarg.php index 09c18914a..fd8aa44cb 100644 --- a/tests/integration/api/set_user_id/test_set_user_id_noarg.php +++ b/tests/integration/api/set_user_id/test_set_user_id_noarg.php @@ -32,7 +32,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_user_id"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_user_id/test_set_user_id_non_string.php b/tests/integration/api/set_user_id/test_set_user_id_non_string.php index b54b24c4f..1ac980a24 100644 --- a/tests/integration/api/set_user_id/test_set_user_id_non_string.php +++ b/tests/integration/api/set_user_id/test_set_user_id_non_string.php @@ -32,7 +32,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_user_id"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/api/set_user_id/test_set_user_id_null.php b/tests/integration/api/set_user_id/test_set_user_id_null.php index beae49a97..28c073080 100644 --- a/tests/integration/api/set_user_id/test_set_user_id_null.php +++ b/tests/integration/api/set_user_id/test_set_user_id_null.php @@ -32,7 +32,8 @@ [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/api/set_user_id"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/basic/test_call_user_func_array_0.php b/tests/integration/basic/test_call_user_func_array_0.php index fda267f67..f9950b8a0 100644 --- a/tests/integration/basic/test_call_user_func_array_0.php +++ b/tests/integration/basic/test_call_user_func_array_0.php @@ -36,7 +36,8 @@ [{"name":"Supportability/framework/CodeIgniter/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/basic/test_dl.php b/tests/integration/basic/test_dl.php index c00632753..ccaeda661 100644 --- a/tests/integration/basic/test_dl.php +++ b/tests/integration/basic/test_dl.php @@ -31,7 +31,8 @@ [{"name":"Supportability/InstrumentedFunction/dl"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/basic/test_output_buffer.php b/tests/integration/basic/test_output_buffer.php index 8b8dbd0c2..73efaddb5 100644 --- a/tests/integration/basic/test_output_buffer.php +++ b/tests/integration/basic/test_output_buffer.php @@ -41,7 +41,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/basic/test_output_buffer_logging_off.php b/tests/integration/basic/test_output_buffer_logging_off.php index d559d4140..33ef55bf8 100644 --- a/tests/integration/basic/test_output_buffer_logging_off.php +++ b/tests/integration/basic/test_output_buffer_logging_off.php @@ -44,7 +44,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_inbound_payload_rejects_if_no_tx_or_id.php b/tests/integration/distributed_tracing/newrelic/test_inbound_payload_rejects_if_no_tx_or_id.php index 9ff046acd..0e361f7b3 100644 --- a/tests/integration/distributed_tracing/newrelic/test_inbound_payload_rejects_if_no_tx_or_id.php +++ b/tests/integration/distributed_tracing/newrelic/test_inbound_payload_rejects_if_no_tx_or_id.php @@ -39,7 +39,8 @@ [{"name":"Supportability/DistributedTrace/AcceptPayload/ParseException"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_exception.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_exception.php index 6c28d7158..60c61f6e9 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_exception.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_exception.php @@ -34,7 +34,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Exception"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_createBeforeAccept.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_createBeforeAccept.php index 5b9a4cc83..0b4fffa5d 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_createBeforeAccept.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_createBeforeAccept.php @@ -37,7 +37,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"},[1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_majorVersion.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_majorVersion.php index be5197d5a..fdfb5f6fe 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_majorVersion.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_majorVersion.php @@ -40,7 +40,8 @@ [{"name":"Supportability/DistributedTrace/AcceptPayload/Ignored/MajorVersion"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_multiple.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_multiple.php index d567b2e31..a34ff28b1 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_multiple.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_multiple.php @@ -42,7 +42,8 @@ [{"name":"TransportDuration/App/ENV[ACCOUNT_supportability]/ENV[APP_supportability]/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_multiple_logging_off.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_multiple_logging_off.php index d5857bde0..a08b0be78 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_multiple_logging_off.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_multiple_logging_off.php @@ -45,7 +45,8 @@ [{"name":"TransportDuration/App/ENV[ACCOUNT_supportability]/ENV[APP_supportability]/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_null.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_null.php index d6a8a3477..bc2f171c8 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_null.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_null.php @@ -35,7 +35,8 @@ [{"name":"Supportability/DistributedTrace/AcceptPayload/Ignored/Null"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount.php index a2c2eb33f..bda0809e5 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount.php @@ -31,7 +31,8 @@ [{"name":"Supportability/DistributedTrace/AcceptPayload/Ignored/UntrustedAccount"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount_httpsafe.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount_httpsafe.php index 043bfa0fc..ff7c7f68f 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount_httpsafe.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount_httpsafe.php @@ -32,7 +32,8 @@ [{"name":"Supportability/DistributedTrace/AcceptPayload/Ignored/UntrustedAccount"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount_logging_off.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount_logging_off.php index bf9974f71..af70d495b 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount_logging_off.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_ignored_untrustedAccount_logging_off.php @@ -34,7 +34,8 @@ [{"name":"Supportability/DistributedTrace/AcceptPayload/Ignored/UntrustedAccount"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_parseexception.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_parseexception.php index 470fcb13a..6a6195e94 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_parseexception.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_parseexception.php @@ -31,7 +31,8 @@ [{"name":"Supportability/DistributedTrace/AcceptPayload/ParseException"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_success.php b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_success.php index 6c8bf8ac2..22c021dc9 100644 --- a/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_success.php +++ b/tests/integration/distributed_tracing/newrelic/test_supportability_acceptpayload_success.php @@ -40,7 +40,8 @@ [{"name":"TransportDuration/App/ENV[ACCOUNT_supportability]/ENV[APP_supportability]/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_empty_array.php b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_empty_array.php index 722db3181..3f8da711f 100644 --- a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_empty_array.php +++ b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_empty_array.php @@ -35,7 +35,8 @@ [{"name":"Supportability/api/insert_distributed_trace_headers"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_happy.php b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_happy.php index c4e961fc8..b1f4b7768 100644 --- a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_happy.php +++ b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_happy.php @@ -35,7 +35,8 @@ [{"name":"Supportability/api/insert_distributed_trace_headers"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_happy_logging_off.php b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_happy_logging_off.php index fa8e0d92c..f24974e93 100644 --- a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_happy_logging_off.php +++ b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_happy_logging_off.php @@ -38,7 +38,8 @@ [{"name":"Supportability/api/insert_distributed_trace_headers"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_nonref.php b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_nonref.php index 275e1544b..05a193202 100644 --- a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_nonref.php +++ b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_nonref.php @@ -30,7 +30,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_wrong_arg_type.php b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_wrong_arg_type.php index 7da4a6eb4..4e923111f 100644 --- a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_wrong_arg_type.php +++ b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_wrong_arg_type.php @@ -38,7 +38,8 @@ [{"name":"Supportability/api/insert_distributed_trace_headers"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_wrong_arg_type.php8.php b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_wrong_arg_type.php8.php index 427f1f121..0a0057ae6 100644 --- a/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_wrong_arg_type.php8.php +++ b/tests/integration/distributed_tracing/w3c/test_insert_dt_headers_wrong_arg_type.php8.php @@ -38,7 +38,8 @@ [{"name":"Supportability/api/insert_distributed_trace_headers"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_invalid_inbound.php b/tests/integration/distributed_tracing/w3c/test_invalid_inbound.php index b6f2ce76e..367d3f250 100644 --- a/tests/integration/distributed_tracing/w3c/test_invalid_inbound.php +++ b/tests/integration/distributed_tracing/w3c/test_invalid_inbound.php @@ -29,7 +29,8 @@ [{"name":"Supportability/TraceContext/TraceParent/Parse/Exception"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers.php b/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers.php index 112d6f429..ad7904374 100644 --- a/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers.php +++ b/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers.php @@ -40,7 +40,8 @@ [{"name":"TransportDuration/App/1349956/41346604/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers_logging_off.php b/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers_logging_off.php index 87a75d3fa..1e1d59818 100644 --- a/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers_logging_off.php +++ b/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers_logging_off.php @@ -43,7 +43,8 @@ [{"name":"TransportDuration/App/1349956/41346604/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers_parsed_key.php b/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers_parsed_key.php index 63950f174..6048640e6 100644 --- a/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers_parsed_key.php +++ b/tests/integration/distributed_tracing/w3c/test_valid_inbound_headers_parsed_key.php @@ -40,7 +40,8 @@ [{"name":"TransportDuration/App/1349956/41346604/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_valid_inbound_no_sampled.php b/tests/integration/distributed_tracing/w3c/test_valid_inbound_no_sampled.php index 06b7a437d..a91dbaf9b 100644 --- a/tests/integration/distributed_tracing/w3c/test_valid_inbound_no_sampled.php +++ b/tests/integration/distributed_tracing/w3c/test_valid_inbound_no_sampled.php @@ -40,7 +40,8 @@ [{"name":"TransportDuration/Mobile/111111/2827902/HTTP/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_valid_inbound_non_newrelic.php b/tests/integration/distributed_tracing/w3c/test_valid_inbound_non_newrelic.php index 5f4dff7c0..11e1c5056 100644 --- a/tests/integration/distributed_tracing/w3c/test_valid_inbound_non_newrelic.php +++ b/tests/integration/distributed_tracing/w3c/test_valid_inbound_non_newrelic.php @@ -39,7 +39,8 @@ [{"name":"TransportDuration/App/33/5043/HTTPS/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"},[1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/distributed_tracing/w3c/test_valid_no_nr_state.php b/tests/integration/distributed_tracing/w3c/test_valid_no_nr_state.php index 14767c2c6..96e8ea37e 100644 --- a/tests/integration/distributed_tracing/w3c/test_valid_no_nr_state.php +++ b/tests/integration/distributed_tracing/w3c/test_valid_no_nr_state.php @@ -33,7 +33,8 @@ [{"name":"TransportDuration/Unknown/Unknown/Unknown/Unknown/all"},[1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/errors/test_top_level_exception_tracer.php b/tests/integration/errors/test_top_level_exception_tracer.php index 4b697582d..0fc35f557 100644 --- a/tests/integration/errors/test_top_level_exception_tracer.php +++ b/tests/integration/errors/test_top_level_exception_tracer.php @@ -34,7 +34,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/errors/test_top_level_exception_tracer_logging_off.php b/tests/integration/errors/test_top_level_exception_tracer_logging_off.php index 23139b2a3..3dc2a4983 100644 --- a/tests/integration/errors/test_top_level_exception_tracer_logging_off.php +++ b/tests/integration/errors/test_top_level_exception_tracer_logging_off.php @@ -37,7 +37,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_and_synthetics_disabled.php b/tests/integration/external/curl_exec/test_cat_and_synthetics_disabled.php index 6e60d4b95..61131f013 100644 --- a/tests/integration/external/curl_exec/test_cat_and_synthetics_disabled.php +++ b/tests/integration/external/curl_exec/test_cat_and_synthetics_disabled.php @@ -68,7 +68,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_disabled.php b/tests/integration/external/curl_exec/test_cat_disabled.php index 3b874ad5b..5b17421b5 100644 --- a/tests/integration/external/curl_exec/test_cat_disabled.php +++ b/tests/integration/external/curl_exec/test_cat_disabled.php @@ -39,7 +39,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_disabled_by_default.php b/tests/integration/external/curl_exec/test_cat_disabled_by_default.php index bdd21d61f..4d4f657fa 100644 --- a/tests/integration/external/curl_exec/test_cat_disabled_by_default.php +++ b/tests/integration/external/curl_exec/test_cat_disabled_by_default.php @@ -39,7 +39,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_request_headers_empty_array.php b/tests/integration/external/curl_exec/test_cat_request_headers_empty_array.php index 6fb3177ad..87499f03d 100644 --- a/tests/integration/external/curl_exec/test_cat_request_headers_empty_array.php +++ b/tests/integration/external/curl_exec/test_cat_request_headers_empty_array.php @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_request_headers_present.php b/tests/integration/external/curl_exec/test_cat_request_headers_present.php index cdf0aa712..cd0a6761c 100644 --- a/tests/integration/external/curl_exec/test_cat_request_headers_present.php +++ b/tests/integration/external/curl_exec/test_cat_request_headers_present.php @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_request_headers_present_array.php b/tests/integration/external/curl_exec/test_cat_request_headers_present_array.php index d1d873414..dd1d232fc 100644 --- a/tests/integration/external/curl_exec/test_cat_request_headers_present_array.php +++ b/tests/integration/external/curl_exec/test_cat_request_headers_present_array.php @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_request_headers_referenced_array.php b/tests/integration/external/curl_exec/test_cat_request_headers_referenced_array.php index 28a19930d..e691b9136 100644 --- a/tests/integration/external/curl_exec/test_cat_request_headers_referenced_array.php +++ b/tests/integration/external/curl_exec/test_cat_request_headers_referenced_array.php @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_response_header_anonymous.php b/tests/integration/external/curl_exec/test_cat_response_header_anonymous.php index 5457f11e8..9dbbcab79 100644 --- a/tests/integration/external/curl_exec/test_cat_response_header_anonymous.php +++ b/tests/integration/external/curl_exec/test_cat_response_header_anonymous.php @@ -52,7 +52,8 @@ [{"name":"Supportability/Unsupported/curl_setopt/CURLOPT_HEADERFUNCTION/closure"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_response_header_function.php b/tests/integration/external/curl_exec/test_cat_response_header_function.php index 79fc67f6a..0f1a8c75e 100644 --- a/tests/integration/external/curl_exec/test_cat_response_header_function.php +++ b/tests/integration/external/curl_exec/test_cat_response_header_function.php @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_response_header_returned.php b/tests/integration/external/curl_exec/test_cat_response_header_returned.php index 8a27c4371..18d069496 100644 --- a/tests/integration/external/curl_exec/test_cat_response_header_returned.php +++ b/tests/integration/external/curl_exec/test_cat_response_header_returned.php @@ -55,7 +55,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_response_header_to_file.php b/tests/integration/external/curl_exec/test_cat_response_header_to_file.php index c0d0da723..8c0c55057 100644 --- a/tests/integration/external/curl_exec/test_cat_response_header_to_file.php +++ b/tests/integration/external/curl_exec/test_cat_response_header_to_file.php @@ -52,7 +52,8 @@ [{"name":"Supportability/Unsupported/curl_setopt/CURLOPT_WRITEHEADER"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_response_header_to_stdout.php b/tests/integration/external/curl_exec/test_cat_response_header_to_stdout.php index 44aeb1aac..e750392da 100644 --- a/tests/integration/external/curl_exec/test_cat_response_header_to_stdout.php +++ b/tests/integration/external/curl_exec/test_cat_response_header_to_stdout.php @@ -55,7 +55,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_cat_simple.php b/tests/integration/external/curl_exec/test_cat_simple.php index 5edb87f68..5b133ad8c 100644 --- a/tests/integration/external/curl_exec/test_cat_simple.php +++ b/tests/integration/external/curl_exec/test_cat_simple.php @@ -56,7 +56,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_dt_enabled_cat_enabled.php b/tests/integration/external/curl_exec/test_dt_enabled_cat_enabled.php index 8f9cd8880..4acdfd815 100644 --- a/tests/integration/external/curl_exec/test_dt_enabled_cat_enabled.php +++ b/tests/integration/external/curl_exec/test_dt_enabled_cat_enabled.php @@ -55,7 +55,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_dt_newrelic_header_disabled.php b/tests/integration/external/curl_exec/test_dt_newrelic_header_disabled.php index 6ee09ead9..241e27ff9 100644 --- a/tests/integration/external/curl_exec/test_dt_newrelic_header_disabled.php +++ b/tests/integration/external/curl_exec/test_dt_newrelic_header_disabled.php @@ -53,7 +53,8 @@ [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_dt_request_headers_empty_array.php b/tests/integration/external/curl_exec/test_dt_request_headers_empty_array.php index dcfd62c5a..1df90a6ad 100644 --- a/tests/integration/external/curl_exec/test_dt_request_headers_empty_array.php +++ b/tests/integration/external/curl_exec/test_dt_request_headers_empty_array.php @@ -54,7 +54,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_dt_request_headers_present.php b/tests/integration/external/curl_exec/test_dt_request_headers_present.php index d2affbff3..b7042621c 100644 --- a/tests/integration/external/curl_exec/test_dt_request_headers_present.php +++ b/tests/integration/external/curl_exec/test_dt_request_headers_present.php @@ -54,7 +54,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_dt_request_headers_present_array.php b/tests/integration/external/curl_exec/test_dt_request_headers_present_array.php index adeb4c633..dbfd06806 100644 --- a/tests/integration/external/curl_exec/test_dt_request_headers_present_array.php +++ b/tests/integration/external/curl_exec/test_dt_request_headers_present_array.php @@ -54,7 +54,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_dt_request_headers_present_array_logging_off.php b/tests/integration/external/curl_exec/test_dt_request_headers_present_array_logging_off.php index 5ccce861f..1b6964c46 100644 --- a/tests/integration/external/curl_exec/test_dt_request_headers_present_array_logging_off.php +++ b/tests/integration/external/curl_exec/test_dt_request_headers_present_array_logging_off.php @@ -57,7 +57,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_dt_request_headers_referenced_array.php b/tests/integration/external/curl_exec/test_dt_request_headers_referenced_array.php index 1e7a2a4be..436acaa6a 100644 --- a/tests/integration/external/curl_exec/test_dt_request_headers_referenced_array.php +++ b/tests/integration/external/curl_exec/test_dt_request_headers_referenced_array.php @@ -55,7 +55,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_dt_simple.php b/tests/integration/external/curl_exec/test_dt_simple.php index b7009267a..da78515c0 100644 --- a/tests/integration/external/curl_exec/test_dt_simple.php +++ b/tests/integration/external/curl_exec/test_dt_simple.php @@ -83,7 +83,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_file_proto.php b/tests/integration/external/curl_exec/test_file_proto.php index 3cebd2e6a..3459dfaa2 100644 --- a/tests/integration/external/curl_exec/test_file_proto.php +++ b/tests/integration/external/curl_exec/test_file_proto.php @@ -36,7 +36,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_http.php b/tests/integration/external/curl_exec/test_http.php index b626b2f7a..5d55f2975 100644 --- a/tests/integration/external/curl_exec/test_http.php +++ b/tests/integration/external/curl_exec/test_http.php @@ -47,7 +47,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_malformed_url.php b/tests/integration/external/curl_exec/test_malformed_url.php index 4131f55e9..9f12085f6 100644 --- a/tests/integration/external/curl_exec/test_malformed_url.php +++ b/tests/integration/external/curl_exec/test_malformed_url.php @@ -44,7 +44,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_missing_handle.php b/tests/integration/external/curl_exec/test_missing_handle.php index 3d270a4dd..71d8c8bbb 100644 --- a/tests/integration/external/curl_exec/test_missing_handle.php +++ b/tests/integration/external/curl_exec/test_missing_handle.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_request_headers_referenced_array.php b/tests/integration/external/curl_exec/test_request_headers_referenced_array.php index cf90cc31d..7d3f66ac2 100644 --- a/tests/integration/external/curl_exec/test_request_headers_referenced_array.php +++ b/tests/integration/external/curl_exec/test_request_headers_referenced_array.php @@ -43,7 +43,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_synthetics.php b/tests/integration/external/curl_exec/test_synthetics.php index 9a78fab80..81a8bd6d7 100644 --- a/tests/integration/external/curl_exec/test_synthetics.php +++ b/tests/integration/external/curl_exec/test_synthetics.php @@ -67,7 +67,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_synthetics_disabled.php b/tests/integration/external/curl_exec/test_synthetics_disabled.php index 0ce24aa42..5e5369982 100644 --- a/tests/integration/external/curl_exec/test_synthetics_disabled.php +++ b/tests/integration/external/curl_exec/test_synthetics_disabled.php @@ -68,7 +68,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_synthetics_with_cat_disabled.php b/tests/integration/external/curl_exec/test_synthetics_with_cat_disabled.php index 743d463b6..92eca7b45 100644 --- a/tests/integration/external/curl_exec/test_synthetics_with_cat_disabled.php +++ b/tests/integration/external/curl_exec/test_synthetics_with_cat_disabled.php @@ -66,7 +66,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_synthetics_with_dt.php b/tests/integration/external/curl_exec/test_synthetics_with_dt.php index 2bc43a7f5..e5da0cd0e 100644 --- a/tests/integration/external/curl_exec/test_synthetics_with_dt.php +++ b/tests/integration/external/curl_exec/test_synthetics_with_dt.php @@ -67,7 +67,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_synthetics_with_dt_logging_off.php b/tests/integration/external/curl_exec/test_synthetics_with_dt_logging_off.php index 93890d009..040ac383f 100644 --- a/tests/integration/external/curl_exec/test_synthetics_with_dt_logging_off.php +++ b/tests/integration/external/curl_exec/test_synthetics_with_dt_logging_off.php @@ -70,7 +70,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_exec/test_type_mismatch.php b/tests/integration/external/curl_exec/test_type_mismatch.php index 558e86d80..ea6c99598 100644 --- a/tests/integration/external/curl_exec/test_type_mismatch.php +++ b/tests/integration/external/curl_exec/test_type_mismatch.php @@ -37,7 +37,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_cat_simple.php b/tests/integration/external/curl_multi_exec/test_cat_simple.php index ff56296e1..db719d477 100644 --- a/tests/integration/external/curl_multi_exec/test_cat_simple.php +++ b/tests/integration/external/curl_multi_exec/test_cat_simple.php @@ -59,7 +59,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_curl_multi_exec_params.php b/tests/integration/external/curl_multi_exec/test_curl_multi_exec_params.php index edf70a708..6ac62ec7c 100644 --- a/tests/integration/external/curl_multi_exec/test_curl_multi_exec_params.php +++ b/tests/integration/external/curl_multi_exec/test_curl_multi_exec_params.php @@ -41,7 +41,8 @@ [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"External/127.0.0.1/all", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_custom_header.php b/tests/integration/external/curl_multi_exec/test_custom_header.php index 90c8a5a0e..58e148175 100644 --- a/tests/integration/external/curl_multi_exec/test_custom_header.php +++ b/tests/integration/external/curl_multi_exec/test_custom_header.php @@ -43,7 +43,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_dt_custom_header.php b/tests/integration/external/curl_multi_exec/test_dt_custom_header.php index e6e31a2ca..92b916e94 100644 --- a/tests/integration/external/curl_multi_exec/test_dt_custom_header.php +++ b/tests/integration/external/curl_multi_exec/test_dt_custom_header.php @@ -53,7 +53,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_dt_custom_header_logging_off.php b/tests/integration/external/curl_multi_exec/test_dt_custom_header_logging_off.php index 033b9b53d..fb03b507e 100644 --- a/tests/integration/external/curl_multi_exec/test_dt_custom_header_logging_off.php +++ b/tests/integration/external/curl_multi_exec/test_dt_custom_header_logging_off.php @@ -56,7 +56,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_dt_newrelic_header_disabled.php b/tests/integration/external/curl_multi_exec/test_dt_newrelic_header_disabled.php index 23b262a9a..e12938e70 100644 --- a/tests/integration/external/curl_multi_exec/test_dt_newrelic_header_disabled.php +++ b/tests/integration/external/curl_multi_exec/test_dt_newrelic_header_disabled.php @@ -55,7 +55,8 @@ [{"name":"Supportability/TraceContext/Create/Success"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_dt_simple.php b/tests/integration/external/curl_multi_exec/test_dt_simple.php index d079b0c39..477014a16 100644 --- a/tests/integration/external/curl_multi_exec/test_dt_simple.php +++ b/tests/integration/external/curl_multi_exec/test_dt_simple.php @@ -55,7 +55,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_exec_add_handles.php b/tests/integration/external/curl_multi_exec/test_exec_add_handles.php index 92c327975..8a34a05db 100644 --- a/tests/integration/external/curl_multi_exec/test_exec_add_handles.php +++ b/tests/integration/external/curl_multi_exec/test_exec_add_handles.php @@ -135,7 +135,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_exec_remove_handles.php b/tests/integration/external/curl_multi_exec/test_exec_remove_handles.php index 995a1eb27..32ada2c87 100644 --- a/tests/integration/external/curl_multi_exec/test_exec_remove_handles.php +++ b/tests/integration/external/curl_multi_exec/test_exec_remove_handles.php @@ -134,7 +134,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [6, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_exec_remove_handles_logging_off.php b/tests/integration/external/curl_multi_exec/test_exec_remove_handles_logging_off.php index 7573811a1..dd4b8bb4a 100644 --- a/tests/integration/external/curl_multi_exec/test_exec_remove_handles_logging_off.php +++ b/tests/integration/external/curl_multi_exec/test_exec_remove_handles_logging_off.php @@ -137,7 +137,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [6, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_http.php b/tests/integration/external/curl_multi_exec/test_http.php index 76f44e184..2b2e9f6ab 100644 --- a/tests/integration/external/curl_multi_exec/test_http.php +++ b/tests/integration/external/curl_multi_exec/test_http.php @@ -47,7 +47,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_malformed_url.php b/tests/integration/external/curl_multi_exec/test_malformed_url.php index 4250faeef..69bf0981a 100644 --- a/tests/integration/external/curl_multi_exec/test_malformed_url.php +++ b/tests/integration/external/curl_multi_exec/test_malformed_url.php @@ -45,7 +45,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_missing_arg.php b/tests/integration/external/curl_multi_exec/test_missing_arg.php index 62012d28e..2e9a494ce 100644 --- a/tests/integration/external/curl_multi_exec/test_missing_arg.php +++ b/tests/integration/external/curl_multi_exec/test_missing_arg.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_simple.php b/tests/integration/external/curl_multi_exec/test_simple.php index 19e1258af..3c8c5aae4 100644 --- a/tests/integration/external/curl_multi_exec/test_simple.php +++ b/tests/integration/external/curl_multi_exec/test_simple.php @@ -135,7 +135,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_txn_restart.php b/tests/integration/external/curl_multi_exec/test_txn_restart.php index 23de9b40d..4e4e6040f 100644 --- a/tests/integration/external/curl_multi_exec/test_txn_restart.php +++ b/tests/integration/external/curl_multi_exec/test_txn_restart.php @@ -54,7 +54,8 @@ [{"name":"Supportability/api/start_transaction"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/curl_multi_exec/test_type_mismatch.php b/tests/integration/external/curl_multi_exec/test_type_mismatch.php index ccc8567a6..360be44ac 100644 --- a/tests/integration/external/curl_multi_exec/test_type_mismatch.php +++ b/tests/integration/external/curl_multi_exec/test_type_mismatch.php @@ -37,7 +37,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_basic.php b/tests/integration/external/drupal6/test_basic.php index 66f36a717..647e91a9b 100644 --- a/tests/integration/external/drupal6/test_basic.php +++ b/tests/integration/external/drupal6/test_basic.php @@ -37,7 +37,8 @@ [{"name":"External/127.0.0.1/all", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_cat_and_synthetics_disabled.php b/tests/integration/external/drupal6/test_cat_and_synthetics_disabled.php index c21f306f7..28fdaefe0 100644 --- a/tests/integration/external/drupal6/test_cat_and_synthetics_disabled.php +++ b/tests/integration/external/drupal6/test_cat_and_synthetics_disabled.php @@ -63,7 +63,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_cat_disabled.php b/tests/integration/external/drupal6/test_cat_disabled.php index fc6fef0be..286038536 100644 --- a/tests/integration/external/drupal6/test_cat_disabled.php +++ b/tests/integration/external/drupal6/test_cat_disabled.php @@ -42,7 +42,8 @@ [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_cross_process_empty_headers.php b/tests/integration/external/drupal6/test_cross_process_empty_headers.php index f7500fd6b..16454e81f 100644 --- a/tests/integration/external/drupal6/test_cross_process_empty_headers.php +++ b/tests/integration/external/drupal6/test_cross_process_empty_headers.php @@ -45,7 +45,8 @@ [{"name":"ExternalTransaction/127.0.0.1/432507#4741547/WebTransaction/Custom/tracing", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_cross_process_existing_header.php b/tests/integration/external/drupal6/test_cross_process_existing_header.php index b5fe8ce79..f980edc23 100644 --- a/tests/integration/external/drupal6/test_cross_process_existing_header.php +++ b/tests/integration/external/drupal6/test_cross_process_existing_header.php @@ -45,7 +45,8 @@ [{"name":"ExternalTransaction/127.0.0.1/432507#4741547/WebTransaction/Custom/tracing", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_cross_process_no_headers.php b/tests/integration/external/drupal6/test_cross_process_no_headers.php index 9025c5eec..045dc9b40 100644 --- a/tests/integration/external/drupal6/test_cross_process_no_headers.php +++ b/tests/integration/external/drupal6/test_cross_process_no_headers.php @@ -45,7 +45,8 @@ [{"name":"ExternalTransaction/127.0.0.1/432507#4741547/WebTransaction/Custom/tracing", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_dt_empty_headers.php b/tests/integration/external/drupal6/test_dt_empty_headers.php index 964347339..aaffe43d9 100644 --- a/tests/integration/external/drupal6/test_dt_empty_headers.php +++ b/tests/integration/external/drupal6/test_dt_empty_headers.php @@ -46,7 +46,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_dt_existing_headers.php b/tests/integration/external/drupal6/test_dt_existing_headers.php index c2f9f7d0f..9d98d4415 100644 --- a/tests/integration/external/drupal6/test_dt_existing_headers.php +++ b/tests/integration/external/drupal6/test_dt_existing_headers.php @@ -46,7 +46,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_dt_newrelic_header_disabled.php b/tests/integration/external/drupal6/test_dt_newrelic_header_disabled.php index bf593565b..cde5ba877 100644 --- a/tests/integration/external/drupal6/test_dt_newrelic_header_disabled.php +++ b/tests/integration/external/drupal6/test_dt_newrelic_header_disabled.php @@ -45,7 +45,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_dt_no_headers.php b/tests/integration/external/drupal6/test_dt_no_headers.php index 8060c353e..2c6460684 100644 --- a/tests/integration/external/drupal6/test_dt_no_headers.php +++ b/tests/integration/external/drupal6/test_dt_no_headers.php @@ -45,7 +45,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_multiple_calls.php b/tests/integration/external/drupal6/test_multiple_calls.php index a983a0ab7..6650e71e7 100644 --- a/tests/integration/external/drupal6/test_multiple_calls.php +++ b/tests/integration/external/drupal6/test_multiple_calls.php @@ -39,7 +39,8 @@ [{"name":"External/127.0.0.1/all", "scope":"OtherTransaction/php__FILE__"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_synthetics.php b/tests/integration/external/drupal6/test_synthetics.php index 2203dbbb1..e03ce3734 100644 --- a/tests/integration/external/drupal6/test_synthetics.php +++ b/tests/integration/external/drupal6/test_synthetics.php @@ -67,7 +67,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_synthetics_disabled.php b/tests/integration/external/drupal6/test_synthetics_disabled.php index 45f99a634..ca2a4b64d 100644 --- a/tests/integration/external/drupal6/test_synthetics_disabled.php +++ b/tests/integration/external/drupal6/test_synthetics_disabled.php @@ -64,7 +64,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_synthetics_with_cat_disabled.php b/tests/integration/external/drupal6/test_synthetics_with_cat_disabled.php index 6211d4479..26e00116c 100644 --- a/tests/integration/external/drupal6/test_synthetics_with_cat_disabled.php +++ b/tests/integration/external/drupal6/test_synthetics_with_cat_disabled.php @@ -65,7 +65,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal6/test_synthetics_with_dt.php b/tests/integration/external/drupal6/test_synthetics_with_dt.php index d42dbd5c0..031160499 100644 --- a/tests/integration/external/drupal6/test_synthetics_with_dt.php +++ b/tests/integration/external/drupal6/test_synthetics_with_dt.php @@ -67,7 +67,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allWeb"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_bad_params_integer_headers.php b/tests/integration/external/drupal7/test_bad_params_integer_headers.php index 1f0aec4c8..d187e5945 100644 --- a/tests/integration/external/drupal7/test_bad_params_integer_headers.php +++ b/tests/integration/external/drupal7/test_bad_params_integer_headers.php @@ -40,7 +40,8 @@ [{"name":"External/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"External/127.0.0.1/all", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_bad_params_integer_headers.php8.php b/tests/integration/external/drupal7/test_bad_params_integer_headers.php8.php index 36cf6b0f1..4487a999b 100644 --- a/tests/integration/external/drupal7/test_bad_params_integer_headers.php8.php +++ b/tests/integration/external/drupal7/test_bad_params_integer_headers.php8.php @@ -25,17 +25,18 @@ "?? timeframe start", "?? timeframe stop", [ - [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Errors/OtherTransaction/php__FILE__"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Errors/all"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Errors/allOther"}, [1, 0, 0, 0, 0, 0]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]] + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Errors/OtherTransaction/php__FILE__"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Errors/all"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Errors/allOther"}, [1, 0, 0, 0, 0, 0]], + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_bad_params_integer_options.php b/tests/integration/external/drupal7/test_bad_params_integer_options.php index 20be1df50..0e7fb28d0 100644 --- a/tests/integration/external/drupal7/test_bad_params_integer_options.php +++ b/tests/integration/external/drupal7/test_bad_params_integer_options.php @@ -32,7 +32,8 @@ [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_bad_params_null_headers.php b/tests/integration/external/drupal7/test_bad_params_null_headers.php index fe9463431..f7dd6c2ce 100644 --- a/tests/integration/external/drupal7/test_bad_params_null_headers.php +++ b/tests/integration/external/drupal7/test_bad_params_null_headers.php @@ -40,7 +40,8 @@ [{"name":"External/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"External/127.0.0.1/all", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_bad_params_null_headers.php8.php b/tests/integration/external/drupal7/test_bad_params_null_headers.php8.php index 1189821b1..e3378de9b 100644 --- a/tests/integration/external/drupal7/test_bad_params_null_headers.php8.php +++ b/tests/integration/external/drupal7/test_bad_params_null_headers.php8.php @@ -25,17 +25,18 @@ "?? timeframe start", "?? timeframe stop", [ - [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Errors/OtherTransaction/php__FILE__"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Errors/all"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Errors/allOther"}, [1, 0, 0, 0, 0, 0]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]] + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Errors/OtherTransaction/php__FILE__"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Errors/all"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Errors/allOther"}, [1, 0, 0, 0, 0, 0]], + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_bad_params_null_options.php b/tests/integration/external/drupal7/test_bad_params_null_options.php index 1db7121b5..946b04876 100644 --- a/tests/integration/external/drupal7/test_bad_params_null_options.php +++ b/tests/integration/external/drupal7/test_bad_params_null_options.php @@ -36,7 +36,8 @@ [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_bad_url.php b/tests/integration/external/drupal7/test_bad_url.php index 8729feae8..294404326 100644 --- a/tests/integration/external/drupal7/test_bad_url.php +++ b/tests/integration/external/drupal7/test_bad_url.php @@ -34,7 +34,8 @@ [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_basic.php b/tests/integration/external/drupal7/test_basic.php index ee8db6724..5efdf2488 100644 --- a/tests/integration/external/drupal7/test_basic.php +++ b/tests/integration/external/drupal7/test_basic.php @@ -37,7 +37,8 @@ [{"name":"External/127.0.0.1/all", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_cat_and_synthetics_disabled.php b/tests/integration/external/drupal7/test_cat_and_synthetics_disabled.php index 58d6fdfb0..e9c1a99a9 100644 --- a/tests/integration/external/drupal7/test_cat_and_synthetics_disabled.php +++ b/tests/integration/external/drupal7/test_cat_and_synthetics_disabled.php @@ -63,7 +63,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_cat_disabled.php b/tests/integration/external/drupal7/test_cat_disabled.php index 98c7cbde8..57d909142 100644 --- a/tests/integration/external/drupal7/test_cat_disabled.php +++ b/tests/integration/external/drupal7/test_cat_disabled.php @@ -46,7 +46,8 @@ [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_cross_process_empty_headers.php b/tests/integration/external/drupal7/test_cross_process_empty_headers.php index b9aa2d73b..607a90382 100644 --- a/tests/integration/external/drupal7/test_cross_process_empty_headers.php +++ b/tests/integration/external/drupal7/test_cross_process_empty_headers.php @@ -45,7 +45,8 @@ [{"name":"ExternalTransaction/127.0.0.1/432507#4741547/WebTransaction/Custom/tracing", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_cross_process_empty_options.php b/tests/integration/external/drupal7/test_cross_process_empty_options.php index a583181c9..2b2babb31 100644 --- a/tests/integration/external/drupal7/test_cross_process_empty_options.php +++ b/tests/integration/external/drupal7/test_cross_process_empty_options.php @@ -45,7 +45,8 @@ [{"name":"ExternalTransaction/127.0.0.1/432507#4741547/WebTransaction/Custom/tracing", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_cross_process_existing_header.php b/tests/integration/external/drupal7/test_cross_process_existing_header.php index 2c8ff316b..9429f974f 100644 --- a/tests/integration/external/drupal7/test_cross_process_existing_header.php +++ b/tests/integration/external/drupal7/test_cross_process_existing_header.php @@ -49,7 +49,8 @@ [{"name":"ExternalTransaction/127.0.0.1/432507#4741547/WebTransaction/Custom/tracing", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_cross_process_no_options.php b/tests/integration/external/drupal7/test_cross_process_no_options.php index e873a7a50..2c60d4fee 100644 --- a/tests/integration/external/drupal7/test_cross_process_no_options.php +++ b/tests/integration/external/drupal7/test_cross_process_no_options.php @@ -45,7 +45,8 @@ [{"name":"ExternalTransaction/127.0.0.1/432507#4741547/WebTransaction/Custom/tracing", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_dt_empty_headers.php b/tests/integration/external/drupal7/test_dt_empty_headers.php index a228bc11b..9a6a08249 100644 --- a/tests/integration/external/drupal7/test_dt_empty_headers.php +++ b/tests/integration/external/drupal7/test_dt_empty_headers.php @@ -46,7 +46,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_dt_existing_headers.php b/tests/integration/external/drupal7/test_dt_existing_headers.php index 31c0a4f18..a701bd0f6 100644 --- a/tests/integration/external/drupal7/test_dt_existing_headers.php +++ b/tests/integration/external/drupal7/test_dt_existing_headers.php @@ -45,7 +45,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_dt_newrelic_header_disabled.php b/tests/integration/external/drupal7/test_dt_newrelic_header_disabled.php index 3651f7fce..73f4fba9f 100644 --- a/tests/integration/external/drupal7/test_dt_newrelic_header_disabled.php +++ b/tests/integration/external/drupal7/test_dt_newrelic_header_disabled.php @@ -45,7 +45,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_dt_no_headers.php b/tests/integration/external/drupal7/test_dt_no_headers.php index 84e4dd1df..ee6853135 100644 --- a/tests/integration/external/drupal7/test_dt_no_headers.php +++ b/tests/integration/external/drupal7/test_dt_no_headers.php @@ -45,7 +45,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_multiple_calls.php b/tests/integration/external/drupal7/test_multiple_calls.php index 982b1a6e8..bbacaa2b4 100644 --- a/tests/integration/external/drupal7/test_multiple_calls.php +++ b/tests/integration/external/drupal7/test_multiple_calls.php @@ -38,7 +38,8 @@ [{"name":"External/127.0.0.1/all", "scope":"OtherTransaction/php__FILE__"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_synthetics.php b/tests/integration/external/drupal7/test_synthetics.php index 9a7d6782f..e5a62b696 100644 --- a/tests/integration/external/drupal7/test_synthetics.php +++ b/tests/integration/external/drupal7/test_synthetics.php @@ -63,7 +63,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_synthetics_disabled.php b/tests/integration/external/drupal7/test_synthetics_disabled.php index 89590c71d..2fb59f4f1 100644 --- a/tests/integration/external/drupal7/test_synthetics_disabled.php +++ b/tests/integration/external/drupal7/test_synthetics_disabled.php @@ -68,7 +68,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_synthetics_with_cat_disabled.php b/tests/integration/external/drupal7/test_synthetics_with_cat_disabled.php index 68065bca3..78850fe8b 100644 --- a/tests/integration/external/drupal7/test_synthetics_with_cat_disabled.php +++ b/tests/integration/external/drupal7/test_synthetics_with_cat_disabled.php @@ -64,7 +64,8 @@ [{"name":"WebTransaction/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/drupal7/test_synthetics_with_dt.php b/tests/integration/external/drupal7/test_synthetics_with_dt.php index 386ebef10..19bf6e17b 100644 --- a/tests/integration/external/drupal7/test_synthetics_with_dt.php +++ b/tests/integration/external/drupal7/test_synthetics_with_dt.php @@ -63,7 +63,8 @@ [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allWeb"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_cat_and_synthetics_disabled.php b/tests/integration/external/file_get_contents/test_cat_and_synthetics_disabled.php index 4ed8a7e3b..d0270ea9a 100644 --- a/tests/integration/external/file_get_contents/test_cat_and_synthetics_disabled.php +++ b/tests/integration/external/file_get_contents/test_cat_and_synthetics_disabled.php @@ -66,7 +66,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_cat_context_provided.php b/tests/integration/external/file_get_contents/test_cat_context_provided.php index 64f4d5c70..9320fa5b1 100644 --- a/tests/integration/external/file_get_contents/test_cat_context_provided.php +++ b/tests/integration/external/file_get_contents/test_cat_context_provided.php @@ -70,7 +70,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_cat_default_context.php b/tests/integration/external/file_get_contents/test_cat_default_context.php index 1ce724a67..4e71cf19c 100644 --- a/tests/integration/external/file_get_contents/test_cat_default_context.php +++ b/tests/integration/external/file_get_contents/test_cat_default_context.php @@ -52,7 +52,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_cat_disabled.php b/tests/integration/external/file_get_contents/test_cat_disabled.php index d27a0db6a..623f1f2c7 100644 --- a/tests/integration/external/file_get_contents/test_cat_disabled.php +++ b/tests/integration/external/file_get_contents/test_cat_disabled.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_cat_no_context.php b/tests/integration/external/file_get_contents/test_cat_no_context.php index 5785fd06c..b4a27eec6 100644 --- a/tests/integration/external/file_get_contents/test_cat_no_context.php +++ b/tests/integration/external/file_get_contents/test_cat_no_context.php @@ -55,7 +55,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_dt_context_provided.php b/tests/integration/external/file_get_contents/test_dt_context_provided.php index fd184ba69..1824b404a 100644 --- a/tests/integration/external/file_get_contents/test_dt_context_provided.php +++ b/tests/integration/external/file_get_contents/test_dt_context_provided.php @@ -55,7 +55,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [13, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_dt_context_provided_logging_off.php b/tests/integration/external/file_get_contents/test_dt_context_provided_logging_off.php index a745bbaa7..5d8cfd395 100644 --- a/tests/integration/external/file_get_contents/test_dt_context_provided_logging_off.php +++ b/tests/integration/external/file_get_contents/test_dt_context_provided_logging_off.php @@ -58,7 +58,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [13, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_dt_default_context.php b/tests/integration/external/file_get_contents/test_dt_default_context.php index ba7b5e3e8..255465a91 100644 --- a/tests/integration/external/file_get_contents/test_dt_default_context.php +++ b/tests/integration/external/file_get_contents/test_dt_default_context.php @@ -44,7 +44,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_dt_disabled.php b/tests/integration/external/file_get_contents/test_dt_disabled.php index 1eec54186..1ead82632 100644 --- a/tests/integration/external/file_get_contents/test_dt_disabled.php +++ b/tests/integration/external/file_get_contents/test_dt_disabled.php @@ -48,7 +48,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_dt_disabled_cat_disabled.php b/tests/integration/external/file_get_contents/test_dt_disabled_cat_disabled.php index a009c685e..61a241420 100644 --- a/tests/integration/external/file_get_contents/test_dt_disabled_cat_disabled.php +++ b/tests/integration/external/file_get_contents/test_dt_disabled_cat_disabled.php @@ -39,7 +39,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_dt_newrelic_header_disabled.php b/tests/integration/external/file_get_contents/test_dt_newrelic_header_disabled.php index 46d5b2446..6a942de0e 100644 --- a/tests/integration/external/file_get_contents/test_dt_newrelic_header_disabled.php +++ b/tests/integration/external/file_get_contents/test_dt_newrelic_header_disabled.php @@ -44,7 +44,8 @@ [{"name":"Supportability/TraceContext/Create/Success"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_dt_no_context.php b/tests/integration/external/file_get_contents/test_dt_no_context.php index f6674b95c..f76a9f037 100644 --- a/tests/integration/external/file_get_contents/test_dt_no_context.php +++ b/tests/integration/external/file_get_contents/test_dt_no_context.php @@ -44,7 +44,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_http_response_header_cv.php b/tests/integration/external/file_get_contents/test_http_response_header_cv.php index c0120cc4c..a65bc6f5f 100644 --- a/tests/integration/external/file_get_contents/test_http_response_header_cv.php +++ b/tests/integration/external/file_get_contents/test_http_response_header_cv.php @@ -61,7 +61,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_synthetics_context_provided.php b/tests/integration/external/file_get_contents/test_synthetics_context_provided.php index 183a838ee..1e5df3ed2 100644 --- a/tests/integration/external/file_get_contents/test_synthetics_context_provided.php +++ b/tests/integration/external/file_get_contents/test_synthetics_context_provided.php @@ -88,7 +88,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_synthetics_default_context.php b/tests/integration/external/file_get_contents/test_synthetics_default_context.php index b6ef4ffce..752a92c15 100644 --- a/tests/integration/external/file_get_contents/test_synthetics_default_context.php +++ b/tests/integration/external/file_get_contents/test_synthetics_default_context.php @@ -70,7 +70,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_synthetics_disabled.php b/tests/integration/external/file_get_contents/test_synthetics_disabled.php index 17835608c..4650c383a 100644 --- a/tests/integration/external/file_get_contents/test_synthetics_disabled.php +++ b/tests/integration/external/file_get_contents/test_synthetics_disabled.php @@ -67,7 +67,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_synthetics_no_context.php b/tests/integration/external/file_get_contents/test_synthetics_no_context.php index cb6adf4b8..768a20a9c 100644 --- a/tests/integration/external/file_get_contents/test_synthetics_no_context.php +++ b/tests/integration/external/file_get_contents/test_synthetics_no_context.php @@ -74,7 +74,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_synthetics_with_cat_disabled.php b/tests/integration/external/file_get_contents/test_synthetics_with_cat_disabled.php index 8ad02a415..581e805c4 100644 --- a/tests/integration/external/file_get_contents/test_synthetics_with_cat_disabled.php +++ b/tests/integration/external/file_get_contents/test_synthetics_with_cat_disabled.php @@ -68,7 +68,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_synthetics_with_dt.php b/tests/integration/external/file_get_contents/test_synthetics_with_dt.php index 72b816cd0..e4517d8a9 100644 --- a/tests/integration/external/file_get_contents/test_synthetics_with_dt.php +++ b/tests/integration/external/file_get_contents/test_synthetics_with_dt.php @@ -69,7 +69,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/file_get_contents/test_synthetics_with_dt_logging_off.php b/tests/integration/external/file_get_contents/test_synthetics_with_dt_logging_off.php index f6a829dd4..cf35c1c6b 100644 --- a/tests/integration/external/file_get_contents/test_synthetics_with_dt_logging_off.php +++ b/tests/integration/external/file_get_contents/test_synthetics_with_dt_logging_off.php @@ -72,7 +72,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle5/test_cat.php b/tests/integration/external/guzzle5/test_cat.php index 2b74411ff..9e01532df 100644 --- a/tests/integration/external/guzzle5/test_cat.php +++ b/tests/integration/external/guzzle5/test_cat.php @@ -55,7 +55,8 @@ [{"name":"Supportability/Unsupported/curl_setopt/CURLOPT_HEADERFUNCTION/closure"}, [3, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle5/test_dt.php b/tests/integration/external/guzzle5/test_dt.php index f5f8d1aee..4992d91f4 100644 --- a/tests/integration/external/guzzle5/test_dt.php +++ b/tests/integration/external/guzzle5/test_dt.php @@ -48,7 +48,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle5/test_dt_newrelic_header_disabled.php b/tests/integration/external/guzzle5/test_dt_newrelic_header_disabled.php index 2c85df9e8..0a3352ba6 100644 --- a/tests/integration/external/guzzle5/test_dt_newrelic_header_disabled.php +++ b/tests/integration/external/guzzle5/test_dt_newrelic_header_disabled.php @@ -48,7 +48,8 @@ [{"name":"Supportability/TraceContext/Create/Success"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle5/test_dt_synthetics.php b/tests/integration/external/guzzle5/test_dt_synthetics.php index 4786ea923..042f9f3eb 100644 --- a/tests/integration/external/guzzle5/test_dt_synthetics.php +++ b/tests/integration/external/guzzle5/test_dt_synthetics.php @@ -79,7 +79,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, ["??", "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle5/test_dt_synthetics_logging_off.php b/tests/integration/external/guzzle5/test_dt_synthetics_logging_off.php index ac2b9f200..559517104 100644 --- a/tests/integration/external/guzzle5/test_dt_synthetics_logging_off.php +++ b/tests/integration/external/guzzle5/test_dt_synthetics_logging_off.php @@ -82,7 +82,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, ["??", "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle5/test_no_cat_no_dt.php b/tests/integration/external/guzzle5/test_no_cat_no_dt.php index 35a34feb5..241a01fa9 100644 --- a/tests/integration/external/guzzle5/test_no_cat_no_dt.php +++ b/tests/integration/external/guzzle5/test_no_cat_no_dt.php @@ -45,7 +45,8 @@ [{"name":"Supportability/library/Guzzle 4-5/detected"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle6/test_cat.php b/tests/integration/external/guzzle6/test_cat.php index 9f4b40f2c..834185ad4 100644 --- a/tests/integration/external/guzzle6/test_cat.php +++ b/tests/integration/external/guzzle6/test_cat.php @@ -56,7 +56,8 @@ [{"name":"Supportability/Unsupported/curl_setopt/CURLOPT_HEADERFUNCTION/closure"}, [3, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle6/test_dt.php b/tests/integration/external/guzzle6/test_dt.php index da4d6584c..d405abdfa 100644 --- a/tests/integration/external/guzzle6/test_dt.php +++ b/tests/integration/external/guzzle6/test_dt.php @@ -51,7 +51,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle6/test_dt_newrelic_header_disabled.php b/tests/integration/external/guzzle6/test_dt_newrelic_header_disabled.php index ad87177dd..290ca52e7 100644 --- a/tests/integration/external/guzzle6/test_dt_newrelic_header_disabled.php +++ b/tests/integration/external/guzzle6/test_dt_newrelic_header_disabled.php @@ -51,7 +51,8 @@ [{"name":"Supportability/TraceContext/Create/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle6/test_dt_synthetics.php b/tests/integration/external/guzzle6/test_dt_synthetics.php index ce80463ad..ccfc8ac31 100644 --- a/tests/integration/external/guzzle6/test_dt_synthetics.php +++ b/tests/integration/external/guzzle6/test_dt_synthetics.php @@ -74,7 +74,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle6/test_dt_synthetics_logging_off.php b/tests/integration/external/guzzle6/test_dt_synthetics_logging_off.php index c843f9571..3981082e5 100644 --- a/tests/integration/external/guzzle6/test_dt_synthetics_logging_off.php +++ b/tests/integration/external/guzzle6/test_dt_synthetics_logging_off.php @@ -77,7 +77,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle6/test_no_cat_no_dt.php b/tests/integration/external/guzzle6/test_no_cat_no_dt.php index eb60de85c..8d42dff85 100644 --- a/tests/integration/external/guzzle6/test_no_cat_no_dt.php +++ b/tests/integration/external/guzzle6/test_no_cat_no_dt.php @@ -46,7 +46,8 @@ [{"name":"Supportability/library/Guzzle 6/detected"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle7/test_cat.php b/tests/integration/external/guzzle7/test_cat.php index 23686fa53..c865cc94f 100644 --- a/tests/integration/external/guzzle7/test_cat.php +++ b/tests/integration/external/guzzle7/test_cat.php @@ -56,7 +56,8 @@ [{"name":"Supportability/Unsupported/curl_setopt/CURLOPT_HEADERFUNCTION/closure"}, [3, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle7/test_dt.php b/tests/integration/external/guzzle7/test_dt.php index 0b82d6efb..3b4375c5d 100644 --- a/tests/integration/external/guzzle7/test_dt.php +++ b/tests/integration/external/guzzle7/test_dt.php @@ -51,7 +51,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle7/test_dt_newrelic_header_disabled.php b/tests/integration/external/guzzle7/test_dt_newrelic_header_disabled.php index 6587c3e4c..3f98fd74d 100644 --- a/tests/integration/external/guzzle7/test_dt_newrelic_header_disabled.php +++ b/tests/integration/external/guzzle7/test_dt_newrelic_header_disabled.php @@ -51,7 +51,8 @@ [{"name":"Supportability/TraceContext/Create/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle7/test_dt_synthetics.php b/tests/integration/external/guzzle7/test_dt_synthetics.php index dd293905b..18541bfad 100644 --- a/tests/integration/external/guzzle7/test_dt_synthetics.php +++ b/tests/integration/external/guzzle7/test_dt_synthetics.php @@ -74,7 +74,8 @@ [{"name":"Supportability/DistributedTrace/CreatePayload/Success"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/guzzle7/test_no_cat_no_dt.php b/tests/integration/external/guzzle7/test_no_cat_no_dt.php index ad1996e3a..5d6413715 100644 --- a/tests/integration/external/guzzle7/test_no_cat_no_dt.php +++ b/tests/integration/external/guzzle7/test_no_cat_no_dt.php @@ -46,7 +46,8 @@ [{"name":"Supportability/library/Guzzle 6/detected"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/http/test_v1_cat.php b/tests/integration/external/http/test_v1_cat.php index 82fb7dc48..87f71f68f 100644 --- a/tests/integration/external/http/test_v1_cat.php +++ b/tests/integration/external/http/test_v1_cat.php @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/http/test_v1_cat_and_synthetics_disabled.php b/tests/integration/external/http/test_v1_cat_and_synthetics_disabled.php index f3b1cb540..7392577df 100644 --- a/tests/integration/external/http/test_v1_cat_and_synthetics_disabled.php +++ b/tests/integration/external/http/test_v1_cat_and_synthetics_disabled.php @@ -75,7 +75,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/http/test_v1_cat_disabled.php b/tests/integration/external/http/test_v1_cat_disabled.php index f702d5334..5ab092bda 100644 --- a/tests/integration/external/http/test_v1_cat_disabled.php +++ b/tests/integration/external/http/test_v1_cat_disabled.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/http/test_v1_synthetics.php b/tests/integration/external/http/test_v1_synthetics.php index 29644e791..5b85fe973 100644 --- a/tests/integration/external/http/test_v1_synthetics.php +++ b/tests/integration/external/http/test_v1_synthetics.php @@ -75,7 +75,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/http/test_v1_synthetics_disabled.php b/tests/integration/external/http/test_v1_synthetics_disabled.php index f5c700dad..e40416334 100644 --- a/tests/integration/external/http/test_v1_synthetics_disabled.php +++ b/tests/integration/external/http/test_v1_synthetics_disabled.php @@ -78,7 +78,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/http/test_v1_synthetics_with_cat_disabled.php b/tests/integration/external/http/test_v1_synthetics_with_cat_disabled.php index f7fcf1c46..fcf9c1556 100644 --- a/tests/integration/external/http/test_v1_synthetics_with_cat_disabled.php +++ b/tests/integration/external/http/test_v1_synthetics_with_cat_disabled.php @@ -77,7 +77,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/http/test_v2_cat.php b/tests/integration/external/http/test_v2_cat.php index 742e92a4c..2d7c759a6 100644 --- a/tests/integration/external/http/test_v2_cat.php +++ b/tests/integration/external/http/test_v2_cat.php @@ -44,7 +44,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/external/test_curl_multi_add_remove_handles.php b/tests/integration/external/test_curl_multi_add_remove_handles.php index bb1e2bfa6..fb913ee32 100644 --- a/tests/integration/external/test_curl_multi_add_remove_handles.php +++ b/tests/integration/external/test_curl_multi_add_remove_handles.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/drupal/test_invoke_all_with.php b/tests/integration/frameworks/drupal/test_invoke_all_with.php index 289d4e69a..7380e4562 100644 --- a/tests/integration/frameworks/drupal/test_invoke_all_with.php +++ b/tests/integration/frameworks/drupal/test_invoke_all_with.php @@ -57,7 +57,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Custom/invoke_callback", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/drupal/test_module_invoke_all.php b/tests/integration/frameworks/drupal/test_module_invoke_all.php index c9b70e1cf..0d5b235e2 100644 --- a/tests/integration/frameworks/drupal/test_module_invoke_all.php +++ b/tests/integration/frameworks/drupal/test_module_invoke_all.php @@ -35,23 +35,22 @@ "?? timeframe start", "?? timeframe stop", [ - [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, - [1, "??", "??", "??", "??", "??"]], - [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, - [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Hook/hook_with_arg"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Hook/f"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Hook/g"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Hook/h"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Module/module"}, [5, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]] + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"},[1, "??", "??", "??", "??", "??"]], + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Hook/hook_with_arg"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Hook/f"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Hook/g"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Hook/h"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Module/module"}, [5, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/drupal/test_module_invoke_all.php8.php b/tests/integration/frameworks/drupal/test_module_invoke_all.php8.php index fc694e039..ef94baedc 100644 --- a/tests/integration/frameworks/drupal/test_module_invoke_all.php8.php +++ b/tests/integration/frameworks/drupal/test_module_invoke_all.php8.php @@ -36,22 +36,21 @@ "?? timeframe start", "?? timeframe stop", [ - [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, - [1, "??", "??", "??", "??", "??"]], - [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, - [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Hook/hook_with_arg"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Hook/f"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Hook/g"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Framework/Drupal/Module/module"}, [3, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]] + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"},[1, "??", "??", "??", "??", "??"]], + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Hook/hook_with_arg"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Hook/f"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Hook/g"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/Drupal/Module/module"}, [3, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/framework/Drupal/forced"}, [1, 0, 0, 0, 0, 0]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/laravel/test_artisan_name.php b/tests/integration/frameworks/laravel/test_artisan_name.php index 782620d8f..c9a887e1a 100644 --- a/tests/integration/frameworks/laravel/test_artisan_name.php +++ b/tests/integration/frameworks/laravel/test_artisan_name.php @@ -28,7 +28,8 @@ [{"name":"Supportability/framework/Laravel/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/laravel/test_artisan_name_logging_off.php b/tests/integration/frameworks/laravel/test_artisan_name_logging_off.php index 92f012815..e5105665a 100644 --- a/tests/integration/frameworks/laravel/test_artisan_name_logging_off.php +++ b/tests/integration/frameworks/laravel/test_artisan_name_logging_off.php @@ -31,7 +31,8 @@ [{"name":"Supportability/framework/Laravel/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/laravel/test_artisan_name_non_input.php b/tests/integration/frameworks/laravel/test_artisan_name_non_input.php index c403da89d..8e0dcb166 100644 --- a/tests/integration/frameworks/laravel/test_artisan_name_non_input.php +++ b/tests/integration/frameworks/laravel/test_artisan_name_non_input.php @@ -28,7 +28,8 @@ [{"name":"Supportability/framework/Laravel/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/laravel/test_artisan_name_non_string.php b/tests/integration/frameworks/laravel/test_artisan_name_non_string.php index d255f3b10..d2d1855b6 100644 --- a/tests/integration/frameworks/laravel/test_artisan_name_non_string.php +++ b/tests/integration/frameworks/laravel/test_artisan_name_non_string.php @@ -28,7 +28,8 @@ [{"name":"Supportability/framework/Laravel/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/magento/test_temp_tables.php b/tests/integration/frameworks/magento/test_temp_tables.php index 8fb8b0550..3328f6a8f 100644 --- a/tests/integration/frameworks/magento/test_temp_tables.php +++ b/tests/integration/frameworks/magento/test_temp_tables.php @@ -39,9 +39,9 @@ [{"name":"Datastore/statement/SQLite/search_/create"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_/drop"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_/insert"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/statement/SQLite/search_tmp_*\/create"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/statement/SQLite/search_tmp_*\/drop"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/statement/SQLite/search_tmp_*\/insert"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/statement/SQLite/search_tmp_*\/create"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/statement/SQLite/search_tmp_*\/drop"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/statement/SQLite/search_tmp_*\/insert"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_tmp_/create"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_tmp_/drop"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_tmp_/insert"}, [1, "??", "??", "??", "??", "??"]], @@ -70,7 +70,8 @@ "scope":"OtherTransaction/Action/unknown"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/magento/test_temp_tables_logging_off.php b/tests/integration/frameworks/magento/test_temp_tables_logging_off.php index 52568e735..74de05a78 100644 --- a/tests/integration/frameworks/magento/test_temp_tables_logging_off.php +++ b/tests/integration/frameworks/magento/test_temp_tables_logging_off.php @@ -42,9 +42,9 @@ [{"name":"Datastore/statement/SQLite/search_/create"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_/drop"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_/insert"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/statement/SQLite/search_tmp_*\/create"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/statement/SQLite/search_tmp_*\/drop"}, [2, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/statement/SQLite/search_tmp_*\/insert"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/statement/SQLite/search_tmp_*\/create"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/statement/SQLite/search_tmp_*\/drop"}, [2, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/statement/SQLite/search_tmp_*\/insert"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_tmp_/create"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_tmp_/drop"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/statement/SQLite/search_tmp_/insert"}, [1, "??", "??", "??", "??", "??"]], @@ -73,7 +73,8 @@ "scope":"OtherTransaction/Action/unknown"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/silex/test_basic.php b/tests/integration/frameworks/silex/test_basic.php index 945b198ec..5bf4a170c 100644 --- a/tests/integration/frameworks/silex/test_basic.php +++ b/tests/integration/frameworks/silex/test_basic.php @@ -28,7 +28,8 @@ [{"name":"Supportability/framework/Silex/detected"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/silex/test_basic_logging_off.php b/tests/integration/frameworks/silex/test_basic_logging_off.php index cb8f849bc..240450840 100644 --- a/tests/integration/frameworks/silex/test_basic_logging_off.php +++ b/tests/integration/frameworks/silex/test_basic_logging_off.php @@ -31,7 +31,8 @@ [{"name":"Supportability/framework/Silex/detected"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/silex/test_invalid_attributes.php b/tests/integration/frameworks/silex/test_invalid_attributes.php index dc0cdd5a0..cb4fcc153 100644 --- a/tests/integration/frameworks/silex/test_invalid_attributes.php +++ b/tests/integration/frameworks/silex/test_invalid_attributes.php @@ -28,7 +28,8 @@ [{"name":"Supportability/framework/Silex/detected"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/silex/test_invalid_request.php b/tests/integration/frameworks/silex/test_invalid_request.php index 090f8db38..3a428ae71 100644 --- a/tests/integration/frameworks/silex/test_invalid_request.php +++ b/tests/integration/frameworks/silex/test_invalid_request.php @@ -27,7 +27,8 @@ [{"name":"Supportability/framework/Silex/detected"}, [1, 0, 0, 0, 0, 0]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/wordpress/test_site_specific_tables.php b/tests/integration/frameworks/wordpress/test_site_specific_tables.php index 941fabcf6..c2d054067 100644 --- a/tests/integration/frameworks/wordpress/test_site_specific_tables.php +++ b/tests/integration/frameworks/wordpress/test_site_specific_tables.php @@ -70,7 +70,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/wordpress/test_site_specific_tables_logging_off.php b/tests/integration/frameworks/wordpress/test_site_specific_tables_logging_off.php index c1ea98d20..96ebd32c9 100644 --- a/tests/integration/frameworks/wordpress/test_site_specific_tables_logging_off.php +++ b/tests/integration/frameworks/wordpress/test_site_specific_tables_logging_off.php @@ -73,7 +73,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/wordpress/test_wordpress_apply_filters.php b/tests/integration/frameworks/wordpress/test_wordpress_apply_filters.php index 062f6d4e6..7893fa4da 100644 --- a/tests/integration/frameworks/wordpress/test_wordpress_apply_filters.php +++ b/tests/integration/frameworks/wordpress/test_wordpress_apply_filters.php @@ -37,19 +37,20 @@ "?? start time", "?? stop time", [ - [{"name": "DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Framework/WordPress/Hook/f"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Framework/WordPress/Hook/g"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Framework/WordPress/Hook/h"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/framework/WordPress/forced"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/WordPress/Hook/f"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/WordPress/Hook/g"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/WordPress/Hook/h"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/framework/WordPress/forced"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/frameworks/wordpress/test_wordpress_do_action.php b/tests/integration/frameworks/wordpress/test_wordpress_do_action.php index cad1bf607..2f208cc39 100644 --- a/tests/integration/frameworks/wordpress/test_wordpress_do_action.php +++ b/tests/integration/frameworks/wordpress/test_wordpress_do_action.php @@ -36,19 +36,20 @@ "?? start time", "?? stop time", [ - [{"name": "DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Framework/WordPress/Hook/f"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Framework/WordPress/Hook/g"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Framework/WordPress/Hook/h"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/framework/WordPress/forced"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/WordPress/Hook/f"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/WordPress/Hook/g"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Framework/WordPress/Hook/h"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/framework/WordPress/forced"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_force_framework_0.php b/tests/integration/ini/test_force_framework_0.php index c50bf7987..0cedbb2af 100644 --- a/tests/integration/ini/test_force_framework_0.php +++ b/tests/integration/ini/test_force_framework_0.php @@ -27,7 +27,8 @@ [{"name":"Supportability/framework/None/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_force_framework_1.php b/tests/integration/ini/test_force_framework_1.php index 09a681ddc..09d4bb496 100644 --- a/tests/integration/ini/test_force_framework_1.php +++ b/tests/integration/ini/test_force_framework_1.php @@ -27,7 +27,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_force_framework_2.php b/tests/integration/ini/test_force_framework_2.php index 1da2288a0..96c87d21e 100644 --- a/tests/integration/ini/test_force_framework_2.php +++ b/tests/integration/ini/test_force_framework_2.php @@ -28,7 +28,8 @@ [{"name":"Supportability/framework/Drupal8/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_force_framework_3.php b/tests/integration/ini/test_force_framework_3.php index 5e9832f9b..e2e8f8e51 100644 --- a/tests/integration/ini/test_force_framework_3.php +++ b/tests/integration/ini/test_force_framework_3.php @@ -33,7 +33,8 @@ [{"name":"Supportability/framework/CakePHP/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_force_framework_5.php b/tests/integration/ini/test_force_framework_5.php index 8ed595866..e8df9eaa2 100644 --- a/tests/integration/ini/test_force_framework_5.php +++ b/tests/integration/ini/test_force_framework_5.php @@ -31,7 +31,8 @@ [{"name":"Supportability/framework/Drupal/forced"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_force_framework_6.php b/tests/integration/ini/test_force_framework_6.php index 9e18e6856..40af734a1 100644 --- a/tests/integration/ini/test_force_framework_6.php +++ b/tests/integration/ini/test_force_framework_6.php @@ -29,7 +29,8 @@ [{"name":"Supportability/execute/user/call_count"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_ini_001.php b/tests/integration/ini/test_ini_001.php index dc7617dca..a0e96593f 100644 --- a/tests/integration/ini/test_ini_001.php +++ b/tests/integration/ini/test_ini_001.php @@ -26,7 +26,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_ini_002.php b/tests/integration/ini/test_ini_002.php index 0f7830d9c..aeadd6250 100644 --- a/tests/integration/ini/test_ini_002.php +++ b/tests/integration/ini/test_ini_002.php @@ -26,7 +26,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_ini_003.php b/tests/integration/ini/test_ini_003.php index d4a61d265..ae1d18936 100644 --- a/tests/integration/ini/test_ini_003.php +++ b/tests/integration/ini/test_ini_003.php @@ -48,7 +48,8 @@ [{"name":"OtherTransaction/Function/f_0"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_ini_003_logging_off.php b/tests/integration/ini/test_ini_003_logging_off.php index 8d022758e..87a146e37 100644 --- a/tests/integration/ini/test_ini_003_logging_off.php +++ b/tests/integration/ini/test_ini_003_logging_off.php @@ -51,7 +51,8 @@ [{"name":"OtherTransaction/Function/f_0"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_ini_004.php b/tests/integration/ini/test_ini_004.php index 9eb3350b9..298d6a85b 100644 --- a/tests/integration/ini/test_ini_004.php +++ b/tests/integration/ini/test_ini_004.php @@ -38,7 +38,8 @@ [{"name":"Supportability/InstrumentedFunction/Foobar::interesting_method"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_transaction_tracer_max_segments.php b/tests/integration/ini/test_transaction_tracer_max_segments.php index 758b570e1..3598ff3d4 100644 --- a/tests/integration/ini/test_transaction_tracer_max_segments.php +++ b/tests/integration/ini/test_transaction_tracer_max_segments.php @@ -73,7 +73,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_transaction_tracer_max_segments_nested.php b/tests/integration/ini/test_transaction_tracer_max_segments_nested.php index 7a97a6448..f00ba78ff 100644 --- a/tests/integration/ini/test_transaction_tracer_max_segments_nested.php +++ b/tests/integration/ini/test_transaction_tracer_max_segments_nested.php @@ -43,7 +43,7 @@ [ "?? start time", "?? end time", "`1", { - "code.lineno": 187, + "code.lineno": 188, "code.filepath": "__FILE__", "code.function": "great_grandmother" }, @@ -51,7 +51,7 @@ [ "?? start time", "?? end time", "`2", { - "code.lineno": 182, + "code.lineno": 183, "code.filepath": "__FILE__", "code.function": "grandmother" }, @@ -59,7 +59,7 @@ [ "?? start time", "?? end time", "`3", { - "code.lineno": 179, + "code.lineno": 180, "code.filepath": "__FILE__", "code.function": "my_function" }, [] @@ -67,7 +67,7 @@ [ "?? start time", "?? end time", "`3", { - "code.lineno": 179, + "code.lineno": 180, "code.filepath": "__FILE__", "code.function": "my_function" }, [] @@ -75,7 +75,7 @@ [ "?? start time", "?? end time", "`3", { - "code.lineno": 179, + "code.lineno": 180, "code.filepath": "__FILE__", "code.function": "my_function" }, [] @@ -83,7 +83,7 @@ [ "?? start time", "?? end time", "`3", { - "code.lineno": 179, + "code.lineno": 180, "code.filepath": "__FILE__", "code.function": "my_function" }, [] @@ -91,7 +91,7 @@ [ "?? start time", "?? end time", "`3", { - "code.lineno": 179, + "code.lineno": 180, "code.filepath": "__FILE__", "code.function": "my_function" }, [] @@ -99,7 +99,7 @@ [ "?? start time", "?? end time", "`3", { - "code.lineno": 179, + "code.lineno": 180, "code.filepath": "__FILE__", "code.function": "my_function" }, [] @@ -107,7 +107,7 @@ [ "?? start time", "?? end time", "`3", { - "code.lineno": 179, + "code.lineno": 180, "code.filepath": "__FILE__", "code.function": "my_function" }, [] @@ -168,7 +168,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_transaction_tracer_max_segments_nested.php5.php b/tests/integration/ini/test_transaction_tracer_max_segments_nested.php5.php index f5fb391c9..d4fc8557c 100644 --- a/tests/integration/ini/test_transaction_tracer_max_segments_nested.php5.php +++ b/tests/integration/ini/test_transaction_tracer_max_segments_nested.php5.php @@ -117,7 +117,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_transaction_tracer_max_segments_no_cap.php b/tests/integration/ini/test_transaction_tracer_max_segments_no_cap.php index fe3f05356..fa9b6de80 100644 --- a/tests/integration/ini/test_transaction_tracer_max_segments_no_cap.php +++ b/tests/integration/ini/test_transaction_tracer_max_segments_no_cap.php @@ -73,7 +73,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_transaction_tracer_max_segments_with_datastore.php b/tests/integration/ini/test_transaction_tracer_max_segments_with_datastore.php index cd233aa81..98f4a2cd2 100644 --- a/tests/integration/ini/test_transaction_tracer_max_segments_with_datastore.php +++ b/tests/integration/ini/test_transaction_tracer_max_segments_with_datastore.php @@ -43,7 +43,7 @@ [ "?? start time", "?? end time", "`1", { - "code.lineno": 139, + "code.lineno": 140, "code.filepath": "__FILE__", "code.function": "my_function_3" }, [] @@ -120,7 +120,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/ini/test_transaction_tracer_max_segments_with_datastore.php5.php b/tests/integration/ini/test_transaction_tracer_max_segments_with_datastore.php5.php index 496b522e8..9e6ed5218 100644 --- a/tests/integration/ini/test_transaction_tracer_max_segments_with_datastore.php5.php +++ b/tests/integration/ini/test_transaction_tracer_max_segments_with_datastore.php5.php @@ -109,7 +109,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/lang/test_generator_5.6-7.0.php b/tests/integration/lang/test_generator_5.6-7.0.php index 21c99c787..d709aba96 100644 --- a/tests/integration/lang/test_generator_5.6-7.0.php +++ b/tests/integration/lang/test_generator_5.6-7.0.php @@ -46,7 +46,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/lang/test_generator_7.1-7.4.php b/tests/integration/lang/test_generator_7.1-7.4.php index 757cd22d4..9c145c086 100644 --- a/tests/integration/lang/test_generator_7.1-7.4.php +++ b/tests/integration/lang/test_generator_7.1-7.4.php @@ -42,7 +42,8 @@ [{"name":"Supportability/api/add_custom_tracer"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/lang/test_generator_8.0.php b/tests/integration/lang/test_generator_8.0.php index 62139de98..e7a64cf73 100644 --- a/tests/integration/lang/test_generator_8.0.php +++ b/tests/integration/lang/test_generator_8.0.php @@ -32,22 +32,21 @@ "?? timeframe start", "?? timeframe stop", [ - [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, - [1, "??", "??", "??", "??", "??"]], - [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, - [1, "??", "??", "??", "??", "??"]], - [{"name":"Custom/xrange"}, [11, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Custom/xrange","scope":"OtherTransaction/php__FILE__"}, - [11, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/InstrumentedFunction/xrange"}, [11, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/api/add_custom_tracer"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Custom/xrange"}, [11, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/all"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Custom/xrange", + "scope":"OtherTransaction/php__FILE__"}, [11, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/InstrumentedFunction/xrange"}, [11, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/api/add_custom_tracer"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_basic.php b/tests/integration/logging/monolog2/test_monolog_basic.php index 8c04625eb..467e6fddd 100644 --- a/tests/integration/logging/monolog2/test_monolog_basic.php +++ b/tests/integration/logging/monolog2/test_monolog_basic.php @@ -61,7 +61,8 @@ [{"name": "Supportability/PHP/package/monolog/monolog/2/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_basic_clm.php b/tests/integration/logging/monolog2/test_monolog_basic_clm.php index 5ed62d3b3..18ff817c2 100644 --- a/tests/integration/logging/monolog2/test_monolog_basic_clm.php +++ b/tests/integration/logging/monolog2/test_monolog_basic_clm.php @@ -49,7 +49,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ @@ -96,7 +97,7 @@ }, {}, { - "code.lineno": 328, + "code.lineno": 340, "code.namespace":"Monolog\\Logger", "code.filepath": "??", "code.function": "addRecord" diff --git a/tests/integration/logging/monolog2/test_monolog_basic_clm_off.php b/tests/integration/logging/monolog2/test_monolog_basic_clm_off.php index 3c656ac97..9174b57a7 100644 --- a/tests/integration/logging/monolog2/test_monolog_basic_clm_off.php +++ b/tests/integration/logging/monolog2/test_monolog_basic_clm_off.php @@ -48,7 +48,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_cat.php b/tests/integration/logging/monolog2/test_monolog_cat.php index b192b9ce9..28b07a510 100644 --- a/tests/integration/logging/monolog2/test_monolog_cat.php +++ b/tests/integration/logging/monolog2/test_monolog_cat.php @@ -60,7 +60,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_default.php b/tests/integration/logging/monolog2/test_monolog_context_default.php index 859ce1ffe..dcf714534 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_default.php +++ b/tests/integration/logging/monolog2/test_monolog_context_default.php @@ -48,7 +48,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_exception.php b/tests/integration/logging/monolog2/test_monolog_context_exception.php index c806bddc8..1a3af273e 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_exception.php +++ b/tests/integration/logging/monolog2/test_monolog_context_exception.php @@ -50,7 +50,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_extra1.php b/tests/integration/logging/monolog2/test_monolog_context_filter_extra1.php index 13875a0a6..2ca1f2861 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_extra1.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_extra1.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_extra2.php b/tests/integration/logging/monolog2/test_monolog_context_filter_extra2.php index b55735e92..4d2797632 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_extra2.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_extra2.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_extra3.php b/tests/integration/logging/monolog2/test_monolog_context_filter_extra3.php index e90245135..a9f8a6b9d 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_extra3.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_extra3.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_extra4.php b/tests/integration/logging/monolog2/test_monolog_context_filter_extra4.php index dc232b6dc..047fb2027 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_extra4.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_extra4.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_extra5.php b/tests/integration/logging/monolog2/test_monolog_context_filter_extra5.php index 1d3934a1d..d0a0b4d91 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_extra5.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_extra5.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule1.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule1.php index 0cb138798..8dbfdddc4 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule1.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule1.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule10.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule10.php index eeff02ad8..18697f092 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule10.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule10.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule11.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule11.php index 854579344..ffd6f579b 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule11.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule11.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule2.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule2.php index 2b7847f73..5a248a86a 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule2.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule2.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule3.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule3.php index 864173103..9876b0a80 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule3.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule3.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule4.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule4.php index 3f2f01cdd..54706fcd8 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule4.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule4.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule5.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule5.php index ed6e512b5..b37e07c53 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule5.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule5.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule6.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule6.php index 22ec5cebe..ed89207a6 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule6.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule6.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule7.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule7.php index f9be37447..ae85e5201 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule7.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule7.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule8.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule8.php index 9e36e3bcb..8f9e4ca28 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule8.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule8.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_filter_rule9.php b/tests/integration/logging/monolog2/test_monolog_context_filter_rule9.php index ba6ba4cc7..3b01a0dfc 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_filter_rule9.php +++ b/tests/integration/logging/monolog2/test_monolog_context_filter_rule9.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_hsm_disable_forwarding.php b/tests/integration/logging/monolog2/test_monolog_context_hsm_disable_forwarding.php index bd10ed610..9d7deb336 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_hsm_disable_forwarding.php +++ b/tests/integration/logging/monolog2/test_monolog_context_hsm_disable_forwarding.php @@ -65,7 +65,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_limits_1.php b/tests/integration/logging/monolog2/test_monolog_context_limits_1.php index a01498ead..5d55319d8 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_limits_1.php +++ b/tests/integration/logging/monolog2/test_monolog_context_limits_1.php @@ -49,7 +49,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_limits_2.php b/tests/integration/logging/monolog2/test_monolog_context_limits_2.php index 213b7379a..f314a45c1 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_limits_2.php +++ b/tests/integration/logging/monolog2/test_monolog_context_limits_2.php @@ -49,7 +49,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_precedence_1.php b/tests/integration/logging/monolog2/test_monolog_context_precedence_1.php index 6d571330c..498cef79b 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_precedence_1.php +++ b/tests/integration/logging/monolog2/test_monolog_context_precedence_1.php @@ -52,7 +52,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_precedence_2.php b/tests/integration/logging/monolog2/test_monolog_context_precedence_2.php index 7bf8b13ce..929c7c5ac 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_precedence_2.php +++ b/tests/integration/logging/monolog2/test_monolog_context_precedence_2.php @@ -52,7 +52,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_context_simple.php b/tests/integration/logging/monolog2/test_monolog_context_simple.php index a0f0b7260..977d3c139 100644 --- a/tests/integration/logging/monolog2/test_monolog_context_simple.php +++ b/tests/integration/logging/monolog2/test_monolog_context_simple.php @@ -63,7 +63,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_decoration_and_forwarding.php b/tests/integration/logging/monolog2/test_monolog_decoration_and_forwarding.php index 82ad4be61..8bab481b2 100644 --- a/tests/integration/logging/monolog2/test_monolog_decoration_and_forwarding.php +++ b/tests/integration/logging/monolog2/test_monolog_decoration_and_forwarding.php @@ -117,7 +117,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_decoration_basic.php b/tests/integration/logging/monolog2/test_monolog_decoration_basic.php index 4ae75c9e4..1b3141a65 100644 --- a/tests/integration/logging/monolog2/test_monolog_decoration_basic.php +++ b/tests/integration/logging/monolog2/test_monolog_decoration_basic.php @@ -115,7 +115,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_decoration_multiple_handlers.php b/tests/integration/logging/monolog2/test_monolog_decoration_multiple_handlers.php index 4467366f2..bd0a93b75 100644 --- a/tests/integration/logging/monolog2/test_monolog_decoration_multiple_handlers.php +++ b/tests/integration/logging/monolog2/test_monolog_decoration_multiple_handlers.php @@ -165,7 +165,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_disable_forwarding.php b/tests/integration/logging/monolog2/test_monolog_disable_forwarding.php index ccfa6931b..99bc62edc 100644 --- a/tests/integration/logging/monolog2/test_monolog_disable_forwarding.php +++ b/tests/integration/logging/monolog2/test_monolog_disable_forwarding.php @@ -60,7 +60,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_disable_logging.php b/tests/integration/logging/monolog2/test_monolog_disable_logging.php index c6a3756df..e6ccdfe0e 100644 --- a/tests/integration/logging/monolog2/test_monolog_disable_logging.php +++ b/tests/integration/logging/monolog2/test_monolog_disable_logging.php @@ -51,7 +51,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_disable_metrics.php b/tests/integration/logging/monolog2/test_monolog_disable_metrics.php index eaed5d5d4..718b14468 100644 --- a/tests/integration/logging/monolog2/test_monolog_disable_metrics.php +++ b/tests/integration/logging/monolog2/test_monolog_disable_metrics.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_drop_empty.php b/tests/integration/logging/monolog2/test_monolog_drop_empty.php index 5d48030ca..45504d370 100644 --- a/tests/integration/logging/monolog2/test_monolog_drop_empty.php +++ b/tests/integration/logging/monolog2/test_monolog_drop_empty.php @@ -61,7 +61,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_escape_chars.php b/tests/integration/logging/monolog2/test_monolog_escape_chars.php index b95a67b1f..fbba6143c 100644 --- a/tests/integration/logging/monolog2/test_monolog_escape_chars.php +++ b/tests/integration/logging/monolog2/test_monolog_escape_chars.php @@ -42,7 +42,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_hsm_disable_forwarding.php b/tests/integration/logging/monolog2/test_monolog_hsm_disable_forwarding.php index 90f78660e..3fd7ae3bb 100644 --- a/tests/integration/logging/monolog2/test_monolog_hsm_disable_forwarding.php +++ b/tests/integration/logging/monolog2/test_monolog_hsm_disable_forwarding.php @@ -61,7 +61,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic.php new file mode 100644 index 000000000..b4a8d03c5 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic.php @@ -0,0 +1,216 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_comma.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_comma.php new file mode 100644 index 000000000..c34a97ebc --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_comma.php @@ -0,0 +1,215 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_mixedcase.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_mixedcase.php new file mode 100644 index 000000000..c91d88ca1 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_mixedcase.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_mixedsources.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_mixedsources.php new file mode 100644 index 000000000..0857491a9 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_mixedsources.php @@ -0,0 +1,227 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_withspaces.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_withspaces.php new file mode 100644 index 000000000..34ffafde0 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_basic_withspaces.php @@ -0,0 +1,218 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_01.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_01.php new file mode 100644 index 000000000..8a3769dec --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_01.php @@ -0,0 +1,214 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_02.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_02.php new file mode 100644 index 000000000..f29ebff4e --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_02.php @@ -0,0 +1,126 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_03.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_03.php new file mode 100644 index 000000000..b9c15401f --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_03.php @@ -0,0 +1,117 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_04.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_04.php new file mode 100644 index 000000000..e9abceeab --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_04.php @@ -0,0 +1,209 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_05.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_05.php new file mode 100644 index 000000000..fbec1ce44 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_disabled_05.php @@ -0,0 +1,118 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_01.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_01.php new file mode 100644 index 000000000..cd570d649 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_01.php @@ -0,0 +1,216 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_02.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_02.php new file mode 100644 index 000000000..c9423d45a --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_02.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_03.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_03.php new file mode 100644 index 000000000..e86c53bbb --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_03.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_04.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_04.php new file mode 100644 index 000000000..f2ad40f0f --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_04.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_05.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_05.php new file mode 100644 index 000000000..7526e8210 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_05.php @@ -0,0 +1,216 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_06.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_06.php new file mode 100644 index 000000000..a2ccce1d4 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_06.php @@ -0,0 +1,218 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_07.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_07.php new file mode 100644 index 000000000..843e08fab --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_07.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_08.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_08.php new file mode 100644 index 000000000..7477c5823 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_08.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_08a.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_08a.php new file mode 100644 index 000000000..b3da4cf03 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_08a.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_09.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_09.php new file mode 100644 index 000000000..783bd276a --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_09.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_10.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_10.php new file mode 100644 index 000000000..aaf272ea6 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_10.php @@ -0,0 +1,218 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_11.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_11.php new file mode 100644 index 000000000..b96840866 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_11.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_11a.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_11a.php new file mode 100644 index 000000000..731e7fc6a --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_11a.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_12.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_12.php new file mode 100644 index 000000000..959443b2a --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_12.php @@ -0,0 +1,215 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_13.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_13.php new file mode 100644 index 000000000..de5c2b882 --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_13.php @@ -0,0 +1,217 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_14.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_14.php new file mode 100644 index 000000000..baef46cba --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_14.php @@ -0,0 +1,221 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_15.php b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_15.php new file mode 100644 index 000000000..b3ff5150b --- /dev/null +++ b/tests/integration/logging/monolog2/test_monolog_labels_forwarding_exclude_15.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog2/test_monolog_large_message_limit.php b/tests/integration/logging/monolog2/test_monolog_large_message_limit.php index 7a0e1eacd..58898c208 100644 --- a/tests/integration/logging/monolog2/test_monolog_large_message_limit.php +++ b/tests/integration/logging/monolog2/test_monolog_large_message_limit.php @@ -44,7 +44,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_large_message_limit_drops.php b/tests/integration/logging/monolog2/test_monolog_large_message_limit_drops.php index 313e73edd..23ba7f185 100644 --- a/tests/integration/logging/monolog2/test_monolog_large_message_limit_drops.php +++ b/tests/integration/logging/monolog2/test_monolog_large_message_limit_drops.php @@ -44,7 +44,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_limit_log_events.php b/tests/integration/logging/monolog2/test_monolog_limit_log_events.php index ccc75de41..61d3e9ac1 100644 --- a/tests/integration/logging/monolog2/test_monolog_limit_log_events.php +++ b/tests/integration/logging/monolog2/test_monolog_limit_log_events.php @@ -62,7 +62,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_limit_zero_events.php b/tests/integration/logging/monolog2/test_monolog_limit_zero_events.php index 573850d3a..27259ec45 100644 --- a/tests/integration/logging/monolog2/test_monolog_limit_zero_events.php +++ b/tests/integration/logging/monolog2/test_monolog_limit_zero_events.php @@ -62,7 +62,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid1.php b/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid1.php index c346aa55e..45d6d243c 100644 --- a/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid1.php +++ b/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid1.php @@ -46,7 +46,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/2/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid2.php b/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid2.php index ab55e0359..c755300e8 100644 --- a/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid2.php +++ b/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid2.php @@ -46,7 +46,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/2/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid3.php b/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid3.php index 616eb81f8..4a8bda669 100644 --- a/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid3.php +++ b/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid3.php @@ -46,7 +46,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/2/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid4.php b/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid4.php index 0f13144eb..48ce72595 100644 --- a/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid4.php +++ b/tests/integration/logging/monolog2/test_monolog_log_events_max_samples_stored_invalid4.php @@ -46,7 +46,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/2/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_log_level_filter.php b/tests/integration/logging/monolog2/test_monolog_log_level_filter.php index fa7902395..527546f47 100644 --- a/tests/integration/logging/monolog2/test_monolog_log_level_filter.php +++ b/tests/integration/logging/monolog2/test_monolog_log_level_filter.php @@ -61,7 +61,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/2/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_log_level_filter_invalid.php b/tests/integration/logging/monolog2/test_monolog_log_level_filter_invalid.php index 22107fd98..75a63ad64 100644 --- a/tests/integration/logging/monolog2/test_monolog_log_level_filter_invalid.php +++ b/tests/integration/logging/monolog2/test_monolog_log_level_filter_invalid.php @@ -62,7 +62,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/2/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog2/test_monolog_truncate_long_msgs.php b/tests/integration/logging/monolog2/test_monolog_truncate_long_msgs.php index 4b8303eb1..eb09c117e 100644 --- a/tests/integration/logging/monolog2/test_monolog_truncate_long_msgs.php +++ b/tests/integration/logging/monolog2/test_monolog_truncate_long_msgs.php @@ -47,7 +47,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_basic.php b/tests/integration/logging/monolog3/test_monolog_basic.php index 0e494b078..fde0fa773 100644 --- a/tests/integration/logging/monolog3/test_monolog_basic.php +++ b/tests/integration/logging/monolog3/test_monolog_basic.php @@ -60,7 +60,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_basic_clm.php b/tests/integration/logging/monolog3/test_monolog_basic_clm.php index 8fe6f3613..ed86b56d2 100644 --- a/tests/integration/logging/monolog3/test_monolog_basic_clm.php +++ b/tests/integration/logging/monolog3/test_monolog_basic_clm.php @@ -49,7 +49,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ @@ -96,7 +97,7 @@ }, {}, { - "code.lineno": 314, + "code.lineno": 332, "code.namespace":"Monolog\\Logger", "code.filepath": "??", "code.function": "addRecord" diff --git a/tests/integration/logging/monolog3/test_monolog_basic_clm_off.php b/tests/integration/logging/monolog3/test_monolog_basic_clm_off.php index e4ed19192..848fb4e5d 100644 --- a/tests/integration/logging/monolog3/test_monolog_basic_clm_off.php +++ b/tests/integration/logging/monolog3/test_monolog_basic_clm_off.php @@ -48,7 +48,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_cat.php b/tests/integration/logging/monolog3/test_monolog_cat.php index 12b0c76ae..5fe59bc0a 100644 --- a/tests/integration/logging/monolog3/test_monolog_cat.php +++ b/tests/integration/logging/monolog3/test_monolog_cat.php @@ -60,7 +60,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_default.php b/tests/integration/logging/monolog3/test_monolog_context_default.php index 9080370e6..98406c7a4 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_default.php +++ b/tests/integration/logging/monolog3/test_monolog_context_default.php @@ -48,7 +48,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_exception.php b/tests/integration/logging/monolog3/test_monolog_context_exception.php index f64a6fc29..1440756f7 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_exception.php +++ b/tests/integration/logging/monolog3/test_monolog_context_exception.php @@ -50,7 +50,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_extra1.php b/tests/integration/logging/monolog3/test_monolog_context_filter_extra1.php index 7eed2a0b7..b711eb871 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_extra1.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_extra1.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_extra2.php b/tests/integration/logging/monolog3/test_monolog_context_filter_extra2.php index 7949d2f62..d46aa28e1 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_extra2.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_extra2.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_extra3.php b/tests/integration/logging/monolog3/test_monolog_context_filter_extra3.php index c55dda857..4283e6aa5 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_extra3.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_extra3.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_extra4.php b/tests/integration/logging/monolog3/test_monolog_context_filter_extra4.php index 842d5f85b..94d994f1a 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_extra4.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_extra4.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_extra5.php b/tests/integration/logging/monolog3/test_monolog_context_filter_extra5.php index 8eff9169e..d4f181642 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_extra5.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_extra5.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule1.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule1.php index f21b520c4..d0be4ff36 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule1.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule1.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule10.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule10.php index 528764c59..2f7a7d347 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule10.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule10.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule11.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule11.php index ea0cedc02..bb4a0911a 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule11.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule11.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule2.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule2.php index febcd5f39..e927f8e08 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule2.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule2.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule3.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule3.php index 602226e89..a90a8a77e 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule3.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule3.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule4.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule4.php index ba03f7696..36506085b 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule4.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule4.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule5.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule5.php index ad9337295..5a07e3c42 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule5.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule5.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule6.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule6.php index 60bd29813..e764a9271 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule6.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule6.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule7.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule7.php index 95f97c449..47627d215 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule7.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule7.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule8.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule8.php index 527c79a7e..9a65b85ca 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule8.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule8.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_filter_rule9.php b/tests/integration/logging/monolog3/test_monolog_context_filter_rule9.php index 98fc8b5e2..ce3056def 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_filter_rule9.php +++ b/tests/integration/logging/monolog3/test_monolog_context_filter_rule9.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_hsm_disable_forwarding.php b/tests/integration/logging/monolog3/test_monolog_context_hsm_disable_forwarding.php index 18d211b35..206dbbb37 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_hsm_disable_forwarding.php +++ b/tests/integration/logging/monolog3/test_monolog_context_hsm_disable_forwarding.php @@ -65,7 +65,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_limits_1.php b/tests/integration/logging/monolog3/test_monolog_context_limits_1.php index 9d5836311..d82678e1e 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_limits_1.php +++ b/tests/integration/logging/monolog3/test_monolog_context_limits_1.php @@ -49,7 +49,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_limits_2.php b/tests/integration/logging/monolog3/test_monolog_context_limits_2.php index 6925fc905..475d21fcf 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_limits_2.php +++ b/tests/integration/logging/monolog3/test_monolog_context_limits_2.php @@ -49,7 +49,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_precedence_1.php b/tests/integration/logging/monolog3/test_monolog_context_precedence_1.php index 301164d11..3ff167db1 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_precedence_1.php +++ b/tests/integration/logging/monolog3/test_monolog_context_precedence_1.php @@ -52,7 +52,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_precedence_2.php b/tests/integration/logging/monolog3/test_monolog_context_precedence_2.php index b05977c22..4e3d80a7b 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_precedence_2.php +++ b/tests/integration/logging/monolog3/test_monolog_context_precedence_2.php @@ -52,7 +52,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_context_simple.php b/tests/integration/logging/monolog3/test_monolog_context_simple.php index ddcfd65f9..cb4330cf0 100644 --- a/tests/integration/logging/monolog3/test_monolog_context_simple.php +++ b/tests/integration/logging/monolog3/test_monolog_context_simple.php @@ -63,7 +63,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_decoration_and_forwarding.php b/tests/integration/logging/monolog3/test_monolog_decoration_and_forwarding.php index 3d8edcc7c..31cf32430 100644 --- a/tests/integration/logging/monolog3/test_monolog_decoration_and_forwarding.php +++ b/tests/integration/logging/monolog3/test_monolog_decoration_and_forwarding.php @@ -117,7 +117,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_decoration_basic.php b/tests/integration/logging/monolog3/test_monolog_decoration_basic.php index cd73f05e3..443c5f1ce 100644 --- a/tests/integration/logging/monolog3/test_monolog_decoration_basic.php +++ b/tests/integration/logging/monolog3/test_monolog_decoration_basic.php @@ -115,7 +115,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_decoration_multiple_handlers.php b/tests/integration/logging/monolog3/test_monolog_decoration_multiple_handlers.php index 881f23b51..c9661addc 100644 --- a/tests/integration/logging/monolog3/test_monolog_decoration_multiple_handlers.php +++ b/tests/integration/logging/monolog3/test_monolog_decoration_multiple_handlers.php @@ -165,7 +165,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_disable_forwarding.php b/tests/integration/logging/monolog3/test_monolog_disable_forwarding.php index 08a8c0914..dc0e451c9 100644 --- a/tests/integration/logging/monolog3/test_monolog_disable_forwarding.php +++ b/tests/integration/logging/monolog3/test_monolog_disable_forwarding.php @@ -60,7 +60,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_disable_logging.php b/tests/integration/logging/monolog3/test_monolog_disable_logging.php index 949f02102..3aa2781e0 100644 --- a/tests/integration/logging/monolog3/test_monolog_disable_logging.php +++ b/tests/integration/logging/monolog3/test_monolog_disable_logging.php @@ -51,7 +51,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_disable_metrics.php b/tests/integration/logging/monolog3/test_monolog_disable_metrics.php index 11bad2177..9546cc454 100644 --- a/tests/integration/logging/monolog3/test_monolog_disable_metrics.php +++ b/tests/integration/logging/monolog3/test_monolog_disable_metrics.php @@ -55,7 +55,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_drop_empty.php b/tests/integration/logging/monolog3/test_monolog_drop_empty.php index 6a470653b..563e5e9ef 100644 --- a/tests/integration/logging/monolog3/test_monolog_drop_empty.php +++ b/tests/integration/logging/monolog3/test_monolog_drop_empty.php @@ -61,7 +61,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_escape_chars.php b/tests/integration/logging/monolog3/test_monolog_escape_chars.php index a1c768efd..e40597c9d 100644 --- a/tests/integration/logging/monolog3/test_monolog_escape_chars.php +++ b/tests/integration/logging/monolog3/test_monolog_escape_chars.php @@ -42,7 +42,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_hsm_disable_forwarding.php b/tests/integration/logging/monolog3/test_monolog_hsm_disable_forwarding.php index 64232c566..40f39a35b 100644 --- a/tests/integration/logging/monolog3/test_monolog_hsm_disable_forwarding.php +++ b/tests/integration/logging/monolog3/test_monolog_hsm_disable_forwarding.php @@ -61,7 +61,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic.php new file mode 100644 index 000000000..54ba9bd1c --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic.php @@ -0,0 +1,216 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_comma.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_comma.php new file mode 100644 index 000000000..74d2fc01c --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_comma.php @@ -0,0 +1,215 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_mixedcase.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_mixedcase.php new file mode 100644 index 000000000..008b412e7 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_mixedcase.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_mixedsources.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_mixedsources.php new file mode 100644 index 000000000..68728a9f2 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_mixedsources.php @@ -0,0 +1,227 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_withspaces.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_withspaces.php new file mode 100644 index 000000000..c2299f734 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_basic_withspaces.php @@ -0,0 +1,218 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_01.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_01.php new file mode 100644 index 000000000..bc144bdc1 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_01.php @@ -0,0 +1,214 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_02.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_02.php new file mode 100644 index 000000000..49c113cee --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_02.php @@ -0,0 +1,126 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_03.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_03.php new file mode 100644 index 000000000..b0d4cad79 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_03.php @@ -0,0 +1,118 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_04.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_04.php new file mode 100644 index 000000000..7efe003a7 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_04.php @@ -0,0 +1,209 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_05.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_05.php new file mode 100644 index 000000000..ccb13b0e0 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_disabled_05.php @@ -0,0 +1,118 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_01.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_01.php new file mode 100644 index 000000000..abc65e9fe --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_01.php @@ -0,0 +1,216 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_02.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_02.php new file mode 100644 index 000000000..a128dd494 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_02.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_03.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_03.php new file mode 100644 index 000000000..8b00f549a --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_03.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_04.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_04.php new file mode 100644 index 000000000..6a2eb0af8 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_04.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_05.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_05.php new file mode 100644 index 000000000..30d59ef21 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_05.php @@ -0,0 +1,216 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_06.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_06.php new file mode 100644 index 000000000..eeb791d84 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_06.php @@ -0,0 +1,218 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_07.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_07.php new file mode 100644 index 000000000..e5dd1f196 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_07.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_08.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_08.php new file mode 100644 index 000000000..5f7df639e --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_08.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_08a.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_08a.php new file mode 100644 index 000000000..806da77d0 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_08a.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_09.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_09.php new file mode 100644 index 000000000..27e890384 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_09.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_10.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_10.php new file mode 100644 index 000000000..7832c5027 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_10.php @@ -0,0 +1,218 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_11.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_11.php new file mode 100644 index 000000000..86aa719ef --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_11.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_11a.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_11a.php new file mode 100644 index 000000000..b39c20c6d --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_11a.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_12.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_12.php new file mode 100644 index 000000000..8801c47d0 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_12.php @@ -0,0 +1,215 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_13.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_13.php new file mode 100644 index 000000000..4453099ba --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_13.php @@ -0,0 +1,217 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_14.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_14.php new file mode 100644 index 000000000..3a5714eac --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_14.php @@ -0,0 +1,221 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_15.php b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_15.php new file mode 100644 index 000000000..64bcb6697 --- /dev/null +++ b/tests/integration/logging/monolog3/test_monolog_labels_forwarding_exclude_15.php @@ -0,0 +1,219 @@ +setFormatter($formatter); + + $logger->pushHandler($stdoutHandler); + + // insert delays between log messages to allow priority sampling + // to resolve that later messages have higher precedence + // since timestamps are only millisecond resolution + // without delays sometimes order in output will reflect + // all having the same timestamp. + $logger->debug("debug"); + usleep(10000); + $logger->info("info"); + usleep(10000); + $logger->notice("notice"); + usleep(10000); + $logger->warning("warning"); + usleep(10000); + $logger->error("error"); + usleep(10000); + $logger->critical("critical"); + usleep(10000); + $logger->alert("alert"); + usleep(10000); + $logger->emergency("emergency"); +} + +test_logging(); diff --git a/tests/integration/logging/monolog3/test_monolog_large_message_limit.php b/tests/integration/logging/monolog3/test_monolog_large_message_limit.php index 50b2a26a5..0af1e2286 100644 --- a/tests/integration/logging/monolog3/test_monolog_large_message_limit.php +++ b/tests/integration/logging/monolog3/test_monolog_large_message_limit.php @@ -44,7 +44,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_large_message_limit_drops.php b/tests/integration/logging/monolog3/test_monolog_large_message_limit_drops.php index c2913419d..91aeaea64 100644 --- a/tests/integration/logging/monolog3/test_monolog_large_message_limit_drops.php +++ b/tests/integration/logging/monolog3/test_monolog_large_message_limit_drops.php @@ -44,7 +44,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_limit_log_events.php b/tests/integration/logging/monolog3/test_monolog_limit_log_events.php index b5ffaf258..65be7e65a 100644 --- a/tests/integration/logging/monolog3/test_monolog_limit_log_events.php +++ b/tests/integration/logging/monolog3/test_monolog_limit_log_events.php @@ -62,7 +62,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_limit_zero_events.php b/tests/integration/logging/monolog3/test_monolog_limit_zero_events.php index 4b65d64f3..f021b5029 100644 --- a/tests/integration/logging/monolog3/test_monolog_limit_zero_events.php +++ b/tests/integration/logging/monolog3/test_monolog_limit_zero_events.php @@ -62,7 +62,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid1.php b/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid1.php index f94ea94af..c57aed5c1 100644 --- a/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid1.php +++ b/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid1.php @@ -46,7 +46,8 @@ [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/3/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid2.php b/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid2.php index 5d0363243..7e891359b 100644 --- a/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid2.php +++ b/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid2.php @@ -46,7 +46,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/3/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid3.php b/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid3.php index 8b451bdea..827eaa4d8 100644 --- a/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid3.php +++ b/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid3.php @@ -46,7 +46,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/3/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid4.php b/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid4.php index fe4185197..f1185ac24 100644 --- a/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid4.php +++ b/tests/integration/logging/monolog3/test_monolog_log_events_max_samples_stored_invalid4.php @@ -46,7 +46,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/3/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_log_level_filter.php b/tests/integration/logging/monolog3/test_monolog_log_level_filter.php index 69d482e9b..e5b91554a 100644 --- a/tests/integration/logging/monolog3/test_monolog_log_level_filter.php +++ b/tests/integration/logging/monolog3/test_monolog_log_level_filter.php @@ -61,7 +61,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/3/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_log_level_filter_invalid.php b/tests/integration/logging/monolog3/test_monolog_log_level_filter_invalid.php index 649cd5acf..18849c9de 100644 --- a/tests/integration/logging/monolog3/test_monolog_log_level_filter_invalid.php +++ b/tests/integration/logging/monolog3/test_monolog_log_level_filter_invalid.php @@ -62,7 +62,8 @@ [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/PHP/Monolog/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/PHP/package/monolog/monolog/3/detected"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/logging/monolog3/test_monolog_truncate_long_msgs.php b/tests/integration/logging/monolog3/test_monolog_truncate_long_msgs.php index 4c99e09ba..09e2ed91a 100644 --- a/tests/integration/logging/monolog3/test_monolog_truncate_long_msgs.php +++ b/tests/integration/logging/monolog3/test_monolog_truncate_long_msgs.php @@ -47,7 +47,8 @@ [{"name": "Supportability/library/Monolog/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name": "Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name": "Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_add.php b/tests/integration/memcache/test_add.php index a144c1386..b4f3c6b70 100644 --- a/tests/integration/memcache/test_add.php +++ b/tests/integration/memcache/test_add.php @@ -61,7 +61,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_add.php82.php b/tests/integration/memcache/test_add.php82.php index fe1223d17..25467baa0 100644 --- a/tests/integration/memcache/test_add.php82.php +++ b/tests/integration/memcache/test_add.php82.php @@ -61,7 +61,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_incr_decr.php b/tests/integration/memcache/test_incr_decr.php index 859b53f99..ad3dcdace 100644 --- a/tests/integration/memcache/test_incr_decr.php +++ b/tests/integration/memcache/test_incr_decr.php @@ -65,7 +65,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_incr_decr.php82.php b/tests/integration/memcache/test_incr_decr.php82.php index a7d5bc224..2d52f9c70 100644 --- a/tests/integration/memcache/test_incr_decr.php82.php +++ b/tests/integration/memcache/test_incr_decr.php82.php @@ -65,7 +65,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_add.php b/tests/integration/memcache/test_memcache_add.php index 3d6f6e3cb..23a6b94e4 100644 --- a/tests/integration/memcache/test_memcache_add.php +++ b/tests/integration/memcache/test_memcache_add.php @@ -62,7 +62,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_add.php82.php b/tests/integration/memcache/test_memcache_add.php82.php index 9c3efc63d..422dfeb99 100644 --- a/tests/integration/memcache/test_memcache_add.php82.php +++ b/tests/integration/memcache/test_memcache_add.php82.php @@ -62,7 +62,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_add_logging_off.php b/tests/integration/memcache/test_memcache_add_logging_off.php index 9d63ac00e..fcd3de3ed 100644 --- a/tests/integration/memcache/test_memcache_add_logging_off.php +++ b/tests/integration/memcache/test_memcache_add_logging_off.php @@ -65,7 +65,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_add_logging_off.php82.php b/tests/integration/memcache/test_memcache_add_logging_off.php82.php index 28fac43ce..e99b59e7f 100644 --- a/tests/integration/memcache/test_memcache_add_logging_off.php82.php +++ b/tests/integration/memcache/test_memcache_add_logging_off.php82.php @@ -65,7 +65,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_incr_decr.php b/tests/integration/memcache/test_memcache_incr_decr.php index 91188b071..1a3c180f4 100644 --- a/tests/integration/memcache/test_memcache_incr_decr.php +++ b/tests/integration/memcache/test_memcache_incr_decr.php @@ -65,7 +65,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_incr_decr.php82.php b/tests/integration/memcache/test_memcache_incr_decr.php82.php index 59be46d06..142b59273 100644 --- a/tests/integration/memcache/test_memcache_incr_decr.php82.php +++ b/tests/integration/memcache/test_memcache_incr_decr.php82.php @@ -65,7 +65,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_replace.php b/tests/integration/memcache/test_memcache_replace.php index 99734e5bc..418315d55 100644 --- a/tests/integration/memcache/test_memcache_replace.php +++ b/tests/integration/memcache/test_memcache_replace.php @@ -67,7 +67,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_replace.php82.php b/tests/integration/memcache/test_memcache_replace.php82.php index f52a39fde..4634d326f 100644 --- a/tests/integration/memcache/test_memcache_replace.php82.php +++ b/tests/integration/memcache/test_memcache_replace.php82.php @@ -67,7 +67,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_set.php b/tests/integration/memcache/test_memcache_set.php index 78b1f01b9..b9dad0d45 100644 --- a/tests/integration/memcache/test_memcache_set.php +++ b/tests/integration/memcache/test_memcache_set.php @@ -64,7 +64,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_memcache_set.php82.php b/tests/integration/memcache/test_memcache_set.php82.php index 329cb3c5f..a16ecc5a4 100644 --- a/tests/integration/memcache/test_memcache_set.php82.php +++ b/tests/integration/memcache/test_memcache_set.php82.php @@ -64,7 +64,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_replace.php b/tests/integration/memcache/test_replace.php index 9efac30cc..e38770210 100644 --- a/tests/integration/memcache/test_replace.php +++ b/tests/integration/memcache/test_replace.php @@ -66,7 +66,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_replace.php82.php b/tests/integration/memcache/test_replace.php82.php index 0b5124782..82253b8e8 100644 --- a/tests/integration/memcache/test_replace.php82.php +++ b/tests/integration/memcache/test_replace.php82.php @@ -66,7 +66,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_set.php b/tests/integration/memcache/test_set.php index eb0bcdd42..6a7b89994 100644 --- a/tests/integration/memcache/test_set.php +++ b/tests/integration/memcache/test_set.php @@ -63,7 +63,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcache/test_set.php82.php b/tests/integration/memcache/test_set.php82.php index 8e4df3b52..8b9cad8e5 100644 --- a/tests/integration/memcache/test_set.php82.php +++ b/tests/integration/memcache/test_set.php82.php @@ -63,7 +63,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_basic.php b/tests/integration/memcached/test_basic.php index 1e24bfd7e..cf91b8c5c 100644 --- a/tests/integration/memcached/test_basic.php +++ b/tests/integration/memcached/test_basic.php @@ -46,7 +46,7 @@ [{"name":"Datastore/allOther"}, [15, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [15, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [15, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/add"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/add", "scope":"OtherTransaction/php__FILE__"}, [2, "??", "??", "??", "??", "??"]], @@ -74,7 +74,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_basic_logging_off.php b/tests/integration/memcached/test_basic_logging_off.php index 05e87a4c1..f05e19cf2 100644 --- a/tests/integration/memcached/test_basic_logging_off.php +++ b/tests/integration/memcached/test_basic_logging_off.php @@ -49,7 +49,7 @@ [{"name":"Datastore/allOther"}, [15, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [15, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [15, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/add"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/add", "scope":"OtherTransaction/php__FILE__"}, [2, "??", "??", "??", "??", "??"]], @@ -77,7 +77,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_by_key.php b/tests/integration/memcached/test_by_key.php index ceb2758d8..896653e2e 100644 --- a/tests/integration/memcached/test_by_key.php +++ b/tests/integration/memcached/test_by_key.php @@ -48,7 +48,7 @@ [{"name":"Datastore/allOther"}, [11, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [11, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [11, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/add"}, [2, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/add", "scope":"OtherTransaction/php__FILE__"}, [2, "??", "??", "??", "??", "??"]], @@ -70,7 +70,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_cas.php5.php b/tests/integration/memcached/test_cas.php5.php index c96dd94b3..144cf6b82 100644 --- a/tests/integration/memcached/test_cas.php5.php +++ b/tests/integration/memcached/test_cas.php5.php @@ -58,7 +58,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_cas.php7.php b/tests/integration/memcached/test_cas.php7.php index 650bb22ec..924d7d8b9 100644 --- a/tests/integration/memcached/test_cas.php7.php +++ b/tests/integration/memcached/test_cas.php7.php @@ -42,7 +42,7 @@ [{"name":"Datastore/allOther"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [5, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], @@ -61,7 +61,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_cas_by_key.php5.php b/tests/integration/memcached/test_cas_by_key.php5.php index 7dda968dc..c4daae66c 100644 --- a/tests/integration/memcached/test_cas_by_key.php5.php +++ b/tests/integration/memcached/test_cas_by_key.php5.php @@ -58,7 +58,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_cas_by_key.php7.php b/tests/integration/memcached/test_cas_by_key.php7.php index 10b073016..d9c7ddf14 100644 --- a/tests/integration/memcached/test_cas_by_key.php7.php +++ b/tests/integration/memcached/test_cas_by_key.php7.php @@ -42,7 +42,7 @@ [{"name":"Datastore/allOther"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [5, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], @@ -61,7 +61,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_concat.php b/tests/integration/memcached/test_concat.php index 0a526adcd..774ac6c06 100644 --- a/tests/integration/memcached/test_concat.php +++ b/tests/integration/memcached/test_concat.php @@ -35,7 +35,7 @@ [{"name":"Datastore/allOther"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [5, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], @@ -54,7 +54,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_concat_by_key.php b/tests/integration/memcached/test_concat_by_key.php index 2cb041974..8920b62ef 100644 --- a/tests/integration/memcached/test_concat_by_key.php +++ b/tests/integration/memcached/test_concat_by_key.php @@ -35,7 +35,7 @@ [{"name":"Datastore/allOther"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [5, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], @@ -54,7 +54,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_concat_by_key_logging_off.php b/tests/integration/memcached/test_concat_by_key_logging_off.php index 4d644a74d..14c35800d 100644 --- a/tests/integration/memcached/test_concat_by_key_logging_off.php +++ b/tests/integration/memcached/test_concat_by_key_logging_off.php @@ -38,7 +38,7 @@ [{"name":"Datastore/allOther"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [5, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/delete", "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_multi.php b/tests/integration/memcached/test_multi.php index 78dbd2fa3..a2b55b65e 100644 --- a/tests/integration/memcached/test_multi.php +++ b/tests/integration/memcached/test_multi.php @@ -42,7 +42,7 @@ [{"name":"Datastore/allOther"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [5, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/get"}, [4, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/get", "scope":"OtherTransaction/php__FILE__"}, [4, "??", "??", "??", "??", "??"]], @@ -55,7 +55,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/memcached/test_multi_by_key.php b/tests/integration/memcached/test_multi_by_key.php index 5d4c2e9d3..36e8f2764 100644 --- a/tests/integration/memcached/test_multi_by_key.php +++ b/tests/integration/memcached/test_multi_by_key.php @@ -42,7 +42,7 @@ [{"name":"Datastore/allOther"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/all"}, [5, "??", "??", "??", "??", "??"]], [{"name":"Datastore/Memcached/allOther"}, [5, "??", "??", "??", "??", "??"]], - [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Datastore/instance/Memcached/ENV[MEMCACHE_HOST]/11211"},[1, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/get"}, [4, "??", "??", "??", "??", "??"]], [{"name":"Datastore/operation/Memcached/get", "scope":"OtherTransaction/php__FILE__"}, [4, "??", "??", "??", "??", "??"]], @@ -55,7 +55,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysql/test_db_query.php b/tests/integration/mysql/test_db_query.php index d57281ddd..96f054bb4 100644 --- a/tests/integration/mysql/test_db_query.php +++ b/tests/integration/mysql/test_db_query.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysql/test_db_query_error.php b/tests/integration/mysql/test_db_query_error.php index 61c145b34..2994ecc7a 100644 --- a/tests/integration/mysql/test_db_query_error.php +++ b/tests/integration/mysql/test_db_query_error.php @@ -45,7 +45,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysql/test_db_query_logging_off.php b/tests/integration/mysql/test_db_query_logging_off.php index 751d62fc7..f1c23fa01 100644 --- a/tests/integration/mysql/test_db_query_logging_off.php +++ b/tests/integration/mysql/test_db_query_logging_off.php @@ -54,7 +54,9 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysql/test_query.php b/tests/integration/mysql/test_query.php index a0b7c4c33..b5853c00d 100644 --- a/tests/integration/mysql/test_query.php +++ b/tests/integration/mysql/test_query.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysql/test_query_error.php b/tests/integration/mysql/test_query_error.php index f8dcb6021..26c8a5d9a 100644 --- a/tests/integration/mysql/test_query_error.php +++ b/tests/integration/mysql/test_query_error.php @@ -45,7 +45,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysql/test_unbuffered_query.php b/tests/integration/mysql/test_unbuffered_query.php index f4d95edb4..3387f12d7 100644 --- a/tests/integration/mysql/test_unbuffered_query.php +++ b/tests/integration/mysql/test_unbuffered_query.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_bind_param_object_oo.php b/tests/integration/mysqli/test_bind_param_object_oo.php index bd000429a..011b7459b 100644 --- a/tests/integration/mysqli/test_bind_param_object_oo.php +++ b/tests/integration/mysqli/test_bind_param_object_oo.php @@ -55,7 +55,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_bind_param_object_oo_logging_off.php b/tests/integration/mysqli/test_bind_param_object_oo_logging_off.php index 941e89555..8245b1fa2 100644 --- a/tests/integration/mysqli/test_bind_param_object_oo_logging_off.php +++ b/tests/integration/mysqli/test_bind_param_object_oo_logging_off.php @@ -58,7 +58,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_bind_param_oo.php b/tests/integration/mysqli/test_bind_param_oo.php index 2b7dc5d0a..f6e5970a5 100644 --- a/tests/integration/mysqli/test_bind_param_oo.php +++ b/tests/integration/mysqli/test_bind_param_oo.php @@ -47,7 +47,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_bind_param_proc.php b/tests/integration/mysqli/test_bind_param_proc.php index 6efc982a9..881fc2e25 100644 --- a/tests/integration/mysqli/test_bind_param_proc.php +++ b/tests/integration/mysqli/test_bind_param_proc.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_connect.php b/tests/integration/mysqli/test_explain_connect.php index 7ee1f130b..0a1cb7449 100644 --- a/tests/integration/mysqli/test_explain_connect.php +++ b/tests/integration/mysqli/test_explain_connect.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_connect_socket.php b/tests/integration/mysqli/test_explain_connect_socket.php index 0c56e3bc9..ebdf6eca2 100644 --- a/tests/integration/mysqli/test_explain_connect_socket.php +++ b/tests/integration/mysqli/test_explain_connect_socket.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_construct.php b/tests/integration/mysqli/test_explain_construct.php index ce7357bc4..e1491b842 100644 --- a/tests/integration/mysqli/test_explain_construct.php +++ b/tests/integration/mysqli/test_explain_construct.php @@ -47,7 +47,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_construct_socket.php b/tests/integration/mysqli/test_explain_construct_socket.php index 20c6e1481..2c2223ba4 100644 --- a/tests/integration/mysqli/test_explain_construct_socket.php +++ b/tests/integration/mysqli/test_explain_construct_socket.php @@ -47,7 +47,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_database_no_user.php b/tests/integration/mysqli/test_explain_database_no_user.php index 07836dbb1..e77ecce4d 100644 --- a/tests/integration/mysqli/test_explain_database_no_user.php +++ b/tests/integration/mysqli/test_explain_database_no_user.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_database_no_user_logging_off.php b/tests/integration/mysqli/test_explain_database_no_user_logging_off.php index 1ea8a0741..0b3b4200b 100644 --- a/tests/integration/mysqli/test_explain_database_no_user_logging_off.php +++ b/tests/integration/mysqli/test_explain_database_no_user_logging_off.php @@ -36,6 +36,7 @@ [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, diff --git a/tests/integration/mysqli/test_explain_init_oo.php b/tests/integration/mysqli/test_explain_init_oo.php index 4b0395788..630586ffa 100644 --- a/tests/integration/mysqli/test_explain_init_oo.php +++ b/tests/integration/mysqli/test_explain_init_oo.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_init_oo_persistent.php b/tests/integration/mysqli/test_explain_init_oo_persistent.php index c3ff9268f..90ca9191c 100644 --- a/tests/integration/mysqli/test_explain_init_oo_persistent.php +++ b/tests/integration/mysqli/test_explain_init_oo_persistent.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_init_proc.php b/tests/integration/mysqli/test_explain_init_proc.php index 05ce43f39..b390d28e1 100644 --- a/tests/integration/mysqli/test_explain_init_proc.php +++ b/tests/integration/mysqli/test_explain_init_proc.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_leading_whitespace.php b/tests/integration/mysqli/test_explain_leading_whitespace.php index d0b165ea6..d508a7b67 100644 --- a/tests/integration/mysqli/test_explain_leading_whitespace.php +++ b/tests/integration/mysqli/test_explain_leading_whitespace.php @@ -45,7 +45,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_options_garbage.php b/tests/integration/mysqli/test_explain_options_garbage.php index 420a489af..2690c578a 100644 --- a/tests/integration/mysqli/test_explain_options_garbage.php +++ b/tests/integration/mysqli/test_explain_options_garbage.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_real_connect_garbage.php b/tests/integration/mysqli/test_explain_real_connect_garbage.php index c12a3d07b..b767cfac7 100644 --- a/tests/integration/mysqli/test_explain_real_connect_garbage.php +++ b/tests/integration/mysqli/test_explain_real_connect_garbage.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_real_connect_garbage_logging_off.php b/tests/integration/mysqli/test_explain_real_connect_garbage_logging_off.php index 511f1b1c9..cb903383a 100644 --- a/tests/integration/mysqli/test_explain_real_connect_garbage_logging_off.php +++ b/tests/integration/mysqli/test_explain_real_connect_garbage_logging_off.php @@ -31,6 +31,7 @@ [{"name": "Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name": "Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/all"}, [1, "??", "??", "??", "??", "??"]], [{"name":"DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther"}, diff --git a/tests/integration/mysqli/test_explain_reused_id.php b/tests/integration/mysqli/test_explain_reused_id.php index 21382def1..71fdf1fa3 100644 --- a/tests/integration/mysqli/test_explain_reused_id.php +++ b/tests/integration/mysqli/test_explain_reused_id.php @@ -47,7 +47,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_select_db_oo.php b/tests/integration/mysqli/test_explain_select_db_oo.php index f03d91a6a..c39a3e17b 100644 --- a/tests/integration/mysqli/test_explain_select_db_oo.php +++ b/tests/integration/mysqli/test_explain_select_db_oo.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_explain_select_db_proc.php b/tests/integration/mysqli/test_explain_select_db_proc.php index 21c326ce9..a1d34a443 100644 --- a/tests/integration/mysqli/test_explain_select_db_proc.php +++ b/tests/integration/mysqli/test_explain_select_db_proc.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_multi_query_oo.php b/tests/integration/mysqli/test_multi_query_oo.php index 1d1e3006a..0152850d5 100644 --- a/tests/integration/mysqli/test_multi_query_oo.php +++ b/tests/integration/mysqli/test_multi_query_oo.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_multi_query_proc.php b/tests/integration/mysqli/test_multi_query_proc.php index 3f3014b0d..0d643c1b2 100644 --- a/tests/integration/mysqli/test_multi_query_proc.php +++ b/tests/integration/mysqli/test_multi_query_proc.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_multi_query_proc_logging_off.php b/tests/integration/mysqli/test_multi_query_proc_logging_off.php index 3f3014b0d..0d643c1b2 100644 --- a/tests/integration/mysqli/test_multi_query_proc_logging_off.php +++ b/tests/integration/mysqli/test_multi_query_proc_logging_off.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_mysqli_query_1.php b/tests/integration/mysqli/test_mysqli_query_1.php index dc44166af..ab46557b6 100644 --- a/tests/integration/mysqli/test_mysqli_query_1.php +++ b/tests/integration/mysqli/test_mysqli_query_1.php @@ -48,7 +48,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_prepare_oo.php b/tests/integration/mysqli/test_prepare_oo.php index 791b36a07..64558676e 100644 --- a/tests/integration/mysqli/test_prepare_oo.php +++ b/tests/integration/mysqli/test_prepare_oo.php @@ -120,7 +120,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_prepare_proc.php b/tests/integration/mysqli/test_prepare_proc.php index d18ad19bc..0d327788c 100644 --- a/tests/integration/mysqli/test_prepare_proc.php +++ b/tests/integration/mysqli/test_prepare_proc.php @@ -45,7 +45,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_query_oo.php b/tests/integration/mysqli/test_query_oo.php index 770692bda..3c579f2c5 100644 --- a/tests/integration/mysqli/test_query_oo.php +++ b/tests/integration/mysqli/test_query_oo.php @@ -47,7 +47,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_query_proc.php b/tests/integration/mysqli/test_query_proc.php index c9dbc6f4e..3dae4816b 100644 --- a/tests/integration/mysqli/test_query_proc.php +++ b/tests/integration/mysqli/test_query_proc.php @@ -47,7 +47,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_real_query_oo.php b/tests/integration/mysqli/test_real_query_oo.php index 0bc63707c..194afd730 100644 --- a/tests/integration/mysqli/test_real_query_oo.php +++ b/tests/integration/mysqli/test_real_query_oo.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_real_query_oo_logging_off.php b/tests/integration/mysqli/test_real_query_oo_logging_off.php index 0bc63707c..194afd730 100644 --- a/tests/integration/mysqli/test_real_query_oo_logging_off.php +++ b/tests/integration/mysqli/test_real_query_oo_logging_off.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_real_query_proc.php b/tests/integration/mysqli/test_real_query_proc.php index 33e04bc4f..3454b4058 100644 --- a/tests/integration/mysqli/test_real_query_proc.php +++ b/tests/integration/mysqli/test_real_query_proc.php @@ -53,7 +53,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_stmt_prepare_oo.php b/tests/integration/mysqli/test_stmt_prepare_oo.php index a75325b94..8a095f79d 100644 --- a/tests/integration/mysqli/test_stmt_prepare_oo.php +++ b/tests/integration/mysqli/test_stmt_prepare_oo.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_stmt_prepare_proc.php b/tests/integration/mysqli/test_stmt_prepare_proc.php index 7a70943e4..ec3c3a471 100644 --- a/tests/integration/mysqli/test_stmt_prepare_proc.php +++ b/tests/integration/mysqli/test_stmt_prepare_proc.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_subclassing.php b/tests/integration/mysqli/test_subclassing.php index c19b763fd..ab11f5a59 100644 --- a/tests/integration/mysqli/test_subclassing.php +++ b/tests/integration/mysqli/test_subclassing.php @@ -47,7 +47,8 @@ classes. [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/mysqli/test_subclassing.php81.php b/tests/integration/mysqli/test_subclassing.php81.php index 220962fa6..6ca0aba5f 100644 --- a/tests/integration/mysqli/test_subclassing.php81.php +++ b/tests/integration/mysqli/test_subclassing.php81.php @@ -47,7 +47,8 @@ classes. [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/base-class/test_query_1_arg.php b/tests/integration/pdo/sqlite/base-class/test_query_1_arg.php index df16dc8a3..9e7c65306 100644 --- a/tests/integration/pdo/sqlite/base-class/test_query_1_arg.php +++ b/tests/integration/pdo/sqlite/base-class/test_query_1_arg.php @@ -64,7 +64,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/base-class/test_query_fetch_class.php b/tests/integration/pdo/sqlite/base-class/test_query_fetch_class.php index e84fb4027..27ec0f80f 100644 --- a/tests/integration/pdo/sqlite/base-class/test_query_fetch_class.php +++ b/tests/integration/pdo/sqlite/base-class/test_query_fetch_class.php @@ -62,7 +62,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/base-class/test_query_fetch_column.php b/tests/integration/pdo/sqlite/base-class/test_query_fetch_column.php index 37989527d..dbc077a68 100644 --- a/tests/integration/pdo/sqlite/base-class/test_query_fetch_column.php +++ b/tests/integration/pdo/sqlite/base-class/test_query_fetch_column.php @@ -64,7 +64,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/base-class/test_query_fetch_column_logging_off.php b/tests/integration/pdo/sqlite/base-class/test_query_fetch_column_logging_off.php index 76a35f1fc..23eb9655b 100644 --- a/tests/integration/pdo/sqlite/base-class/test_query_fetch_column_logging_off.php +++ b/tests/integration/pdo/sqlite/base-class/test_query_fetch_column_logging_off.php @@ -67,7 +67,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/base-class/test_query_fetch_into.php b/tests/integration/pdo/sqlite/base-class/test_query_fetch_into.php index 63c132317..8389707af 100644 --- a/tests/integration/pdo/sqlite/base-class/test_query_fetch_into.php +++ b/tests/integration/pdo/sqlite/base-class/test_query_fetch_into.php @@ -62,7 +62,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/constructor/test_query_1_arg.php b/tests/integration/pdo/sqlite/constructor/test_query_1_arg.php index d0dc104cf..59a94ea4d 100644 --- a/tests/integration/pdo/sqlite/constructor/test_query_1_arg.php +++ b/tests/integration/pdo/sqlite/constructor/test_query_1_arg.php @@ -65,7 +65,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/constructor/test_query_fetch_class.php b/tests/integration/pdo/sqlite/constructor/test_query_fetch_class.php index d8cc5fa42..98f760930 100644 --- a/tests/integration/pdo/sqlite/constructor/test_query_fetch_class.php +++ b/tests/integration/pdo/sqlite/constructor/test_query_fetch_class.php @@ -63,7 +63,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/constructor/test_query_fetch_column.php b/tests/integration/pdo/sqlite/constructor/test_query_fetch_column.php index a7c70929c..50b395ee2 100644 --- a/tests/integration/pdo/sqlite/constructor/test_query_fetch_column.php +++ b/tests/integration/pdo/sqlite/constructor/test_query_fetch_column.php @@ -65,7 +65,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/constructor/test_query_fetch_column_logging_off.php b/tests/integration/pdo/sqlite/constructor/test_query_fetch_column_logging_off.php index be19c728c..9702d3aa5 100644 --- a/tests/integration/pdo/sqlite/constructor/test_query_fetch_column_logging_off.php +++ b/tests/integration/pdo/sqlite/constructor/test_query_fetch_column_logging_off.php @@ -68,7 +68,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/constructor/test_query_fetch_into.php b/tests/integration/pdo/sqlite/constructor/test_query_fetch_into.php index 7d2b0f4cc..79e525519 100644 --- a/tests/integration/pdo/sqlite/constructor/test_query_fetch_into.php +++ b/tests/integration/pdo/sqlite/constructor/test_query_fetch_into.php @@ -63,7 +63,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/extending-class/test_query_1_arg.php b/tests/integration/pdo/sqlite/extending-class/test_query_1_arg.php index 07e199db0..c040ea065 100644 --- a/tests/integration/pdo/sqlite/extending-class/test_query_1_arg.php +++ b/tests/integration/pdo/sqlite/extending-class/test_query_1_arg.php @@ -63,7 +63,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/factory/test_query_1_arg.php b/tests/integration/pdo/sqlite/factory/test_query_1_arg.php index edab45185..dd5e9eedf 100644 --- a/tests/integration/pdo/sqlite/factory/test_query_1_arg.php +++ b/tests/integration/pdo/sqlite/factory/test_query_1_arg.php @@ -65,7 +65,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/factory/test_query_fetch_class.php b/tests/integration/pdo/sqlite/factory/test_query_fetch_class.php index f9599e637..aee08b401 100644 --- a/tests/integration/pdo/sqlite/factory/test_query_fetch_class.php +++ b/tests/integration/pdo/sqlite/factory/test_query_fetch_class.php @@ -63,7 +63,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/factory/test_query_fetch_column.php b/tests/integration/pdo/sqlite/factory/test_query_fetch_column.php index e86edc3c9..cfc01a6d0 100644 --- a/tests/integration/pdo/sqlite/factory/test_query_fetch_column.php +++ b/tests/integration/pdo/sqlite/factory/test_query_fetch_column.php @@ -65,7 +65,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/factory/test_query_fetch_column_logging_off.php b/tests/integration/pdo/sqlite/factory/test_query_fetch_column_logging_off.php index 6177ba8a1..3c03b895c 100644 --- a/tests/integration/pdo/sqlite/factory/test_query_fetch_column_logging_off.php +++ b/tests/integration/pdo/sqlite/factory/test_query_fetch_column_logging_off.php @@ -68,7 +68,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/sqlite/factory/test_query_fetch_into.php b/tests/integration/pdo/sqlite/factory/test_query_fetch_into.php index b514f4c50..f911d4f54 100644 --- a/tests/integration/pdo/sqlite/factory/test_query_fetch_into.php +++ b/tests/integration/pdo/sqlite/factory/test_query_fetch_into.php @@ -63,7 +63,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/test_bad_input_1.php b/tests/integration/pdo/test_bad_input_1.php index a0e6989b0..d0dc57e8c 100644 --- a/tests/integration/pdo/test_bad_input_1.php +++ b/tests/integration/pdo/test_bad_input_1.php @@ -42,7 +42,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pdo/test_bad_input_1_logging_off.php b/tests/integration/pdo/test_bad_input_1_logging_off.php index 84324160d..eb64d9ccf 100644 --- a/tests/integration/pdo/test_bad_input_1_logging_off.php +++ b/tests/integration/pdo/test_bad_input_1_logging_off.php @@ -45,7 +45,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_execute_mixed_use.php b/tests/integration/pgsql/test_pg_execute_mixed_use.php index ab6e0903b..fa79914c4 100644 --- a/tests/integration/pgsql/test_pg_execute_mixed_use.php +++ b/tests/integration/pgsql/test_pg_execute_mixed_use.php @@ -54,7 +54,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_execute_mixed_use_logging_off.php b/tests/integration/pgsql/test_pg_execute_mixed_use_logging_off.php index 72e451039..ebbb027c2 100644 --- a/tests/integration/pgsql/test_pg_execute_mixed_use_logging_off.php +++ b/tests/integration/pgsql/test_pg_execute_mixed_use_logging_off.php @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_execute_with_resource.php b/tests/integration/pgsql/test_pg_execute_with_resource.php index c4f83c929..a34511de6 100644 --- a/tests/integration/pgsql/test_pg_execute_with_resource.php +++ b/tests/integration/pgsql/test_pg_execute_with_resource.php @@ -49,7 +49,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_execute_without_resource.php b/tests/integration/pgsql/test_pg_execute_without_resource.php index 77e4bfa6b..f696baa0c 100644 --- a/tests/integration/pgsql/test_pg_execute_without_resource.php +++ b/tests/integration/pgsql/test_pg_execute_without_resource.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_query_error.php b/tests/integration/pgsql/test_pg_query_error.php index 7aff7ea25..cd6ed83be 100644 --- a/tests/integration/pgsql/test_pg_query_error.php +++ b/tests/integration/pgsql/test_pg_query_error.php @@ -48,7 +48,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_query_params_error.php b/tests/integration/pgsql/test_pg_query_params_error.php index 5151a9896..a79c7efc6 100644 --- a/tests/integration/pgsql/test_pg_query_params_error.php +++ b/tests/integration/pgsql/test_pg_query_params_error.php @@ -48,7 +48,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_query_params_error_logging_off.php b/tests/integration/pgsql/test_pg_query_params_error_logging_off.php index 23d688c7e..7bebd557c 100644 --- a/tests/integration/pgsql/test_pg_query_params_error_logging_off.php +++ b/tests/integration/pgsql/test_pg_query_params_error_logging_off.php @@ -51,7 +51,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_query_params_with_resource.php b/tests/integration/pgsql/test_pg_query_params_with_resource.php index 12f064520..04ac504b8 100644 --- a/tests/integration/pgsql/test_pg_query_params_with_resource.php +++ b/tests/integration/pgsql/test_pg_query_params_with_resource.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_query_params_without_resource.php b/tests/integration/pgsql/test_pg_query_params_without_resource.php index d8fc4e0fc..81a01b9e8 100644 --- a/tests/integration/pgsql/test_pg_query_params_without_resource.php +++ b/tests/integration/pgsql/test_pg_query_params_without_resource.php @@ -48,7 +48,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_query_with_resource.php b/tests/integration/pgsql/test_pg_query_with_resource.php index 45d17ecf2..8cbd1dba3 100644 --- a/tests/integration/pgsql/test_pg_query_with_resource.php +++ b/tests/integration/pgsql/test_pg_query_with_resource.php @@ -46,7 +46,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_query_with_resource_logging_off.php b/tests/integration/pgsql/test_pg_query_with_resource_logging_off.php index 1828881a5..13a986360 100644 --- a/tests/integration/pgsql/test_pg_query_with_resource_logging_off.php +++ b/tests/integration/pgsql/test_pg_query_with_resource_logging_off.php @@ -49,7 +49,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/pgsql/test_pg_query_without_resource.php b/tests/integration/pgsql/test_pg_query_without_resource.php index b6f17acec..28353b47b 100644 --- a/tests/integration/pgsql/test_pg_query_without_resource.php +++ b/tests/integration/pgsql/test_pg_query_without_resource.php @@ -48,7 +48,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_basic.php b/tests/integration/predis/test_basic.php index 68abdf928..800e3c547 100644 --- a/tests/integration/predis/test_basic.php +++ b/tests/integration/predis/test_basic.php @@ -58,7 +58,8 @@ [{"name":"Supportability/library/Predis/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_basic_logging_off.php b/tests/integration/predis/test_basic_logging_off.php index 03c84c3bb..075572cbd 100644 --- a/tests/integration/predis/test_basic_logging_off.php +++ b/tests/integration/predis/test_basic_logging_off.php @@ -61,7 +61,8 @@ [{"name":"Supportability/library/Predis/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_basic_reporting_disabled.php b/tests/integration/predis/test_basic_reporting_disabled.php index 73d262965..9b8b66932 100644 --- a/tests/integration/predis/test_basic_reporting_disabled.php +++ b/tests/integration/predis/test_basic_reporting_disabled.php @@ -63,7 +63,8 @@ [{"name":"Supportability/library/Predis/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_cross_transaction.php b/tests/integration/predis/test_cross_transaction.php index 005364920..840aeecad 100644 --- a/tests/integration/predis/test_cross_transaction.php +++ b/tests/integration/predis/test_cross_transaction.php @@ -50,7 +50,8 @@ [{"name":"Supportability/api/set_appname/after"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_pipeline.php b/tests/integration/predis/test_pipeline.php index 32312aab4..ce48351ca 100644 --- a/tests/integration/predis/test_pipeline.php +++ b/tests/integration/predis/test_pipeline.php @@ -51,7 +51,8 @@ [{"name":"Supportability/library/Predis/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_pipeline_atomic.php b/tests/integration/predis/test_pipeline_atomic.php index fd695e5ed..1831ab2ef 100644 --- a/tests/integration/predis/test_pipeline_atomic.php +++ b/tests/integration/predis/test_pipeline_atomic.php @@ -51,7 +51,8 @@ [{"name":"Supportability/library/Predis/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_pipeline_fire_and_forget.php b/tests/integration/predis/test_pipeline_fire_and_forget.php index 4f7225884..7cc32d638 100644 --- a/tests/integration/predis/test_pipeline_fire_and_forget.php +++ b/tests/integration/predis/test_pipeline_fire_and_forget.php @@ -51,7 +51,8 @@ [{"name":"Supportability/library/Predis/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_pipeline_fire_and_forget_logging_off.php b/tests/integration/predis/test_pipeline_fire_and_forget_logging_off.php index 82a76903e..229e59555 100644 --- a/tests/integration/predis/test_pipeline_fire_and_forget_logging_off.php +++ b/tests/integration/predis/test_pipeline_fire_and_forget_logging_off.php @@ -54,7 +54,8 @@ [{"name":"Supportability/library/Predis/detected"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/predis/test_txn_restarted.php b/tests/integration/predis/test_txn_restarted.php index f6276883d..a951ca166 100644 --- a/tests/integration/predis/test_txn_restarted.php +++ b/tests/integration/predis/test_txn_restarted.php @@ -64,7 +64,8 @@ [{"name":"Supportability/api/set_appname/with_license"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/queue/test_basic.php b/tests/integration/queue/test_basic.php index 888938f50..9705a51a2 100644 --- a/tests/integration/queue/test_basic.php +++ b/tests/integration/queue/test_basic.php @@ -33,7 +33,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/queue/test_basic_logging_off.php b/tests/integration/queue/test_basic_logging_off.php index 0170289bc..d9f0ca2ea 100644 --- a/tests/integration/queue/test_basic_logging_off.php +++ b/tests/integration/queue/test_basic_logging_off.php @@ -36,7 +36,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/queue/test_capitalized.php b/tests/integration/queue/test_capitalized.php index 888938f50..9705a51a2 100644 --- a/tests/integration/queue/test_capitalized.php +++ b/tests/integration/queue/test_capitalized.php @@ -33,7 +33,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/queue/test_malformed.php b/tests/integration/queue/test_malformed.php index 981333eb9..2513c32b8 100644 --- a/tests/integration/queue/test_malformed.php +++ b/tests/integration/queue/test_malformed.php @@ -32,7 +32,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/queue/test_with_prefix.php b/tests/integration/queue/test_with_prefix.php index ce2b55511..7f006600a 100644 --- a/tests/integration/queue/test_with_prefix.php +++ b/tests/integration/queue/test_with_prefix.php @@ -33,7 +33,8 @@ [{"name":"WebTransactionTotalTime/Uri__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_basic.php b/tests/integration/redis/test_basic.php index 65f8a7e07..5f46209b3 100644 --- a/tests/integration/redis/test_basic.php +++ b/tests/integration/redis/test_basic.php @@ -180,7 +180,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_basic_logging_off.php b/tests/integration/redis/test_basic_logging_off.php index d62670605..afad2a6dd 100644 --- a/tests/integration/redis/test_basic_logging_off.php +++ b/tests/integration/redis/test_basic_logging_off.php @@ -183,7 +183,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_bitops.php b/tests/integration/redis/test_bitops.php index 54a23e98d..24383b8a8 100644 --- a/tests/integration/redis/test_bitops.php +++ b/tests/integration/redis/test_bitops.php @@ -85,7 +85,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_decr.php b/tests/integration/redis/test_decr.php index b49fa0525..9b92fdf68 100644 --- a/tests/integration/redis/test_decr.php +++ b/tests/integration/redis/test_decr.php @@ -69,7 +69,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_geo.php b/tests/integration/redis/test_geo.php index a64989bd6..716c5350e 100644 --- a/tests/integration/redis/test_geo.php +++ b/tests/integration/redis/test_geo.php @@ -82,7 +82,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_hash.php b/tests/integration/redis/test_hash.php index 1926c12b3..c9f9abcdc 100644 --- a/tests/integration/redis/test_hash.php +++ b/tests/integration/redis/test_hash.php @@ -110,7 +110,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_incr.php b/tests/integration/redis/test_incr.php index 6492c78f9..d41f4b71a 100644 --- a/tests/integration/redis/test_incr.php +++ b/tests/integration/redis/test_incr.php @@ -69,7 +69,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_list.php b/tests/integration/redis/test_list.php index 185e7cea0..cb3e8abee 100644 --- a/tests/integration/redis/test_list.php +++ b/tests/integration/redis/test_list.php @@ -130,7 +130,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_list_logging_off.php b/tests/integration/redis/test_list_logging_off.php index e1a9aeb35..ca32e3f2f 100644 --- a/tests/integration/redis/test_list_logging_off.php +++ b/tests/integration/redis/test_list_logging_off.php @@ -133,7 +133,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_set.php b/tests/integration/redis/test_set.php index 29c9db1ab..a10b24736 100644 --- a/tests/integration/redis/test_set.php +++ b/tests/integration/redis/test_set.php @@ -116,7 +116,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_set.redis6.php b/tests/integration/redis/test_set.redis6.php index a1c7b9814..a69b9d4e9 100644 --- a/tests/integration/redis/test_set.redis6.php +++ b/tests/integration/redis/test_set.redis6.php @@ -57,7 +57,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_setex.php b/tests/integration/redis/test_setex.php index 0c593d25f..fffdf123e 100644 --- a/tests/integration/redis/test_setex.php +++ b/tests/integration/redis/test_setex.php @@ -91,7 +91,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_stream.redis5.php b/tests/integration/redis/test_stream.redis5.php index a6c2290ec..8a6be3099 100644 --- a/tests/integration/redis/test_stream.redis5.php +++ b/tests/integration/redis/test_stream.redis5.php @@ -114,7 +114,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_zset.php b/tests/integration/redis/test_zset.php index dabeb9f7d..ac3201a6d 100644 --- a/tests/integration/redis/test_zset.php +++ b/tests/integration/redis/test_zset.php @@ -135,7 +135,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/redis/test_zset.redis5.php b/tests/integration/redis/test_zset.redis5.php index da2b9a266..3d3c431b9 100644 --- a/tests/integration/redis/test_zset.redis5.php +++ b/tests/integration/redis/test_zset.redis5.php @@ -65,7 +65,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_bad_input_1.php b/tests/integration/sqlite/test_bad_input_1.php index 87c158600..56cbd9d7d 100644 --- a/tests/integration/sqlite/test_bad_input_1.php +++ b/tests/integration/sqlite/test_bad_input_1.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_bad_input_2.php b/tests/integration/sqlite/test_bad_input_2.php index 1371bb208..10930cbed 100644 --- a/tests/integration/sqlite/test_bad_input_2.php +++ b/tests/integration/sqlite/test_bad_input_2.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_bad_input_3.php b/tests/integration/sqlite/test_bad_input_3.php index 2457fc77a..a693c619f 100644 --- a/tests/integration/sqlite/test_bad_input_3.php +++ b/tests/integration/sqlite/test_bad_input_3.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_bad_input_4.php b/tests/integration/sqlite/test_bad_input_4.php index f45e3129a..4d0f2cfb5 100644 --- a/tests/integration/sqlite/test_bad_input_4.php +++ b/tests/integration/sqlite/test_bad_input_4.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_bad_input_5.php b/tests/integration/sqlite/test_bad_input_5.php index 73dedbd65..13f6ef8e9 100644 --- a/tests/integration/sqlite/test_bad_input_5.php +++ b/tests/integration/sqlite/test_bad_input_5.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_exec.php b/tests/integration/sqlite/test_exec.php index c131e1437..78c870e81 100644 --- a/tests/integration/sqlite/test_exec.php +++ b/tests/integration/sqlite/test_exec.php @@ -44,7 +44,8 @@ "scope":"OtherTransaction/php__FILE__"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_exec_logging_off.php b/tests/integration/sqlite/test_exec_logging_off.php index 44aaecb81..556ceb2f5 100644 --- a/tests/integration/sqlite/test_exec_logging_off.php +++ b/tests/integration/sqlite/test_exec_logging_off.php @@ -47,7 +47,8 @@ "scope":"OtherTransaction/php__FILE__"}, [3, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_query_1.php b/tests/integration/sqlite/test_query_1.php index c076372fd..f2bd36602 100644 --- a/tests/integration/sqlite/test_query_1.php +++ b/tests/integration/sqlite/test_query_1.php @@ -71,7 +71,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_query_2.php b/tests/integration/sqlite/test_query_2.php index d66ef49a8..ab099f0f9 100644 --- a/tests/integration/sqlite/test_query_2.php +++ b/tests/integration/sqlite/test_query_2.php @@ -71,7 +71,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_unbuffered_1.php b/tests/integration/sqlite/test_unbuffered_1.php index 0d7928ddb..d4ce3c601 100644 --- a/tests/integration/sqlite/test_unbuffered_1.php +++ b/tests/integration/sqlite/test_unbuffered_1.php @@ -71,7 +71,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_unbuffered_2.php b/tests/integration/sqlite/test_unbuffered_2.php index 1029d3355..dc37822a0 100644 --- a/tests/integration/sqlite/test_unbuffered_2.php +++ b/tests/integration/sqlite/test_unbuffered_2.php @@ -71,7 +71,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite/test_unbuffered_2_logging_off.php b/tests/integration/sqlite/test_unbuffered_2_logging_off.php index 0ffeecaa7..4f5225a1e 100644 --- a/tests/integration/sqlite/test_unbuffered_2_logging_off.php +++ b/tests/integration/sqlite/test_unbuffered_2_logging_off.php @@ -74,7 +74,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_bad_input_1.php b/tests/integration/sqlite3/test_bad_input_1.php index aac133a7a..4189be5fb 100644 --- a/tests/integration/sqlite3/test_bad_input_1.php +++ b/tests/integration/sqlite3/test_bad_input_1.php @@ -42,7 +42,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_bad_input_2.php b/tests/integration/sqlite3/test_bad_input_2.php index 110d9df49..cd4574876 100644 --- a/tests/integration/sqlite3/test_bad_input_2.php +++ b/tests/integration/sqlite3/test_bad_input_2.php @@ -42,7 +42,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_bad_input_3.php b/tests/integration/sqlite3/test_bad_input_3.php index 48c58c4ff..0a32a3b43 100644 --- a/tests/integration/sqlite3/test_bad_input_3.php +++ b/tests/integration/sqlite3/test_bad_input_3.php @@ -42,7 +42,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_bad_input_3_logging_off.php b/tests/integration/sqlite3/test_bad_input_3_logging_off.php index 4059f3922..bf16de696 100644 --- a/tests/integration/sqlite3/test_bad_input_3_logging_off.php +++ b/tests/integration/sqlite3/test_bad_input_3_logging_off.php @@ -45,7 +45,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_bad_input_4.php b/tests/integration/sqlite3/test_bad_input_4.php index 721573eaa..2c498a269 100644 --- a/tests/integration/sqlite3/test_bad_input_4.php +++ b/tests/integration/sqlite3/test_bad_input_4.php @@ -42,7 +42,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_bad_input_5.php b/tests/integration/sqlite3/test_bad_input_5.php index 1ce75b6f1..e3613be6b 100644 --- a/tests/integration/sqlite3/test_bad_input_5.php +++ b/tests/integration/sqlite3/test_bad_input_5.php @@ -42,7 +42,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_bad_sql_1.php b/tests/integration/sqlite3/test_bad_sql_1.php index 31cb44a78..306cd1636 100644 --- a/tests/integration/sqlite3/test_bad_sql_1.php +++ b/tests/integration/sqlite3/test_bad_sql_1.php @@ -42,7 +42,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_bad_sql_2.php b/tests/integration/sqlite3/test_bad_sql_2.php index 0ecc686c0..5e9938d46 100644 --- a/tests/integration/sqlite3/test_bad_sql_2.php +++ b/tests/integration/sqlite3/test_bad_sql_2.php @@ -42,7 +42,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_query.php b/tests/integration/sqlite3/test_query.php index 6f1ee56c1..65db1741e 100644 --- a/tests/integration/sqlite3/test_query.php +++ b/tests/integration/sqlite3/test_query.php @@ -67,7 +67,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_query_logging_off.php b/tests/integration/sqlite3/test_query_logging_off.php index 2993110af..ae637b324 100644 --- a/tests/integration/sqlite3/test_query_logging_off.php +++ b/tests/integration/sqlite3/test_query_logging_off.php @@ -70,7 +70,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_querysingle_1.php b/tests/integration/sqlite3/test_querysingle_1.php index d78af0d02..26ac11a63 100644 --- a/tests/integration/sqlite3/test_querysingle_1.php +++ b/tests/integration/sqlite3/test_querysingle_1.php @@ -53,7 +53,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlite3/test_querysingle_2.php b/tests/integration/sqlite3/test_querysingle_2.php index 542161a63..c830e728e 100644 --- a/tests/integration/sqlite3/test_querysingle_2.php +++ b/tests/integration/sqlite3/test_querysingle_2.php @@ -57,7 +57,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlitedatabase/test_bad_input_1.php b/tests/integration/sqlitedatabase/test_bad_input_1.php index a7c3c28e1..c175c5493 100644 --- a/tests/integration/sqlitedatabase/test_bad_input_1.php +++ b/tests/integration/sqlitedatabase/test_bad_input_1.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlitedatabase/test_bad_input_2.php b/tests/integration/sqlitedatabase/test_bad_input_2.php index 423cbc54a..80563bd95 100644 --- a/tests/integration/sqlitedatabase/test_bad_input_2.php +++ b/tests/integration/sqlitedatabase/test_bad_input_2.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlitedatabase/test_bad_input_3.php b/tests/integration/sqlitedatabase/test_bad_input_3.php index 7453c70a4..f3e0d5e1c 100644 --- a/tests/integration/sqlitedatabase/test_bad_input_3.php +++ b/tests/integration/sqlitedatabase/test_bad_input_3.php @@ -38,7 +38,8 @@ [{"name":"OtherTransactionTotalTime/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlitedatabase/test_query.php b/tests/integration/sqlitedatabase/test_query.php index 90bd49a5c..f1aa3dee3 100644 --- a/tests/integration/sqlitedatabase/test_query.php +++ b/tests/integration/sqlitedatabase/test_query.php @@ -72,7 +72,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlitedatabase/test_query_logging_off.php b/tests/integration/sqlitedatabase/test_query_logging_off.php index 4aed4020e..5375d6168 100644 --- a/tests/integration/sqlitedatabase/test_query_logging_off.php +++ b/tests/integration/sqlitedatabase/test_query_logging_off.php @@ -75,7 +75,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/tests/integration/sqlitedatabase/test_unbuffered.php b/tests/integration/sqlitedatabase/test_unbuffered.php index a22824010..5558baaf2 100644 --- a/tests/integration/sqlitedatabase/test_unbuffered.php +++ b/tests/integration/sqlitedatabase/test_unbuffered.php @@ -71,7 +71,8 @@ "scope":"OtherTransaction/php__FILE__"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Forwarding/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], [{"name":"Supportability/Logging/Metrics/PHP/enabled"}, [1, "??", "??", "??", "??", "??"]], - [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]] + [{"name":"Supportability/Logging/LocalDecorating/PHP/disabled"},[1, "??", "??", "??", "??", "??"]], + [{"name":"Supportability/Logging/Labels/PHP/disabled"}, [1, "??", "??", "??", "??", "??"]] ] ] */ diff --git a/trivy.yaml b/trivy.yaml index e27bd8157..d28216aa6 100644 --- a/trivy.yaml +++ b/trivy.yaml @@ -6,7 +6,6 @@ scan: scanners: - vuln - misconfig - skip-dirs: vendor severities: - CRITICAL diff --git a/vendor/.gitignore b/vendor/.gitignore deleted file mode 100644 index 04f2e0852..000000000 --- a/vendor/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -local - -protobuf-c/conf{defs,test}* diff --git a/vendor/Makefile b/vendor/Makefile deleted file mode 100644 index c9c773172..000000000 --- a/vendor/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -# -# Copyright 2020 New Relic Corporation. All rights reserved. -# SPDX-License-Identifier: Apache-2.0 -# - -GIT ?= git - -all: protobuf-c - -.PHONY: clean -clean: protobuf-clean protobuf-c-clean - rm -rf local - -local: - mkdir -p local - -# -# protobuf -# -# This requires a C++ compiler, autoconf, and automake. -# -# We're only going to build the C++ components, since that's all we need. -# -.PHONY: protobuf-clean -protobuf: local/bin/protoc - -local/bin/protoc: protobuf/Makefile - $(MAKE) -C protobuf install - -protobuf/configure: protobuf/autogen.sh protobuf/configure.ac protobuf/Makefile.am - cd protobuf && ./autogen.sh - -protobuf/Makefile: protobuf/configure - cd protobuf && ./configure --prefix=`pwd`/../local --enable-static=yes --enable-shared=no --with-pic - -protobuf-clean: - cd protobuf && $(GIT) clean -fdx - -# -# protobuf-c -# -# This requires a C++ compiler, autoconf, and automake. -# -.PHONY: protobuf-c-clean -protobuf-c: local/lib/libprotobuf-c.a - -local/lib/libprotobuf-c.a: protobuf-c/Makefile local - $(MAKE) -C protobuf-c install - -protobuf-c/configure: protobuf-c/autogen.sh protobuf-c/configure.ac - cd protobuf-c && ./autogen.sh - -protobuf-c/Makefile: protobuf-c/configure protobuf - cd protobuf-c && PKG_CONFIG_PATH=../local/lib/pkgconfig PROTOC=../local/bin/protoc ./configure --prefix=`pwd`/../local --enable-static=yes --enable-shared=no --disable-dependency-tracking --with-pic - -protobuf-c-clean: - cd protobuf-c && $(GIT) clean -fdx diff --git a/vendor/README.md b/vendor/README.md deleted file mode 100644 index b20b114d6..000000000 --- a/vendor/README.md +++ /dev/null @@ -1,63 +0,0 @@ -# Vendored dependencies - -This directory contains copies of dependencies that we want to build into the -PHP agent. - -## Adding a dependency - -1. Ensure that the dependency is licensed in a way that allows us to use it. -2. Clone the dependency into a directory under this path. -3. Remove `.git`, if necessary. -4. Add rules to [`vendor/Makefile`](Makefile) to build and clean the - dependency. -5. Update [`make/vendor.mk`](../make/vendor.mk) to provide whatever variables - are necessary for downstream libraries to include and link against the - dependency. -6. Update whatever other component(s) need to include the dependency. -7. Add a note to this README about the dependency you added. -8. Update [`THIRD_PARTY_NOTICES.md`](../THIRD_PARTY_NOTICES.md) to include - licensing information for the dependency. - -Note that you will almost certainly want to build any vendored libraries as -static libraries to avoid deployment issues where specific dynamic libraries -are required on customer systems. You can verify this by building the PHP agent -on Linux, then running `ldd` as follows: `ldd agent/modules/newrelic.so`. - -You should see output like the following: - -``` - linux-vdso.so.1 (0x00007ffcf65c4000) - libm.so.6 => /usr/lib/libm.so.6 (0x00007ff08667f000) - libdl.so.2 => /usr/lib/libdl.so.2 (0x00007ff08667a000) - librt.so.1 => /usr/lib/librt.so.1 (0x00007ff08666f000) - libpcre.so.1 => /usr/lib/libpcre.so.1 (0x00007ff0865fd000) - libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007ff0865db000) - libc.so.6 => /usr/lib/libc.so.6 (0x00007ff086415000) - /usr/lib64/ld-linux-x86-64.so.2 (0x00007ff0868cb000) -``` - -If you see anything _other_ than these libraries, you should investigate. - -## Existing dependencies - -### `protobuf` - -Version 3.13.0 of [the C++ protobuf -code](https://github.com/protocolbuffers/protobuf), as cloned from the repo. - -Two directories have been removed from the checkout to avoid build issues: - -* `benchmarks/go`: this was incorrectly picked up by Go 1.8 as a test suite - that should be run when running the daemon tests. Moving to Go modules will - fix this, but in the interim, the directory can be removed without affecting - the protobuf build. -* `examples`: similarly to the above, this would be built as part of the daemon - rules in the Makefile, and migrating to Go modules will fix this. - -### `protobuf-c` - -Version 1.3.3 of the [C protobuf -bindings](https://github.com/protobuf-c/protobuf-c). - -Note that protobuf-c requires protobuf to build, but it is _not_ required at -runtime; we can link against just `libprotobuf-c.a`. diff --git a/vendor/protobuf-c/.commit_docs.sh b/vendor/protobuf-c/.commit_docs.sh deleted file mode 100755 index e4539d861..000000000 --- a/vendor/protobuf-c/.commit_docs.sh +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/bash -e - -# from git-sh-setup.sh -require_clean_work_tree () { - git rev-parse --verify HEAD >/dev/null || exit 1 - git update-index -q --ignore-submodules --refresh - err=0 - - if ! git diff-files --quiet --ignore-submodules - then - echo >&2 "Cannot $0: You have unstaged changes." - err=1 - fi - - if ! git diff-index --cached --quiet --ignore-submodules HEAD -- - then - if [ $err = 0 ] - then - echo >&2 "Cannot $0: Your index contains uncommitted changes." - else - echo >&2 "Additionally, your index contains uncommitted changes." - fi - err=1 - fi - - if [ $err = 1 ] - then - test -n "$2" && echo >&2 "$2" - exit 1 - fi -} - -require_clean_work_tree - -if ! which doxygen >/dev/null; then - echo "Error: doxygen is required" - exit 1 -fi - -DOXYGEN_VERSION="$(doxygen --version)" - -DOC_BRANCH="gh-pages" -ORIG_BRANCH="$(git rev-parse --abbrev-ref HEAD)" -ORIG_COMMIT="$(git describe --match=NeVeRmAtCh --always --abbrev=40 --dirty)" - -TOP="$(pwd)" -export GIT_DIR="$TOP/.git" - -TMPDIR="$(mktemp --tmpdir=$TOP -d)" -HTMLDIR="$TMPDIR/_build/html" -INDEX_FILE="$GIT_DIR/index.${DOC_BRANCH}" - -rm -f "$INDEX_FILE" - -trap "{ cd $TOP; git checkout --force ${ORIG_BRANCH}; rm -f $INDEX_FILE; rm -rf $TMPDIR; }" EXIT - -cd "$TMPDIR" -git reset --hard HEAD - -./autogen.sh -mkdir _build -cd _build -../configure -make html - -if ! git checkout "${DOC_BRANCH}"; then - git checkout --orphan "${DOC_BRANCH}" -fi - -touch "$HTMLDIR/.nojekyll" -echo lib.protobuf-c.io > "$HTMLDIR/CNAME" - -GIT_INDEX_FILE="$INDEX_FILE" GIT_WORK_TREE="$HTMLDIR" \ - git add --no-ignore-removal . -GIT_INDEX_FILE="$INDEX_FILE" GIT_WORK_TREE="$HTMLDIR" \ - git commit -m "Rebuild html documentation from commit ${ORIG_COMMIT} using Doxygen ${DOXYGEN_VERSION}" diff --git a/vendor/protobuf-c/.gitignore b/vendor/protobuf-c/.gitignore deleted file mode 100644 index 9733625b9..000000000 --- a/vendor/protobuf-c/.gitignore +++ /dev/null @@ -1,43 +0,0 @@ -*~ -.*swp -*.la -*.gcda -*.gcno -*.lo -*.log -*.o -*.tar.gz -*.trs -.deps/ -.dirstamp -.libs/ -/Doxyfile -/Makefile -/Makefile.in -/aclocal.m4 -/autom4te.cache -/build-aux -/config.* -/configure -/doxygen-doc -/html -/libtool -/protobuf-c-*-coverage.info -/protobuf-c-*-coverage/ -/stamp-h1 -/stamp-html -/test-suite.log -TAGS -protobuf-c/libprotobuf-c.pc -protoc-c/protoc-c -protoc-c/protoc-gen-c -t/generated-code/test-generated-code -t/generated-code2/cxx-generate-packed-data -t/generated-code2/test-full-cxx-output.inc -t/generated-code2/test-generated-code2 -t/generated-code3/test-generated-code3 -t/version/version -*.pb-c.c -*.pb-c.h -*.pb.cc -*.pb.h diff --git a/vendor/protobuf-c/.travis.yml b/vendor/protobuf-c/.travis.yml deleted file mode 100644 index 00d0b6224..000000000 --- a/vendor/protobuf-c/.travis.yml +++ /dev/null @@ -1,32 +0,0 @@ -language: - - c - - cpp - -sudo: required -dist: xenial - -addons: - apt: - packages: - - lcov - - valgrind - -env: - global: - - PROTOBUF_VERSION=3.7.1 - - PKG_CONFIG_PATH=$HOME/protobuf-$PROTOBUF_VERSION-bin/lib/pkgconfig - -install: - - pip install --user cpp-coveralls - - wget https://github.com/protocolbuffers/protobuf/archive/v$PROTOBUF_VERSION.tar.gz - - tar xf v$PROTOBUF_VERSION.tar.gz - - ( cd protobuf-$PROTOBUF_VERSION && ./autogen.sh && ./configure --prefix=$HOME/protobuf-$PROTOBUF_VERSION-bin && make -j2 && make install ) - -script: - - ./autogen.sh - - ./configure && make -j2 distcheck VERBOSE=1 && make clean - - ./configure --enable-valgrind-tests CFLAGS="-fsanitize=undefined -fno-sanitize-recover=undefined" && make -j2 distcheck DISTCHECK_CONFIGURE_FLAGS="--enable-valgrind-tests CFLAGS=\"-fsanitize=undefined -fno-sanitize-recover=undefined\"" VERBOSE=1 && make clean - - ./configure --enable-code-coverage && make -j2 && make check - -after_success: - - cpp-coveralls --build-root . --exclude t/ --exclude /usr/include --exclude protobuf-$PROTOBUF_VERSION --exclude protoc-c diff --git a/vendor/protobuf-c/CONTRIBUTING.md b/vendor/protobuf-c/CONTRIBUTING.md deleted file mode 100644 index ceaba8f8d..000000000 --- a/vendor/protobuf-c/CONTRIBUTING.md +++ /dev/null @@ -1,5 +0,0 @@ -## Contributing - -The most recently released `protobuf-c` version is kept on the `master` branch, while the `next` branch is used for commits targeted at the next release. Please base patches and pull requests against the `next` branch. __Do not open pull requests against master!__ - -Copyright to all contributions are retained by the original author, but must be licensed under the terms of the [BSD-2-Clause](http://opensource.org/licenses/BSD-2-Clause) license. diff --git a/vendor/protobuf-c/ChangeLog b/vendor/protobuf-c/ChangeLog deleted file mode 100644 index 4620cb75a..000000000 --- a/vendor/protobuf-c/ChangeLog +++ /dev/null @@ -1,512 +0,0 @@ -protobuf-c (1.3.3) - - [ Robert Edmonds ] - * Release 1.3.3. - - * Fix build failure on protobuf 2.x (#398). - - [ msshapira ] - * CMake: Fix support for MSVC static build (#350). - - [ Adam Cozzette ] - * Fix some test assertions in test-generated-code2.c (#392). - - [ Ilya Lipnitskiy ] - * protobuf-c.c: Make zigzag encoding more compact (#400). - - [ Markus Engel ] - * CMake: Fix endianness check. - -protobuf-c (1.3.2) - - [ Robert Edmonds ] - * Release 1.3.2. - - * Use protobuf 3.7.1 in the Travis-CI environment (#368). - - * Fix test suite build failure on newer versions of protobuf (#369). - - [ Ilya Lipnitskiy ] - * Fix proto3 repeated scalar field default packing behavior (#330, #377). - - [ Adam Cozzette ] - * Fix out-of-bounds read in scan_length_prefixed_data() (#375, #376). - - [ Jurriaan Bremer ] - * Fix -Wdeclaration-after-statement warning in parse_oneof_member() (#360). - - [ Hayri Ugur Koltuk ] - * Fix SIGSEGV in protobuf_c_message_check() on messages with unpopulated - oneof members (#358). - - [ Italo Guerrieri ] - * Do not allow tag values of 0 in protobuf messages, as these are not - allowed by proto2 or proto3 (#299). - -protobuf-c (1.3.1) - - [ Robert Edmonds ] - * Release 1.3.1. - - * Restore protobuf-2.x compatibility (#284, #285). - - * Use xenial and protobuf 3.6.1 in the Travis-CI environment (#332). - - * Convert uses of protobuf's scoped_ptr.h to C++11 std::unique_ptr, needed - to compile against protobuf 3.6.1 (#320, #333). - - * Use AX_CXX_COMPILE_STDCXX macro to enable C++11 support in old compilers - (#312, #317, #327, #334). - - [ Fredrik Gustafsson ] - * Add std:: to some types (#294, #305, #309). - - [ Sam Collinson ] - * Check the return value of int_range_lookup before using as an array index; - it can return -1 (#315). - - [ Matthias Dittrich ] - * Fix compilation on mingw by using explicit protoc --plugin=NAME=PATH syntax - in Makefile.am (#289, #290). - -protobuf-c (1.3.0) - - [ Robert Edmonds ] - * Release 1.3.0. - - * Add test case for the issue in #220 (#254). - - * Fix issue #251, "Bad enums with multiple oneofs" (#256). - - * Add warning flags to my_CFLAGS (#257). - - * Fix namespace errors when compiled with latest protobuf (#280). - - * Bump minimum required header version for proto3 syntax (#282). - - [ Paolo Borelli ] - * Turn the compiler into a protoc plugin (#206). This allows the protobuf-c - compiler to be invoked as "protoc --c_out=...". For backwards - compatibility, we still ship a protoc-c command, but it's a symlink to the - protoc-gen-c binary. - - * proto3 support (#228). - - * Remove leftover FIXME comment (#258). - - * Fix proto3 "is zeroish" evaluation (#264). - - * Small cleanup in oneof handling (#265). - - * Rework is_zeroish one more time (#267). - - * proto3: make strings default to "" instead of NULL (#274). - - [ Tomek Wasilczyk ] - * Fix -Wsign-compare warnings (#213). - - * Fix ISO C90 -Wdeclaration-after-statement warnings (#214). - - * Fix bigendian -Wunused-label warning (#215). - - [ Ilya Lipnitsky ] - * protoc-c/c_message.cc: Force int size on oneof enums (#221). Fixes wrong - enum generation and handling for onceof cases (#220). - - [ Adnan ] - * Fix cmake build if built as part of an external project (#231). - - [ Gregory Detal ] - * Remove .pb.{cc,h} in distdir instead of top_distdir in order to prevent - removing files from other projects when protobuf-c is included as an - autotools subproject (#232). - - [ Ben Farnham ] - * Relax autoconf constraint from v2.64 to v2.63 so that it works on older - Linux distros (#233). - - [ Thomas KÃļckerbauer ] - * rm argument fix for Solaris (#234). - - * Add 'const' qualifier to 'init_value' variable in generated files (#236). - - [ Richard Kettlewell ] - * Document and extend the effect of passing NULL to ..._free_unpacked - functions (#255). - - [ Alex Milich ] - * CMake: Workaround for static builds that use MSVC (#243). - - [ Josh Junon ] - * CMake: Allow protobuf-c to be included via include_subdirectory (#245). - - [ Alexei Kasatkin ] - * CMake: Windows fixes (#266). - -protobuf-c (1.2.1) - - [ Robert Edmonds ] - * Release 1.2.1. - - [ Paolo Borelli ] - * protoc-c: Generate code that uses the universal zero initializer {0} when - initializing a oneof union (#187, #205). - -protobuf-c (1.2.0) - - [ Robert Edmonds ] - * Release 1.2.0. - - [ Ilya Lipnitsky ] - * Implement the "optimize_for = CODE_SIZE" option (#183). - - * Eliminate undefined behavior in zigzag functions (#198). - - * Pack negative enum values correctly (#199). - - [ Peter Leschev ] - * Fix protobuf_c_message_get_packed_size() on 16-bit systems (#196, #197). - - [ Diego Elio PettenÃ˛ ] - * Update link to Autotools Mythbuster to canonical site (#201). - - [ Zex Li ] - * Skip test suite when cross-compiling (#184). - -protobuf-c (1.1.1) - - [ Robert Edmonds ] - * Release 1.1.1. - - * Use protobuf 2.6.1 in the Travis-CI environment. - - [ Ilya Lipnitskiy ] - * Munge C block comment delimiters in protobuf comments, preventing syntax - errors in generated header files (Issue #180, #185). - - * Add static qualifier to ProtobufCEnumValue and ProtobufCEnumValueIndex - variables in generated output. - - [ Oleg Efimov ] - * Fix -Wpointer-sign compiler diagnostics in the test suite. - - * Check for NULL pointers in protobuf_c_message_free_unpacked() - (Issue #177). - - * Exclude protoc-c and downloaded protobuf sources from Coveralls report. - - [ Andrey Myznikov ] - * Fix incorrect 'short_name' field values in ProtobufCServiceDescriptor - variables in generated output. - -protobuf-c (1.1.0) - - [ Robert Edmonds ] - * Release 1.1.0. - - [ Ilya Lipnitskiy ] - * Fix a bug when merging optional byte fields. - - * Documentation updates. - - * Implement oneof support (Issue #174). Protobuf 2.6.0 or newer is now - required to build protobuf-c. - - * Print leading comments for enum, message, and field definitions into - generated header files (Issue #175). - -protobuf-c (1.0.2) - - [ Robert Edmonds ] - * Release 1.0.2. - - [ Ilya Lipnitskiy ] - * Fix a build failure with Protobuf 2.6.0 related to aliased enum constants - (Issue #163). - - * Protobuf 2.5.0 or newer is now required to build protobuf-c (Issue #166). - This is due to the fix for #163. - - [ Alexei Kasatkin ] - * Eliminate void pointer arithmetic (Issue #167). - - * Always define PROTOBUF_C__DEPRECATED, even on compilers that are not GCC - (Issue #167). - - * Work around the lack of the 'inline' keyword in Microsoft compilers - (Issue #167). - - * Add a CMakeLists.txt file as a fallback build system for Windows - (Issue #168). - - [ Natanael Copa ] - * Fix a build failure in the test suite that occurred with a parallel make - running on a system with a large number of CPUs (Issue #156, #169). - -protobuf-c (1.0.1) - - [ Robert Edmonds ] - * Explicitly set the .data field of ProtobufCBinaryData's to NULL when - unpacking a zero length byte string (Issue #157). - -protobuf-c (1.0.0) - - [ Andrei Nigmatulin ] - * Append "u", "ull", and "ll" integer literal suffixes for uint32, uint64, - and int64 default values in generated code, in order to avoid "integer - constant is so large that it is unsigned" compiler warnings. - (Issue #136.) - - * Revert the problematic hash-based required field detection. - (Related to Issue #60, #79, #137.) - - * Replace the 'packed' member of ProtobufCFieldDescriptor with a 'flags' - word. Define flags for packed and deprecated fields. (Issue #138.) - - [ Dave Benson ] - * Treat a "length-prefixed" wire-type message for a repeated field as - packed-repeated whenever it makes sense (for all types other than - messages, strings, and bytes). - - * Switch to New BSD license. - - * Add protobuf_c_message_check(). - - * Compile error in packing 64-bit versions on some platforms - (srobbins99: Issue #68 Comment 1). - - * Fix for memory error if the required-field check fails. See Issue #63 - for demo (w/ nice test case by dror.harari). - - * Add PROTOBUF_C_{MAJOR,MINOR} for compile-time checks and - protobuf_c_{major,minor} for checks about the running library - (Issue #53). - - * Use a small constant-size hash-table instead of alloca() for detecting - required fields, and it also prevents us from using too much stack, etc. - (Related to Issue #60, #79). - - * Add a macro to ensure enums are the size of ints (Issue #69). - - [ Ilya Lipnitskiy ] - * Travis-CI integration. - - * Add source .proto filename to generated files. - - * Add protobuf-c version to protoc-c --version output (Issue #52). - - * For embedded submessage fields, merge multiple instances of the same - field, per the protobuf documentation (Issue #91). - - * Don't print unpack errors by default. - - * Optionally allow running the test suite under valgrind with ./configure - --enable-valgrind-tests. (Based on valgrind-tests.m4 from gnulib.) - - [ Kevin Lyda ] - * Autoconf portability fixes. - - * Add doxygen detection and make targets to the build system. - - * Doxygen documentation for the libprotobuf-c public API (Issue #132). - - [ Nick Galbreath ] - * Prevent possible overflow on 64-bit systems (Issue #106). - - [ Robert Edmonds ] - * Remove CMake (Issue #87). - - * Modernize the build system. - - Don't generate any diagnostics when building the build system with - modern autotools (Issue #89). - - - Use the PKG_CHECK_MODULES macro to locate protobuf. - - - Use the AC_C_BIGENDIAN macro to detect endianness, rather than custom - code. - - - Use the automake silent-rules option so the build output is actually - readable. - - - Generate our own pkg-config .pc files. - - * Reorganize the source tree. This affects the public protobuf-c header - path, which is now . A compatibility symlink from - to has been installed so that existing - code will continue to compile. New code should at some point begin using - the new include path, i.e., "#include " rather - than "#include ". - - * The RPC code has been split out into a separate project, protobuf-c-rpc. - - * Fix a potential use of an unitialized value in protobuf_c_message_unpack() - and several memory leaks in protoc-c, discovered by a commercial static code - analysis tool. - - * Bump the libprotobuf-c SONAME. - - * Begin versioning the library's symbols. (Based on ld-version-script.m4 - from gnulib.) - - * Preserve case in enum value names generated by protoc-c (Issue #129). - Reported by Oleg Efimov. - - * Add library functions protobuf_c_version() and protobuf_c_version_string() - for retrieving the version of the compiled library, and header macros - PROTOBUF_C_VERSION and PROTOBUF_C_VERSION_STRING for retrieving the - version of the header file. This replaces the interfaces for retrieving - the protobuf-c version numbers in Issue #53. - - * Add a version guard that ensures that the output of protoc-c is only - compiled against a protobuf-c header file from the exact same protobuf-c - release. - - * Add a --enable-code-coverage option to configure, which enables a - "make check-code-coverage" build target. This generates a code coverage - report and requires the lcov tool to be installed. - - * Remove the old DocBook documentation in doc/c-code-generator.{html,xml}. - Relevant material has been updated and incorporated into the Doxygen - documentation in the protobuf-c header file. - - * Remove the protobuf_c_default_allocator and protobuf_c_system_allocator - global variables from the exported library interface. All exported library - functions that need to perform dynamic memory allocation receive a - user-provided ProtobufCAllocator* parameter. If this parameter is NULL, - the system's default memory allocator will be used. - - Client code that previously passed "&protobuf_c_system_allocator" to - protobuf-c library functions taking a ProtobufCAllocator* argument should - be updated to pass "NULL" instead. - - Client code that previously overrode protobuf_c_default_allocator with - custom allocation functions and passed NULL as the ProtobufCAllocator* - argument to protobuf-c library functions should be updated to instead - enclose the custom allocation functions in a ProtobufCAllocator struct and - pass this object to protobuf-c library functions taking a - ProtobufCAllocator* parameter. - - * Update copyright and license statements throughout. The original - protobuf code released by Google was relicensed from Apache-2.0 to - BSD-3-Clause. Dave Benson also converted his license from BSD-3-Clause - to BSD-2-Clause. - - [ Tomasz Wasilczyk ] - * Don't export protobuf_c_message_init_generic() as an external symbol. - - * Don't use C++ style comments in C code. - - * Fix -Wcast-align warnings when compiled with clang. - -protobuf-c (0.15) - - make protobuf_c_message_init() into a function (Issue #49, daveb) - - Fix for freeing memory after unpacking bytes w/o a default-value. - (Andrei Nigmatulin) - - minor windows portability issues (use ProtobufC_FD) (Pop Stelian) - - --with-endianness={little,big} (Pop Stelian) - - bug setting up values of has_idle in public dispatch, - make protobuf_c_dispatch_run() use only public members (daveb) - - provide cmake support and some Windows compatibility (Nikita Manovich) - -protobuf-c (0.14) - - build fix (missing dependency in test directory) - - add generation / installation of pkg-config files. (Bobby Powers) - - support for packed repeated fields (Dave Benson) - - bug in protobuf_c_dispatch_close_fd(), which usually only - showed up in later function calls. - - support for deprecated fields -- enable a GCC warning - if a field has the "deprecated" option enabled. (Andrei Nigmatulin) - - hackery to try to avoid touching inttypes.h on windows (Issue #41) - - fix for protobuf_c_message_unpack() to issue error if any - "required" field is missing in input stream. (Andrei Nigmatulin) - -protobuf-c (0.13) - - Fix for when the number of connections gets too great in RPC. - (Leszek Swirski) (issue #32) - - Add --disable-protoc to only build libprotobuf-c (daveb) - - Bug fixes for protobuf_c_enum_descriptor_get_value_by_name() - and protobuf_c_service_descriptor_get_method_by_name() - - if descriptor->message_init != NULL, use it from unpack() - as an optimization (daveb) - - implement protobuf_c_{client,server}_set_error_handler() - -protobuf-c (0.12) - - for field names which are reserved words, use the real name - given in the protobuf-c file, not the mangled name which - is the name of the member in the C structure. (Andrei Nigmatulin) - - add protobuf_c_message_init() function; add virtual function - that implements it efficiently. (Andrei Nigmatulin) - - bug fix for sfixed32, fixed32, float wire-types on - big-endian platforms (Robert Edmonds) - - compile with the latest protobuf (the header file wire_format_inl.h - is now wire_format.h) (Robert Edmonds) - -protobuf-c (0.11) - - allow CFLAGS=-DPRINT_UNPACK_ERRORS=0 to suppress - unpack warnings from being printed at compile time (Andrei Nigmatulin) - - give error if an unknown wire-type is encountered (Andrei Nigmatulin) - - fix technically possible overflows during unpack of very - large messages (Andrei Nigmatulin) - - [UNFINISHED] windows RPC work - - use automake's "foreign" mode from within configure.ac - and add version information to the library (Robert Edmonds) - - ProtobufCServiceDescriptor::method_indices_by_name: missing - const. (Issue 21) - - Update to support new UnknownFields API. (fix by dcreager) (Issue 20) - -protobuf-c (0.10) - - build issue on platforms which don't compute library dependencies - automatically. - - fix for certain types of corrupt messages (Landon Fuller) (issue 16) - -protobuf-c (0.9) - - build issue: needed $(EXEEXT) in dependency lists for cygwin - - bug fix: protobuf_c_service_get_method_by_name() was not correct b/c - the service's methods were not sorted by name (the header file - used to incorrectly state that they were). - Now we correctly implement protobuf_c_service_get_method_by_name() - (using a bsearch indexed by separate array). - - generated source incompatibility: we added a new - member to ProtobufCServiceDescriptor (method_indices_by_name). - You will have to run the latest protobuf - to generate those structures. - - rename rpc-client's "autoretry" mechanism to "autoreconnect". - - bug fixes using TCP clients with the RPC system. - - handle allocation failures more gracefully (Jason Lunz) (issue 15) - -protobuf-c (0.8) - - Destroy function typedef for Services was omitting a "*" - - service_machgen_invoke was broken. (issue 12) - - add RPC system (BETA) - - don't segfault when packing NULL strings and messages. (issue 13) - -protobuf-c (0.7) - - memory leak: unknown fields were not being freed by free_unpacked() - - lowercase field names consistently when composing - default_value names. (issue 11) - - remove spurious semicolon (issue 10) - -protobuf-c (0.6) - - Warning suppression for -Wcast-qual and -Wshadow. - - Support for default values of all types allowed by core protobuf. - - Generate message__init functions, for when the static initializer - isn't convenient. - - add some reserved fields at the end of the various descriptors - -protobuf-c (0.5) - - License now included in major files. - - Use little-endian optimizations; fix a bug therein. - - Include 'make deb' target. - -protobuf-c (0.4) - - Update to work with protobuf 2.0.1. - -protobuf-c (0.2) -protobuf-c (0.3) - - Minor pedantic concerns about generated code. - -protobuf-c (0.1) - - Lots of test code (and bug fixes). - -protobuf-c (0.0) - - Initial release. diff --git a/vendor/protobuf-c/Doxyfile.in b/vendor/protobuf-c/Doxyfile.in deleted file mode 100644 index 7d556ec15..000000000 --- a/vendor/protobuf-c/Doxyfile.in +++ /dev/null @@ -1,2312 +0,0 @@ -# Doxyfile 1.8.7 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project. -# -# All text after a double hash (##) is considered a comment and is placed in -# front of the TAG it is preceding. -# -# All text after a single hash (#) is considered a comment and will be ignored. -# The format is: -# TAG = value [value, ...] -# For lists, items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (\" \"). - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all text -# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv -# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv -# for the list of possible encodings. -# The default value is: UTF-8. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by -# double-quotes, unless you are using Doxywizard) that should identify the -# project for which the documentation is generated. This name is used in the -# title of most generated pages and in a few other places. -# The default value is: My Project. - -PROJECT_NAME = "@PACKAGE@" - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. This -# could be handy for archiving the generated documentation or if some version -# control system is used. - -PROJECT_NUMBER = @PACKAGE_VERSION@ - -# Using the PROJECT_BRIEF tag one can provide an optional one line description -# for a project that appears at the top of each page and should give viewer a -# quick idea about the purpose of the project. Keep the description short. - -PROJECT_BRIEF = "@PACKAGE_DESCRIPTION@" - -# With the PROJECT_LOGO tag one can specify an logo or icon that is included in -# the documentation. The maximum height of the logo should not exceed 55 pixels -# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo -# to the output directory. - -PROJECT_LOGO = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path -# into which the generated documentation will be written. If a relative path is -# entered, it will be relative to the location where doxygen was started. If -# left blank the current directory will be used. - -OUTPUT_DIRECTORY = - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- -# directories (in 2 levels) under the output directory of each output format and -# will distribute the generated files over these directories. Enabling this -# option can be useful when feeding doxygen a huge amount of source files, where -# putting all generated files in the same directory would otherwise causes -# performance problems for the file system. -# The default value is: NO. - -CREATE_SUBDIRS = NO - -# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII -# characters to appear in the names of generated files. If set to NO, non-ASCII -# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode -# U+3044. -# The default value is: NO. - -ALLOW_UNICODE_NAMES = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -# Ukrainian and Vietnamese. -# The default value is: English. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member -# descriptions after the members that are listed in the file and class -# documentation (similar to Javadoc). Set to NO to disable this. -# The default value is: YES. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief -# description of a member or function before the detailed description -# -# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. -# The default value is: YES. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator that is -# used to form the text in various listings. Each string in this list, if found -# as the leading text of the brief description, will be stripped from the text -# and the result, after processing the whole list, is used as the annotated -# text. Otherwise, the brief description is used as-is. If left blank, the -# following values are used ($name is automatically replaced with the name of -# the entity):The $name class, The $name widget, The $name file, is, provides, -# specifies, contains, represents, a, an and the. - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# doxygen will generate a detailed section even if there is only a brief -# description. -# The default value is: NO. - -ALWAYS_DETAILED_SEC = YES - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. -# The default value is: NO. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path -# before files name in the file list and in the header files. If set to NO the -# shortest path that makes the file name unique will be used -# The default value is: YES. - -FULL_PATH_NAMES = NO - -# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. -# Stripping is only done if one of the specified strings matches the left-hand -# part of the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the path to -# strip. -# -# Note that you can specify absolute paths here, but also relative paths, which -# will be relative from the directory where doxygen is started. -# This tag requires that the tag FULL_PATH_NAMES is set to YES. - -STRIP_FROM_PATH = @top_srcdir@ - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the -# path mentioned in the documentation of a class, which tells the reader which -# header file to include in order to use a class. If left blank only the name of -# the header file containing the class definition is used. Otherwise one should -# specify the list of include paths that are normally passed to the compiler -# using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but -# less readable) file names. This can be useful is your file systems doesn't -# support long names like on DOS, Mac, or CD-ROM. -# The default value is: NO. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the -# first line (until the first dot) of a Javadoc-style comment as the brief -# description. If set to NO, the Javadoc-style will behave just like regular Qt- -# style comments (thus requiring an explicit @brief command for a brief -# description.) -# The default value is: NO. - -JAVADOC_AUTOBRIEF = YES - -# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first -# line (until the first dot) of a Qt-style comment as the brief description. If -# set to NO, the Qt-style will behave just like regular Qt-style comments (thus -# requiring an explicit \brief command for a brief description.) -# The default value is: NO. - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a -# multi-line C++ special comment block (i.e. a block of //! or /// comments) as -# a brief description. This used to be the default behavior. The new default is -# to treat a multi-line C++ comment block as a detailed description. Set this -# tag to YES if you prefer the old behavior instead. -# -# Note that setting this tag to YES also means that rational rose comments are -# not recognized any more. -# The default value is: NO. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the -# documentation from any documented member that it re-implements. -# The default value is: YES. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a -# new page for each member. If set to NO, the documentation of a member will be -# part of the file/class/namespace that contains it. -# The default value is: NO. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen -# uses this value to replace tabs by spaces in code fragments. -# Minimum value: 1, maximum value: 16, default value: 4. - -TAB_SIZE = 8 - -# This tag can be used to specify a number of aliases that act as commands in -# the documentation. An alias has the form: -# name=value -# For example adding -# "sideeffect=@par Side Effects:\n" -# will allow you to put the command \sideeffect (or @sideeffect) in the -# documentation, which will result in a user-defined paragraph with heading -# "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines. - -ALIASES = - -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding "class=itcl::class" -# will allow you to use the command class in the itcl::class meaning. - -TCL_SUBST = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources -# only. Doxygen will then generate output that is more tailored for C. For -# instance, some of the names that are used will be different. The list of all -# members will be omitted, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_FOR_C = YES - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or -# Python sources only. Doxygen will then generate output that is more tailored -# for that language. For instance, namespaces will be presented as packages, -# qualified scopes will look different, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources. Doxygen will then generate output that is tailored for Fortran. -# The default value is: NO. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for VHDL. -# The default value is: NO. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given -# extension. Doxygen has a built-in mapping, but you can override or extend it -# using this tag. The format is ext=language, where ext is a file extension, and -# language is one of the parsers supported by doxygen: IDL, Java, Javascript, -# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: -# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: -# Fortran. In the later case the parser tries to guess whether the code is fixed -# or free formatted code, this is the default for Fortran type files), VHDL. For -# instance to make doxygen treat .inc files as Fortran files (default is PHP), -# and .f files as C (default is Fortran), use: inc=Fortran f=C. -# -# Note For files without extension you can use no_extension as a placeholder. -# -# Note that for custom extensions you also need to set FILE_PATTERNS otherwise -# the files are not read by doxygen. - -EXTENSION_MAPPING = - -# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments -# according to the Markdown format, which allows for more readable -# documentation. See http://daringfireball.net/projects/markdown/ for details. -# The output of markdown processing is further processed by doxygen, so you can -# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in -# case of backward compatibilities issues. -# The default value is: YES. - -MARKDOWN_SUPPORT = YES - -# When enabled doxygen tries to link words that correspond to documented -# classes, or namespaces to their corresponding documentation. Such a link can -# be prevented in individual cases by by putting a % sign in front of the word -# or globally by setting AUTOLINK_SUPPORT to NO. -# The default value is: YES. - -AUTOLINK_SUPPORT = YES - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should set this -# tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); -# versus func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. -# The default value is: NO. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. -# The default value is: NO. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen -# will parse them like normal C++ but will assume all classes use public instead -# of private inheritance when no explicit protection keyword is present. -# The default value is: NO. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate -# getter and setter methods for a property. Setting this option to YES will make -# doxygen to replace the get and set methods by a property in the documentation. -# This will only work if the methods are indeed getting or setting a simple -# type. If this is not the case, or you want to show the methods anyway, you -# should set this option to NO. -# The default value is: YES. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. -# The default value is: NO. - -DISTRIBUTE_GROUP_DOC = NO - -# Set the SUBGROUPING tag to YES to allow class member groups of the same type -# (for instance a group of public functions) to be put as a subgroup of that -# type (e.g. under the Public Functions section). Set it to NO to prevent -# subgrouping. Alternatively, this can be done per class using the -# \nosubgrouping command. -# The default value is: YES. - -SUBGROUPING = YES - -# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions -# are shown inside the group in which they are included (e.g. using \ingroup) -# instead of on a separate page (for HTML and Man pages) or section (for LaTeX -# and RTF). -# -# Note that this feature does not work in combination with -# SEPARATE_MEMBER_PAGES. -# The default value is: NO. - -INLINE_GROUPED_CLASSES = NO - -# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions -# with only public data fields or simple typedef fields will be shown inline in -# the documentation of the scope in which they are defined (i.e. file, -# namespace, or group documentation), provided this scope is documented. If set -# to NO, structs, classes, and unions are shown on a separate page (for HTML and -# Man pages) or section (for LaTeX and RTF). -# The default value is: NO. - -INLINE_SIMPLE_STRUCTS = NO - -# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or -# enum is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically be -# useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. -# The default value is: NO. - -TYPEDEF_HIDES_STRUCT = YES - -# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This -# cache is used to resolve symbols given their name and scope. Since this can be -# an expensive process and often the same symbol appears multiple times in the -# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small -# doxygen will become slower. If the cache is too large, memory is wasted. The -# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range -# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 -# symbols. At the end of a run doxygen will report the cache usage and suggest -# the optimal cache size from a speed point of view. -# Minimum value: 0, maximum value: 9, default value: 0. - -LOOKUP_CACHE_SIZE = 0 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. Private -# class members and static file members will be hidden unless the -# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. -# Note: This will also disable the warnings about undocumented members that are -# normally produced when WARNINGS is set to YES. -# The default value is: NO. - -EXTRACT_ALL = NO - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will -# be included in the documentation. -# The default value is: NO. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal -# scope will be included in the documentation. -# The default value is: NO. - -EXTRACT_PACKAGE = NO - -# If the EXTRACT_STATIC tag is set to YES all static members of a file will be -# included in the documentation. -# The default value is: NO. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined -# locally in source files will be included in the documentation. If set to NO -# only classes defined in header files are included. Does not have any effect -# for Java sources. -# The default value is: YES. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. When set to YES local methods, -# which are defined in the implementation section but not in the interface are -# included in the documentation. If set to NO only methods in the interface are -# included. -# The default value is: NO. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base name of -# the file that contains the anonymous namespace. By default anonymous namespace -# are hidden. -# The default value is: NO. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all -# undocumented members inside documented classes or files. If set to NO these -# members will be included in the various overviews, but no documentation -# section is generated. This option has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. If set -# to NO these classes will be included in the various overviews. This option has -# no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -# (class|struct|union) declarations. If set to NO these declarations will be -# included in the documentation. -# The default value is: NO. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any -# documentation blocks found inside the body of a function. If set to NO these -# blocks will be appended to the function's detailed documentation block. -# The default value is: NO. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation that is typed after a -# \internal command is included. If the tag is set to NO then the documentation -# will be excluded. Set it to YES to include the internal documentation. -# The default value is: NO. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file -# names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. -# The default value is: system dependent. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with -# their full class and namespace scopes in the documentation. If set to YES the -# scope will be hidden. -# The default value is: NO. - -HIDE_SCOPE_NAMES = NO - -# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of -# the files that are included by a file in the documentation of that file. -# The default value is: YES. - -SHOW_INCLUDE_FILES = NO - -# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each -# grouped member an include statement to the documentation, telling the reader -# which file to include in order to use the member. -# The default value is: NO. - -SHOW_GROUPED_MEMB_INC = NO - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include -# files with double quotes in the documentation rather than with sharp brackets. -# The default value is: NO. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the -# documentation for inline members. -# The default value is: YES. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the -# (detailed) documentation of file and class members alphabetically by member -# name. If set to NO the members will appear in declaration order. -# The default value is: YES. - -SORT_MEMBER_DOCS = NO - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief -# descriptions of file, namespace and class members alphabetically by member -# name. If set to NO the members will appear in declaration order. Note that -# this will also influence the order of the classes in the class list. -# The default value is: NO. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the -# (brief and detailed) documentation of class members so that constructors and -# destructors are listed first. If set to NO the constructors will appear in the -# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. -# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief -# member documentation. -# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting -# detailed member documentation. -# The default value is: NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy -# of group names into alphabetical order. If set to NO the group names will -# appear in their defined order. -# The default value is: NO. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by -# fully-qualified names, including namespaces. If set to NO, the class list will -# be sorted only by class name, not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the alphabetical -# list. -# The default value is: NO. - -SORT_BY_SCOPE_NAME = NO - -# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper -# type resolution of all parameters of a function it will reject a match between -# the prototype and the implementation of a member function even if there is -# only one candidate or it is obvious which candidate to choose by doing a -# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still -# accept a match between prototype and implementation in such cases. -# The default value is: NO. - -STRICT_PROTO_MATCHING = NO - -# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the -# todo list. This list is created by putting \todo commands in the -# documentation. -# The default value is: YES. - -GENERATE_TODOLIST = NO - -# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the -# test list. This list is created by putting \test commands in the -# documentation. -# The default value is: YES. - -GENERATE_TESTLIST = NO - -# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug -# list. This list is created by putting \bug commands in the documentation. -# The default value is: YES. - -GENERATE_BUGLIST = NO - -# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) -# the deprecated list. This list is created by putting \deprecated commands in -# the documentation. -# The default value is: YES. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional documentation -# sections, marked by \if ... \endif and \cond -# ... \endcond blocks. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the -# initial value of a variable or macro / define can have for it to appear in the -# documentation. If the initializer consists of more lines than specified here -# it will be hidden. Use a value of 0 to hide initializers completely. The -# appearance of the value of individual variables and macros / defines can be -# controlled using \showinitializer or \hideinitializer command in the -# documentation regardless of this setting. -# Minimum value: 0, maximum value: 10000, default value: 30. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at -# the bottom of the documentation of classes and structs. If set to YES the list -# will mention the files that were used to generate the documentation. -# The default value is: YES. - -SHOW_USED_FILES = NO - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This -# will remove the Files entry from the Quick Index and from the Folder Tree View -# (if specified). -# The default value is: YES. - -SHOW_FILES = NO - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces -# page. This will remove the Namespaces entry from the Quick Index and from the -# Folder Tree View (if specified). -# The default value is: YES. - -SHOW_NAMESPACES = NO - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command command input-file, where command is the value of the -# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided -# by doxygen. Whatever the program writes to standard output is used as the file -# version. For an example see the documentation. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. To create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. You can -# optionally specify a file name after the option, if omitted DoxygenLayout.xml -# will be used as the name of the layout file. -# -# Note that if you run doxygen from a directory containing a file called -# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE -# tag is left empty. - -LAYOUT_FILE = @top_srcdir@/DoxygenLayout.xml - -# The CITE_BIB_FILES tag can be used to specify one or more bib files containing -# the reference definitions. This must be a list of .bib files. The .bib -# extension is automatically appended if omitted. This requires the bibtex tool -# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. -# For LaTeX the style of the bibliography can be controlled using -# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the -# search path. Do not use file names with spaces, bibtex cannot handle them. See -# also \cite for info how to create references. - -CITE_BIB_FILES = - -#--------------------------------------------------------------------------- -# Configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated to -# standard output by doxygen. If QUIET is set to YES this implies that the -# messages are off. -# The default value is: NO. - -QUIET = YES - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES -# this implies that the warnings are on. -# -# Tip: Turn warnings on while writing the documentation. -# The default value is: YES. - -WARNINGS = YES - -# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate -# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag -# will automatically be disabled. -# The default value is: YES. - -WARN_IF_UNDOCUMENTED = YES - -# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some parameters -# in a documented function, or documenting parameters that don't exist or using -# markup commands wrongly. -# The default value is: YES. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that -# are documented, but have no documentation for their parameters or return -# value. If set to NO doxygen will only warn about wrong or incomplete parameter -# documentation, but not about the absence of documentation. -# The default value is: NO. - -WARN_NO_PARAMDOC = YES - -# The WARN_FORMAT tag determines the format of the warning messages that doxygen -# can produce. The string should contain the $file, $line, and $text tags, which -# will be replaced by the file and line number from which the warning originated -# and the warning text. Optionally the format may contain $version, which will -# be replaced by the version of the file (if it could be obtained via -# FILE_VERSION_FILTER) -# The default value is: $file:$line: $text. - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning and error -# messages should be written. If left blank the output is written to standard -# error (stderr). - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# Configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag is used to specify the files and/or directories that contain -# documented source files. You may enter file names like myfile.cpp or -# directories like /usr/src/myproject. Separate the files or directories with -# spaces. -# Note: If this tag is empty the current directory is searched. - -INPUT = @DOXYGEN_INPUT@ - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses -# libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: http://www.gnu.org/software/libiconv) for the list of -# possible encodings. -# The default value is: UTF-8. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank the -# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, -# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, -# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, -# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, -# *.qsf, *.as and *.js. - -FILE_PATTERNS = *.h - -# The RECURSIVE tag can be used to specify whether or not subdirectories should -# be searched for input files as well. -# The default value is: NO. - -RECURSIVE = YES - -# The EXCLUDE tag can be used to specify files and/or directories that should be -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. -# -# Note that relative paths are relative to the directory from which doxygen is -# run. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -# directories that are symbolic links (a Unix file system feature) are excluded -# from the input. -# The default value is: NO. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories for example use the pattern */test/* - -EXCLUDE_PATTERNS = *private* - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories use the pattern */test/* - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or directories -# that contain example code fragments that are included (see the \include -# command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank all -# files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude commands -# irrespective of the value of the RECURSIVE tag. -# The default value is: NO. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or directories -# that contain images that are to be included in the documentation (see the -# \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command: -# -# -# -# where is the value of the INPUT_FILTER tag, and is the -# name of an input file. Doxygen will then use the output that the filter -# program writes to standard output. If FILTER_PATTERNS is specified, this tag -# will be ignored. -# -# Note that the filter must not add or remove lines; it is applied before the -# code is scanned, but not when the output code is generated. If lines are added -# or removed, the anchors will not be placed correctly. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: pattern=filter -# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how -# filters are used. If the FILTER_PATTERNS tag is empty or if none of the -# patterns match the file name, INPUT_FILTER is applied. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER ) will also be used to filter the input files that are used for -# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). -# The default value is: NO. - -FILTER_SOURCE_FILES = NO - -# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and -# it is also possible to disable source filtering for a specific pattern using -# *.ext= (so without naming a filter). -# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. - -FILTER_SOURCE_PATTERNS = - -# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that -# is part of the input, its contents will be placed on the main page -# (index.html). This can be useful if you have a project on for instance GitHub -# and want to reuse the introduction page also for the doxygen output. - -USE_MDFILE_AS_MAINPAGE = - -#--------------------------------------------------------------------------- -# Configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will be -# generated. Documented entities will be cross-referenced with these sources. -# -# Note: To get rid of all source code in the generated output, make sure that -# also VERBATIM_HEADERS is set to NO. -# The default value is: NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body of functions, -# classes and enums directly into the documentation. -# The default value is: NO. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any -# special comment blocks from generated source code fragments. Normal C, C++ and -# Fortran comments will always remain visible. -# The default value is: YES. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES then for each documented -# function all documented functions referencing it will be listed. -# The default value is: NO. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES then for each documented function -# all documented entities called/used by that function will be listed. -# The default value is: NO. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set -# to YES, then the hyperlinks from functions in REFERENCES_RELATION and -# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will -# link to the documentation. -# The default value is: YES. - -REFERENCES_LINK_SOURCE = YES - -# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the -# source code will show a tooltip with additional information such as prototype, -# brief description and links to the definition and documentation. Since this -# will make the HTML file larger and loading of large files a bit slower, you -# can opt to disable this feature. -# The default value is: YES. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -SOURCE_TOOLTIPS = NO - -# If the USE_HTAGS tag is set to YES then the references to source code will -# point to the HTML generated by the htags(1) tool instead of doxygen built-in -# source browser. The htags tool is part of GNU's global source tagging system -# (see http://www.gnu.org/software/global/global.html). You will need version -# 4.8.6 or higher. -# -# To use it do the following: -# - Install the latest version of global -# - Enable SOURCE_BROWSER and USE_HTAGS in the config file -# - Make sure the INPUT points to the root of the source tree -# - Run doxygen as normal -# -# Doxygen will invoke htags (and that will in turn invoke gtags), so these -# tools must be available from the command line (i.e. in the search path). -# -# The result: instead of the source browser generated by doxygen, the links to -# source code will now point to the output of htags. -# The default value is: NO. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a -# verbatim copy of the header file for each class for which an include is -# specified. Set to NO to disable this. -# See also: Section \class. -# The default value is: YES. - -VERBATIM_HEADERS = NO - -#--------------------------------------------------------------------------- -# Configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all -# compounds will be generated. Enable this if the project contains a lot of -# classes, structs, unions or interfaces. -# The default value is: YES. - -ALPHABETICAL_INDEX = NO - -# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in -# which the alphabetical index list will be split. -# Minimum value: 1, maximum value: 20, default value: 5. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all classes will -# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -# can be used to specify a prefix (or a list of prefixes) that should be ignored -# while generating the index headers. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output -# The default value is: YES. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a -# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of -# it. -# The default directory is: html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each -# generated HTML page (for example: .htm, .php, .asp). -# The default value is: .html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a user-defined HTML header file for -# each generated HTML page. If the tag is left blank doxygen will generate a -# standard header. -# -# To get valid HTML the header file that includes any scripts and style sheets -# that doxygen needs, which is dependent on the configuration options used (e.g. -# the setting GENERATE_TREEVIEW). It is highly recommended to start with a -# default header using -# doxygen -w html new_header.html new_footer.html new_stylesheet.css -# YourConfigFile -# and then modify the file new_header.html. See also section "Doxygen usage" -# for information on how to generate the default header that doxygen normally -# uses. -# Note: The header is subject to change so you typically have to regenerate the -# default header when upgrading to a newer version of doxygen. For a description -# of the possible markers and block names see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each -# generated HTML page. If the tag is left blank doxygen will generate a standard -# footer. See HTML_HEADER for more information on how to generate a default -# footer and what special commands can be used inside the footer. See also -# section "Doxygen usage" for information on how to generate the default footer -# that doxygen normally uses. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style -# sheet that is used by each HTML page. It can be used to fine-tune the look of -# the HTML output. If left blank doxygen will generate a default style sheet. -# See also section "Doxygen usage" for information on how to generate the style -# sheet that doxygen normally uses. -# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as -# it is more robust and this tag (HTML_STYLESHEET) will in the future become -# obsolete. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_STYLESHEET = - -# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- -# defined cascading style sheet that is included after the standard style sheets -# created by doxygen. Using this option one can overrule certain style aspects. -# This is preferred over using HTML_STYLESHEET since it does not replace the -# standard style sheet and is therefor more robust against future updates. -# Doxygen will copy the style sheet file to the output directory. For an example -# see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_STYLESHEET = - -# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -# other source files which should be copied to the HTML output directory. Note -# that these files will be copied to the base HTML output directory. Use the -# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -# files. In the HTML_STYLESHEET file, use the file name only. Also note that the -# files will be copied as-is; there are no commands or markers available. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_FILES = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen -# will adjust the colors in the stylesheet and background images according to -# this color. Hue is specified as an angle on a colorwheel, see -# http://en.wikipedia.org/wiki/Hue for more information. For instance the value -# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 -# purple, and 360 is red again. -# Minimum value: 0, maximum value: 359, default value: 220. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -# in the HTML output. For a value of 0 the output will use grayscales only. A -# value of 255 will produce the most vivid colors. -# Minimum value: 0, maximum value: 255, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the -# luminance component of the colors in the HTML output. Values below 100 -# gradually make the output lighter, whereas values above 100 make the output -# darker. The value divided by 100 is the actual gamma applied, so 80 represents -# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not -# change the gamma. -# Minimum value: 40, maximum value: 240, default value: 80. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting this -# to NO can help when comparing the output of multiple runs. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_TIMESTAMP = NO - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_SECTIONS = NO - -# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries -# shown in the various tree structured indices initially; the user can expand -# and collapse entries dynamically later on. Doxygen will expand the tree to -# such a level that at most the specified number of entries are visible (unless -# a fully collapsed tree already exceeds this amount). So setting the number of -# entries 1 will produce a full collapsed tree by default. 0 is a special value -# representing an infinite number of entries and will result in a full expanded -# tree by default. -# Minimum value: 0, maximum value: 9999, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_INDEX_NUM_ENTRIES = 100 - -# If the GENERATE_DOCSET tag is set to YES, additional index files will be -# generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: http://developer.apple.com/tools/xcode/), introduced with -# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a -# Makefile in the HTML output directory. Running make will produce the docset in -# that directory and running make install will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_DOCSET = NO - -# This tag determines the name of the docset feed. A documentation feed provides -# an umbrella under which multiple documentation sets from a single provider -# (such as a company or product suite) can be grouped. -# The default value is: Doxygen generated docs. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# This tag specifies a string that should uniquely identify the documentation -# set bundle. This should be a reverse domain-name style string, e.g. -# com.mycompany.MyDocSet. Doxygen will append .docset to the name. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify -# the documentation publisher. This should be a reverse domain-name style -# string, e.g. com.mycompany.MyDocSet.documentation. -# The default value is: org.doxygen.Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. -# The default value is: Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three -# additional HTML index files: index.hhp, index.hhc, and index.hhk. The -# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on -# Windows. -# -# The HTML Help Workshop contains a compiler that can convert all HTML output -# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML -# files are now used as the Windows 98 help format, and will replace the old -# Windows help format (.hlp) on all Windows platforms in the future. Compressed -# HTML files also contain an index, a table of contents, and you can search for -# words in the documentation. The HTML workshop also contains a viewer for -# compressed HTML files. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_HTMLHELP = NO - -# The CHM_FILE tag can be used to specify the file name of the resulting .chm -# file. You can add a path in front of the file if the result should not be -# written to the html output directory. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_FILE = - -# The HHC_LOCATION tag can be used to specify the location (absolute path -# including file name) of the HTML help compiler ( hhc.exe). If non-empty -# doxygen will try to run the HTML help compiler on the generated index.hhp. -# The file has to be specified with full path. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -HHC_LOCATION = - -# The GENERATE_CHI flag controls if a separate .chi index file is generated ( -# YES) or that it should be included in the master .chm file ( NO). -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -GENERATE_CHI = NO - -# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) -# and project file content. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_INDEX_ENCODING = - -# The BINARY_TOC flag controls whether a binary table of contents is generated ( -# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it -# enables the Previous and Next buttons. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members to -# the table of contents of the HTML help documentation and to the tree view. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that -# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help -# (.qch) of the generated HTML documentation. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify -# the file name of the resulting .qch file. The path specified is relative to -# the HTML output folder. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help -# Project output. For more information please see Qt Help Project / Namespace -# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_NAMESPACE = org.doxygen.Project - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt -# Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- -# folders). -# The default value is: doc. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_VIRTUAL_FOLDER = doc - -# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom -# filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -# filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -# filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's filter section matches. Qt Help Project / Filter Attributes (see: -# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_SECT_FILTER_ATTRS = - -# The QHG_LOCATION tag can be used to specify the location of Qt's -# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the -# generated .qhp file. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be -# generated, together with the HTML files, they form an Eclipse help plugin. To -# install this plugin and make it available under the help contents menu in -# Eclipse, the contents of the directory containing the HTML and XML files needs -# to be copied into the plugins directory of eclipse. The name of the directory -# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. -# After copying Eclipse needs to be restarted before the help appears. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the Eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have this -# name. Each documentation set should have its own identifier. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# If you want full control over the layout of the generated HTML pages it might -# be necessary to disable the index and replace it with your own. The -# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top -# of each HTML page. A value of NO enables the index and the value YES disables -# it. Since the tabs in the index contain the same information as the navigation -# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -DISABLE_INDEX = YES - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. If the tag -# value is set to YES, a side panel will be generated containing a tree-like -# index structure (just like the one that is generated for HTML Help). For this -# to work a browser that supports JavaScript, DHTML, CSS and frames is required -# (i.e. any modern browser). Windows users are probably better off using the -# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can -# further fine-tune the look of the index. As an example, the default style -# sheet generated by doxygen has an example that shows how to put an image at -# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -# the same information as the tab index, you could consider setting -# DISABLE_INDEX to YES when enabling this option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_TREEVIEW = YES - -# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that -# doxygen will group on one line in the generated HTML documentation. -# -# Note that a value of 0 will completely suppress the enum values from appearing -# in the overview section. -# Minimum value: 0, maximum value: 20, default value: 4. -# This tag requires that the tag GENERATE_HTML is set to YES. - -ENUM_VALUES_PER_LINE = 0 - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used -# to set the initial width (in pixels) of the frame in which the tree is shown. -# Minimum value: 0, maximum value: 1500, default value: 250. -# This tag requires that the tag GENERATE_HTML is set to YES. - -TREEVIEW_WIDTH = 250 - -# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to -# external symbols imported via tag files in a separate window. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -EXT_LINKS_IN_WINDOW = NO - -# Use this tag to change the font size of LaTeX formulas included as images in -# the HTML documentation. When you change the font size after a successful -# doxygen run you need to manually remove any form_*.png images from the HTML -# output directory to force them to be regenerated. -# Minimum value: 8, maximum value: 50, default value: 10. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are not -# supported properly for IE 6.0, but are supported on all modern browsers. -# -# Note that when changing this option you need to delete any form_*.png files in -# the HTML output directory before the changes have effect. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_TRANSPARENT = YES - -# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see -# http://www.mathjax.org) which uses client side Javascript for the rendering -# instead of using prerendered bitmaps. Use this if you do not have LaTeX -# installed or if you want to formulas look prettier in the HTML output. When -# enabled you may also need to install MathJax separately and configure the path -# to it using the MATHJAX_RELPATH option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -USE_MATHJAX = NO - -# When MathJax is enabled you can set the default output format to be used for -# the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/latest/output.html) for more details. -# Possible values are: HTML-CSS (which is slower, but has the best -# compatibility), NativeMML (i.e. MathML) and SVG. -# The default value is: HTML-CSS. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_FORMAT = HTML-CSS - -# When MathJax is enabled you need to specify the location relative to the HTML -# output directory using the MATHJAX_RELPATH option. The destination directory -# should contain the MathJax.js script. For instance, if the mathjax directory -# is located at the same level as the HTML output directory, then -# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax -# Content Delivery Network so you can quickly see the result without installing -# MathJax. However, it is strongly recommended to install a local copy of -# MathJax from http://www.mathjax.org before deployment. -# The default value is: http://cdn.mathjax.org/mathjax/latest. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest - -# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax -# extension names that should be enabled during MathJax rendering. For example -# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_EXTENSIONS = - -# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces -# of code that will be used on startup of the MathJax code. See the MathJax site -# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an -# example see the documentation. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_CODEFILE = - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box for -# the HTML output. The underlying search engine uses javascript and DHTML and -# should work on any modern browser. Note that when using HTML help -# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) -# there is already a search function so this one should typically be disabled. -# For large projects the javascript based search engine can be slow, then -# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to -# search using the keyboard; to jump to the search box use + S -# (what the is depends on the OS and browser, but it is typically -# , /