├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── enhancement.md ├── stale.yml └── workflows │ ├── bug-report-response.yml │ ├── code-coverage-baseline.yml │ ├── codeql.yml │ ├── issue-comment.yml │ ├── issue-support-label.yml │ ├── make-agent.yml │ ├── make-for-platform-on-arch.yml │ ├── make-integration-tests.yml │ ├── release-build.yml │ ├── repolinter.yml │ ├── run-integration-tests.yml │ ├── security-scan.yml │ ├── test-agent.yml │ └── trigger-test-suite.yml ├── .gitignore ├── .trivyignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── STYLEGUIDE.md ├── THIRD_PARTY_NOTICES.md ├── VERSION ├── agent ├── .gitignore ├── Makefile.frag ├── README.txt ├── apache-suppressions ├── config.m4 ├── export.syms ├── fw_cakephp.c ├── fw_codeigniter.c ├── fw_codeigniter.h ├── fw_drupal.c ├── fw_drupal8.c ├── fw_drupal_common.c ├── fw_drupal_common.h ├── fw_hooks.h ├── fw_joomla.c ├── fw_laminas3.c ├── fw_laravel.c ├── fw_laravel.h ├── fw_laravel_queue.c ├── fw_laravel_queue.h ├── fw_lumen.c ├── fw_magento1.c ├── fw_magento2.c ├── fw_magento_common.c ├── fw_magento_common.h ├── fw_mediawiki.c ├── fw_slim.c ├── fw_support.c ├── fw_support.h ├── fw_symfony4.c ├── fw_symfony_common.c ├── fw_symfony_common.h ├── fw_wordpress.c ├── fw_wordpress.h ├── fw_yii.c ├── fw_zend3.c ├── install-util.c ├── lib_aws_sdk_php.c ├── lib_aws_sdk_php.h ├── lib_composer.c ├── lib_doctrine2.c ├── lib_doctrine2.h ├── lib_guzzle4.c ├── lib_guzzle4.h ├── lib_guzzle6.c ├── lib_guzzle6.h ├── lib_guzzle_common.c ├── lib_guzzle_common.h ├── lib_mongodb.c ├── lib_mongodb_private.h ├── lib_monolog.c ├── lib_monolog_private.h ├── lib_php_amqplib.c ├── lib_php_amqplib.h ├── lib_phpunit.c ├── lib_predis.c ├── lib_predis_private.h ├── lib_zend_http.c ├── lib_zend_http.h ├── newrelic-install.sh ├── newrelic_php-suppressions ├── other_php-suppressions ├── php_agent.c ├── php_agent.h ├── php_api.c ├── php_api.h ├── php_api_datastore.c ├── php_api_datastore.h ├── php_api_datastore_private.h ├── php_api_distributed_trace.c ├── php_api_distributed_trace.h ├── php_api_internal.c ├── php_api_internal.h ├── php_autorum.c ├── php_autorum.h ├── php_call.c ├── php_call.h ├── php_compat.h ├── php_curl.c ├── php_curl.h ├── php_curl_md.c ├── php_curl_md.h ├── php_datastore.c ├── php_datastore.h ├── php_environment.c ├── php_environment.h ├── php_error.c ├── php_error.h ├── php_execute.c ├── php_execute.h ├── php_explain.c ├── php_explain.h ├── php_explain_mysqli.c ├── php_explain_mysqli.h ├── php_explain_pdo_mysql.c ├── php_explain_pdo_mysql.h ├── php_extension.c ├── php_extension.h ├── php_file_get_contents.c ├── php_file_get_contents.h ├── php_globals.c ├── php_globals.h ├── php_hash.c ├── php_hash.h ├── php_header.c ├── php_header.h ├── php_hooks.h ├── php_httprequest_send.c ├── php_httprequest_send.h ├── php_includes.h ├── php_internal_instrument.c ├── php_internal_instrument.h ├── php_memcached.c ├── php_memcached.h ├── php_minit.c ├── php_mshutdown.c ├── php_mysql.c ├── php_mysql.h ├── php_mysql_private.h ├── php_mysqli.c ├── php_mysqli.h ├── php_mysqli_private.h ├── php_newrelic.c ├── php_newrelic.h ├── php_nrini.c ├── php_observer.c ├── php_observer.h ├── php_output.c ├── php_output.h ├── php_pdo.c ├── php_pdo.h ├── php_pdo_mysql.c ├── php_pdo_mysql.h ├── php_pdo_pgsql.c ├── php_pdo_pgsql.h ├── php_pdo_private.h ├── php_pgsql.c ├── php_pgsql.h ├── php_pgsql_private.h ├── php_psr7.c ├── php_psr7.h ├── php_redis.c ├── php_redis.h ├── php_redis_private.h ├── php_rinit.c ├── php_rshutdown.c ├── php_samplers.c ├── php_samplers.h ├── php_stack.c ├── php_stacked_segment.c ├── php_stacked_segment.h ├── php_txn.c ├── php_txn_private.h ├── php_user_instrument.c ├── php_user_instrument.h ├── php_user_instrument_hashmap.c ├── php_user_instrument_hashmap.h ├── php_user_instrument_hashmap_key.h ├── php_user_instrument_wraprec_hashmap.c ├── php_user_instrument_wraprec_hashmap.h ├── php_vm.c ├── php_vm.h ├── php_wrapper.c ├── php_wrapper.h ├── php_zval.h ├── scripts │ ├── init.alpine │ ├── init.common │ ├── init.darwin │ ├── init.debian │ ├── init.freebsd │ ├── init.generic │ ├── init.rhel │ ├── init.solaris │ ├── newrelic-daemon.logrotate │ ├── newrelic-daemon.service │ ├── newrelic-php5.logrotate │ ├── newrelic.cfg.template │ ├── newrelic.ini.private.template │ ├── newrelic.ini.template │ ├── newrelic.sysconfig │ └── newrelic.xml └── tests │ ├── .gitignore │ ├── test_agent.c │ ├── test_api_datastore.c │ ├── test_api_distributed_trace.c │ ├── test_api_internal.c │ ├── test_api_metadata_dt_disabled.c │ ├── test_api_metadata_dt_enabled.c │ ├── test_call.c │ ├── test_curl.c │ ├── test_curl_md.c │ ├── test_datastore.c │ ├── test_environment.c │ ├── test_fw_codeigniter.c │ ├── test_fw_drupal.c │ ├── test_fw_laravel_queue.c │ ├── test_fw_support.c │ ├── test_fw_wordpress.c │ ├── test_globals.c │ ├── test_hash.c │ ├── test_internal_instrument.c │ ├── test_lib_aws_sdk_php.c │ ├── test_lib_php_amqplib.c │ ├── test_memcached.c │ ├── test_mongodb.c │ ├── test_monolog.c │ ├── test_mysql.c │ ├── test_mysqli.c │ ├── test_output.c │ ├── test_pdo.c │ ├── test_pdo_mysql.c │ ├── test_pdo_pgsql.c │ ├── test_pgsql.c │ ├── test_php_error.c │ ├── test_php_execute.c │ ├── test_php_minit.c │ ├── test_php_stack.c │ ├── test_php_stacked_segment.c │ ├── test_php_txn.c │ ├── test_php_wrapper.c │ ├── test_predis.c │ ├── test_redis.c │ ├── test_txn.c │ ├── test_txn_private.c │ ├── test_user_instrument.c │ ├── test_user_instrument_hashmap.c │ ├── test_user_instrument_wraprec_hashmap.c │ ├── test_zval.c │ ├── tlib_bool.c │ ├── tlib_datastore.c │ ├── tlib_datastore.h │ ├── tlib_exec.c │ ├── tlib_files.c │ ├── tlib_main.c │ ├── tlib_main.h │ ├── tlib_php.c │ ├── tlib_php.h │ ├── tlib_php_includes.h │ └── valgrind-suppressions ├── axiom ├── .gitignore ├── Makefile ├── cmd_appinfo_transmit.c ├── cmd_span_batch_transmit.c ├── cmd_txndata_transmit.c ├── nr_agent.c ├── nr_agent.h ├── nr_analytics_events.c ├── nr_analytics_events.h ├── nr_analytics_events_private.h ├── nr_app.c ├── nr_app.h ├── nr_app_harvest.c ├── nr_app_harvest.h ├── nr_app_harvest_private.h ├── nr_app_private.h ├── nr_attributes.c ├── nr_attributes.h ├── nr_attributes_private.h ├── nr_axiom.h ├── nr_banner.c ├── nr_banner.h ├── nr_commands.h ├── nr_commands_private.h ├── nr_configstrings.c ├── nr_configstrings.h ├── nr_custom_events.c ├── nr_custom_events.h ├── nr_daemon_spawn.c ├── nr_daemon_spawn.h ├── nr_daemon_spawn_private.h ├── nr_datastore.c ├── nr_datastore.h ├── nr_datastore_instance.c ├── nr_datastore_instance.h ├── nr_datastore_private.h ├── nr_distributed_trace.c ├── nr_distributed_trace.h ├── nr_distributed_trace_private.h ├── nr_errors.c ├── nr_errors.h ├── nr_errors_private.h ├── nr_exclusive_time.c ├── nr_exclusive_time.h ├── nr_exclusive_time_private.h ├── nr_explain.c ├── nr_explain.h ├── nr_explain_private.h ├── nr_file_naming.c ├── nr_file_naming.h ├── nr_file_naming_private.h ├── nr_guid.c ├── nr_guid.h ├── nr_header.c ├── nr_header.h ├── nr_header_private.h ├── nr_limits.h ├── nr_log_event.c ├── nr_log_event.h ├── nr_log_event_private.h ├── nr_log_events.c ├── nr_log_events.h ├── nr_log_level.c ├── nr_log_level.h ├── nr_mysqli_metadata.c ├── nr_mysqli_metadata.h ├── nr_mysqli_metadata_private.h ├── nr_php_packages.c ├── nr_php_packages.h ├── nr_postgres.c ├── nr_postgres.h ├── nr_postgres_private.h ├── nr_rules.c ├── nr_rules.h ├── nr_rules_private.h ├── nr_rum.c ├── nr_rum.h ├── nr_rum_private.h ├── nr_segment.c ├── nr_segment.h ├── nr_segment_children.c ├── nr_segment_children.h ├── nr_segment_children_private.h ├── nr_segment_datastore.c ├── nr_segment_datastore.h ├── nr_segment_datastore_private.h ├── nr_segment_external.c ├── nr_segment_external.h ├── nr_segment_message.c ├── nr_segment_message.h ├── nr_segment_private.c ├── nr_segment_private.h ├── nr_segment_terms.c ├── nr_segment_terms.h ├── nr_segment_terms_private.h ├── nr_segment_traces.c ├── nr_segment_traces.h ├── nr_segment_tree.c ├── nr_segment_tree.h ├── nr_slowsqls.c ├── nr_slowsqls.h ├── nr_span_encoding.c ├── nr_span_encoding.h ├── nr_span_encoding_private.h ├── nr_span_event.c ├── nr_span_event.h ├── nr_span_event_private.h ├── nr_span_queue.c ├── nr_span_queue.h ├── nr_span_queue_private.h ├── nr_synthetics.c ├── nr_synthetics.h ├── nr_synthetics_private.h ├── nr_txn.c ├── nr_txn.h ├── nr_txn_private.h ├── nr_utilization.h ├── nr_version.c ├── nr_version.h ├── tests │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── cross_agent_tests │ │ ├── README.md │ │ ├── attribute_configuration.json │ │ ├── cat │ │ │ ├── README.md │ │ │ ├── cat_map.json │ │ │ └── path_hashing.json │ │ ├── collector_hostname.json │ │ ├── data_collection_server_configuration.json │ │ ├── datastores │ │ │ ├── README.md │ │ │ ├── datastore_api.json │ │ │ └── datastore_instances.json │ │ ├── distributed_tracing │ │ │ ├── README.md │ │ │ ├── distributed_tracing.json │ │ │ └── trace_context.json │ │ ├── docker_container_id │ │ │ ├── README.md │ │ │ ├── cases.json │ │ │ ├── docker-0.9.1.txt │ │ │ ├── docker-1.0.0.txt │ │ │ ├── docker-1.1.2-lxc-driver.txt │ │ │ ├── docker-1.1.2-native-driver-fs.txt │ │ │ ├── docker-1.1.2-native-driver-systemd.txt │ │ │ ├── docker-1.3.txt │ │ │ ├── docker-custom-prefix.txt │ │ │ ├── docker-gcp.txt │ │ │ ├── docker-too-long.txt │ │ │ ├── empty.txt │ │ │ ├── heroku.txt │ │ │ ├── invalid-characters.txt │ │ │ ├── invalid-length.txt │ │ │ ├── no_cpu_subsystem.txt │ │ │ ├── ubuntu-14.04-lxc-container.txt │ │ │ ├── ubuntu-14.04-no-container.txt │ │ │ └── ubuntu-14.10-no-container.txt │ │ ├── docker_container_id_v2 │ │ │ ├── README.md │ │ │ ├── cases.json │ │ │ ├── docker-20.10.16.txt │ │ │ ├── docker-24.0.2.txt │ │ │ ├── docker-too-long.txt │ │ │ ├── empty.txt │ │ │ ├── invalid-characters.txt │ │ │ └── invalid-length.txt │ │ ├── labels.json │ │ ├── lambda │ │ │ ├── README.md │ │ │ └── event_source_info.json │ │ ├── language_agents_security_policies.json │ │ ├── postgres_explain_obfuscation │ │ │ ├── README.md │ │ │ ├── basic_where.colon_obfuscated.txt │ │ │ ├── basic_where.explain.txt │ │ │ ├── basic_where.obfuscated.txt │ │ │ ├── basic_where.query.txt │ │ │ ├── current_date.colon_obfuscated.txt │ │ │ ├── current_date.explain.txt │ │ │ ├── current_date.obfuscated.txt │ │ │ ├── current_date.query.txt │ │ │ ├── date.colon_obfuscated.txt │ │ │ ├── date.explain.txt │ │ │ ├── date.obfuscated.txt │ │ │ ├── date.query.txt │ │ │ ├── embedded_newline.colon_obfuscated.txt │ │ │ ├── embedded_newline.explain.txt │ │ │ ├── embedded_newline.obfuscated.txt │ │ │ ├── embedded_newline.query.txt │ │ │ ├── embedded_quote.colon_obfuscated.txt │ │ │ ├── embedded_quote.explain.txt │ │ │ ├── embedded_quote.obfuscated.txt │ │ │ ├── embedded_quote.query.txt │ │ │ ├── floating_point.colon_obfuscated.txt │ │ │ ├── floating_point.explain.txt │ │ │ ├── floating_point.obfuscated.txt │ │ │ ├── floating_point.query.txt │ │ │ ├── function_with_strings.colon_obfuscated.txt │ │ │ ├── function_with_strings.explain.txt │ │ │ ├── function_with_strings.obfuscated.txt │ │ │ ├── function_with_strings.query.txt │ │ │ ├── quote_in_table_name.colon_obfuscated.txt │ │ │ ├── quote_in_table_name.explain.txt │ │ │ ├── quote_in_table_name.obfuscated.txt │ │ │ ├── quote_in_table_name.query.txt │ │ │ ├── subplan.colon_obfuscated.txt │ │ │ ├── subplan.explain.txt │ │ │ ├── subplan.obfuscated.txt │ │ │ ├── subplan.query.txt │ │ │ ├── where_with_integer.colon_obfuscated.txt │ │ │ ├── where_with_integer.explain.txt │ │ │ ├── where_with_integer.obfuscated.txt │ │ │ ├── where_with_integer.query.txt │ │ │ ├── where_with_regex_chars.colon_obfuscated.txt │ │ │ ├── where_with_regex_chars.explain.txt │ │ │ ├── where_with_regex_chars.obfuscated.txt │ │ │ ├── where_with_regex_chars.query.txt │ │ │ ├── where_with_substring.colon_obfuscated.txt │ │ │ ├── where_with_substring.explain.txt │ │ │ ├── where_with_substring.obfuscated.txt │ │ │ ├── where_with_substring.query.txt │ │ │ ├── with_escape_case1.colon_obfuscated.txt │ │ │ ├── with_escape_case1.explain.txt │ │ │ ├── with_escape_case1.obfuscated.txt │ │ │ ├── with_escape_case1.query.txt │ │ │ ├── with_escape_case2.colon_obfuscated.txt │ │ │ ├── with_escape_case2.explain.txt │ │ │ ├── with_escape_case2.obfuscated.txt │ │ │ ├── with_escape_case2.query.txt │ │ │ ├── with_escape_case3.colon_obfuscated.txt │ │ │ ├── with_escape_case3.explain.txt │ │ │ ├── with_escape_case3.obfuscated.txt │ │ │ ├── with_escape_case3.query.txt │ │ │ ├── with_escape_case4.colon_obfuscated.txt │ │ │ ├── with_escape_case4.explain.txt │ │ │ ├── with_escape_case4.obfuscated.txt │ │ │ ├── with_escape_case4.query.txt │ │ │ ├── with_escape_case5.colon_obfuscated.txt │ │ │ ├── with_escape_case5.explain.txt │ │ │ ├── with_escape_case5.obfuscated.txt │ │ │ ├── with_escape_case5.query.txt │ │ │ ├── with_escape_case6.colon_obfuscated.txt │ │ │ ├── with_escape_case6.explain.txt │ │ │ ├── with_escape_case6.obfuscated.txt │ │ │ ├── with_escape_case6.query.txt │ │ │ ├── with_escape_case7.colon_obfuscated.txt │ │ │ ├── with_escape_case7.explain.txt │ │ │ ├── with_escape_case7.obfuscated.txt │ │ │ ├── with_escape_case7.query.txt │ │ │ ├── with_escape_case8.colon_obfuscated.txt │ │ │ ├── with_escape_case8.explain.txt │ │ │ ├── with_escape_case8.obfuscated.txt │ │ │ ├── with_escape_case8.query.txt │ │ │ ├── with_escape_case9.colon_obfuscated.txt │ │ │ ├── with_escape_case9.explain.txt │ │ │ ├── with_escape_case9.obfuscated.txt │ │ │ └── with_escape_case9.query.txt │ │ ├── proc_cpuinfo │ │ │ ├── 1pack_1core_1logical.txt │ │ │ ├── 1pack_1core_2logical.txt │ │ │ ├── 1pack_2core_2logical.txt │ │ │ ├── 1pack_4core_4logical.txt │ │ │ ├── 2pack_12core_24logical.txt │ │ │ ├── 2pack_20core_40logical.txt │ │ │ ├── 2pack_2core_2logical.txt │ │ │ ├── 2pack_2core_4logical.txt │ │ │ ├── 2pack_4core_4logical.txt │ │ │ ├── 4pack_4core_4logical.txt │ │ │ ├── 8pack_8core_8logical.txt │ │ │ ├── README.md │ │ │ ├── Xpack_Xcore_2logical.txt │ │ │ └── malformed_file.txt │ │ ├── proc_meminfo │ │ │ ├── README.md │ │ │ └── meminfo_4096MB.txt │ │ ├── rules.json │ │ ├── rum_client_config.json │ │ ├── rum_footer_insertion_location │ │ │ ├── close-body-in-comment.html │ │ │ └── dynamic-iframe.html │ │ ├── rum_loader_insertion_location │ │ │ ├── basic.html │ │ │ ├── body_with_attributes.html │ │ │ ├── charset_tag.html │ │ │ ├── charset_tag_after_x_ua_tag.html │ │ │ ├── charset_tag_before_x_ua_tag.html │ │ │ ├── charset_tag_with_spaces.html │ │ │ ├── comments1.html │ │ │ ├── comments2.html │ │ │ ├── content_type_charset_tag.html │ │ │ ├── content_type_charset_tag_after_x_ua_tag.html │ │ │ ├── content_type_charset_tag_before_x_ua_tag.html │ │ │ ├── gt_in_quotes1.html │ │ │ ├── gt_in_quotes2.html │ │ │ ├── gt_in_quotes_mismatch.html │ │ │ ├── gt_in_single_quotes1.html │ │ │ ├── gt_in_single_quotes_mismatch.html │ │ │ ├── head_with_attributes.html │ │ │ ├── incomplete_non_meta_tags.html │ │ │ ├── no_end_header.html │ │ │ ├── no_header.html │ │ │ ├── no_html_and_no_header.html │ │ │ ├── no_start_header.html │ │ │ ├── script1.html │ │ │ ├── script2.html │ │ │ ├── x_ua_meta_tag.html │ │ │ ├── x_ua_meta_tag_multiline.html │ │ │ ├── x_ua_meta_tag_multiple_tags.html │ │ │ ├── x_ua_meta_tag_spaces_around_equals.html │ │ │ ├── x_ua_meta_tag_with_others.html │ │ │ └── x_ua_meta_tag_with_spaces.html │ │ ├── sql_obfuscation │ │ │ ├── README.md │ │ │ └── sql_obfuscation.json │ │ ├── sql_parsing.json │ │ ├── synthetics │ │ │ ├── README.md │ │ │ └── synthetics.json │ │ ├── transaction_segment_terms.json │ │ ├── url_clean.json │ │ ├── url_domain_extraction.json │ │ ├── utilization │ │ │ ├── README.md │ │ │ ├── boot_id.json │ │ │ └── utilization_json.json │ │ └── utilization_vendor_specific │ │ │ ├── README.md │ │ │ ├── aws.json │ │ │ ├── azure.json │ │ │ ├── gcp.json │ │ │ └── pcf.json │ ├── mock_agent.c │ ├── reference │ │ ├── osrelease_emptyid_ubuntu_24.04 │ │ ├── osrelease_emptyquotes_ubuntu_24.04 │ │ ├── osrelease_leadingwhitespace_ubuntu_24.04 │ │ ├── osrelease_leftquote_ubuntu_24.04 │ │ ├── osrelease_missingid_24.04 │ │ ├── osrelease_missingid_missingversionid │ │ ├── osrelease_quoteonly_ubuntu_24.04 │ │ ├── osrelease_rightquote_ubuntu_24.04 │ │ ├── osrelease_twoids_ubuntu_24.04 │ │ ├── osrelease_twoversionid_ubuntu_24.04 │ │ ├── osrelease_ubuntu_missingversionid │ │ ├── osrelease_valid_alpine_3.23.0 │ │ ├── osrelease_valid_amzn_2022 │ │ ├── osrelease_valid_centos_9 │ │ ├── osrelease_valid_debian_11 │ │ ├── osrelease_valid_debian_12 │ │ ├── osrelease_valid_ubuntu_24.04 │ │ ├── test_daemon.cmp │ │ ├── test_logging_1.cmp │ │ ├── test_logging_1_no_backtrace.cmp │ │ ├── test_logging_2.cmp │ │ ├── test_logging_3.cmp │ │ └── test_vlog.cmp │ ├── test_agent.c │ ├── test_analytics_events.c │ ├── test_apdex.c │ ├── test_app.c │ ├── test_app_harvest.c │ ├── test_app_helpers.h │ ├── test_attributes.c │ ├── test_base64.c │ ├── test_buffer.c │ ├── test_cmd_appinfo.c │ ├── test_cmd_span_batch.c │ ├── test_cmd_txndata.c │ ├── test_configstrings.c │ ├── test_custom_events.c │ ├── test_daemon_spawn.c │ ├── test_datastore.c │ ├── test_datastore_instance.c │ ├── test_distributed_trace.c │ ├── test_errors.c │ ├── test_exclusive_time.c │ ├── test_explain.c │ ├── test_file_naming.c │ ├── test_flatbuffers.c │ ├── test_guid.c │ ├── test_hash.c │ ├── test_hashmap.c │ ├── test_header.c │ ├── test_json.c │ ├── test_labels.c │ ├── test_log_event.c │ ├── test_log_events.c │ ├── test_log_level.c │ ├── test_logging.c │ ├── test_matcher.c │ ├── test_math.c │ ├── test_memory.c │ ├── test_metrics.c │ ├── test_minmax_heap.c │ ├── test_mysqli_metadata.c │ ├── test_network.c │ ├── test_number_converter.c │ ├── test_obfuscate.c │ ├── test_object.c │ ├── test_php_packages.c │ ├── test_postgres.c │ ├── test_random.c │ ├── test_regex.c │ ├── test_reply.c │ ├── test_rules.c │ ├── test_rum.c │ ├── test_sampling.c │ ├── test_segment.c │ ├── test_segment_children.c │ ├── test_segment_datastore.c │ ├── test_segment_external.c │ ├── test_segment_helpers.h │ ├── test_segment_message.c │ ├── test_segment_private.c │ ├── test_segment_terms.c │ ├── test_segment_traces.c │ ├── test_segment_tree.c │ ├── test_serialize.c │ ├── test_set.c │ ├── test_signals.c │ ├── test_slab.c │ ├── test_slowsqls.c │ ├── test_sort.c │ ├── test_span_encoding.c │ ├── test_span_event.c │ ├── test_span_queue.c │ ├── test_sql.c │ ├── test_stack.c │ ├── test_string_pool.c │ ├── test_strings.c │ ├── test_synthetics.c │ ├── test_system.c │ ├── test_text.c │ ├── test_threads.c │ ├── test_time.c │ ├── test_txn.c │ ├── test_url.c │ ├── test_vector.c │ ├── tlib_bool.c │ ├── tlib_exec.c │ ├── tlib_files.c │ ├── tlib_main.c │ ├── tlib_main.h │ └── valgrind-suppressions ├── util_apdex.c ├── util_apdex.h ├── util_base64.c ├── util_base64.h ├── util_buffer.c ├── util_buffer.h ├── util_cpu.c ├── util_cpu.h ├── util_errno.c ├── util_errno.h ├── util_flatbuffers.c ├── util_flatbuffers.h ├── util_hash.c ├── util_hash.h ├── util_hash_private.h ├── util_hashmap.c ├── util_hashmap.h ├── util_hashmap_private.h ├── util_json.c ├── util_json.h ├── util_labels.c ├── util_labels.h ├── util_logging.c ├── util_logging.h ├── util_logging_private.h ├── util_matcher.c ├── util_matcher.h ├── util_matcher_private.h ├── util_math.h ├── util_md5.c ├── util_md5.h ├── util_memory.c ├── util_memory.h ├── util_metrics.c ├── util_metrics.h ├── util_metrics_private.h ├── util_minmax_heap.c ├── util_minmax_heap.h ├── util_minmax_heap_private.h ├── util_network.c ├── util_network.h ├── util_number_converter.c ├── util_number_converter.h ├── util_obfuscate.c ├── util_obfuscate.h ├── util_object.c ├── util_object.h ├── util_object_private.h ├── util_random.c ├── util_random.h ├── util_regex.c ├── util_regex.h ├── util_regex_private.h ├── util_reply.c ├── util_reply.h ├── util_sampling.h ├── util_serialize.c ├── util_serialize.h ├── util_set.c ├── util_set.h ├── util_set_private.h ├── util_signals.c ├── util_signals.h ├── util_slab.c ├── util_slab.h ├── util_slab_private.h ├── util_sleep.c ├── util_sleep.h ├── util_sort.c ├── util_sort.h ├── util_sql.c ├── util_sql.h ├── util_sql_private.h ├── util_stack.c ├── util_stack.h ├── util_string_pool.c ├── util_string_pool.h ├── util_strings.c ├── util_strings.h ├── util_strings_bsd.c ├── util_syscalls.c ├── util_syscalls.h ├── util_system.c ├── util_system.h ├── util_text.c ├── util_text.h ├── util_threads.c ├── util_threads.h ├── util_time.h ├── util_url.c ├── util_url.h ├── util_vector.c ├── util_vector.h ├── util_vector_private.h ├── v1.proto └── vendor │ └── bsd │ └── sys │ ├── cdefs.h │ └── tree.h ├── cla.md ├── daemon ├── .gitignore ├── Makefile ├── cmd │ ├── client │ │ └── main.go │ ├── daemon │ │ ├── flags_test.go │ │ ├── main.go │ │ ├── progenitor.go │ │ ├── rlimit_unix.go │ │ ├── signal │ │ │ ├── signal.go │ │ │ └── signal_test.go │ │ ├── watcher.go │ │ └── worker.go │ ├── integration_runner │ │ ├── flags.go │ │ ├── main.go │ │ ├── reports.go │ │ ├── strings.go │ │ └── strings_test.go │ └── stressor │ │ ├── main.go │ │ └── stats.go ├── go.mod ├── go.sum ├── internal │ ├── flatbuffersdata │ │ ├── data.go │ │ ├── data_test.go │ │ └── samples.go │ └── newrelic │ │ ├── analytics_events.go │ │ ├── analytics_events_test.go │ │ ├── app.go │ │ ├── app_harvest.go │ │ ├── app_harvest_test.go │ │ ├── app_test.go │ │ ├── client.go │ │ ├── collector │ │ ├── certs.go │ │ ├── certs_system.go │ │ ├── certs_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── collector.go │ │ ├── collector_test.go │ │ ├── compile_certs.go │ │ ├── compress.go │ │ ├── compress_test.go │ │ ├── event_data.go │ │ ├── event_data_test.go │ │ └── license_key_test.go │ │ ├── collector_integration_test.go │ │ ├── commands.go │ │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ ├── timeout.go │ │ ├── unmarshal.go │ │ └── unmarshal_test.go │ │ ├── crossagent │ │ └── crossagent.go │ │ ├── custom_events.go │ │ ├── error_events.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── harvest.go │ │ ├── harvest_test.go │ │ ├── harvest_trigger.go │ │ ├── harvest_trigger_test.go │ │ ├── harvest_trigger_test_1.9.go │ │ ├── infinite_tracing │ │ ├── com_newrelic_trace_v1 │ │ │ └── v1.pb.go │ │ ├── grpc_sender.go │ │ ├── grpc_sender_test.go │ │ ├── proto_testdata │ │ │ └── proto_data.go │ │ ├── trace_observer.go │ │ └── trace_observer_test.go │ │ ├── integration │ │ ├── context.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── parse.go │ │ ├── php_packages.go │ │ ├── string_slice.go │ │ ├── test.go │ │ ├── test_c.go │ │ ├── test_test.go │ │ ├── transaction.go │ │ ├── util.go │ │ ├── valgrind.go │ │ └── valgrind │ │ │ ├── valgrind.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── json_string.go │ │ ├── jsonx │ │ ├── encode.go │ │ └── encode_test.go │ │ ├── lasp.go │ │ ├── lasp_test.go │ │ ├── limits │ │ └── limits.go │ │ ├── listener.go │ │ ├── listener_test.go │ │ ├── log │ │ ├── log.go │ │ └── log_test.go │ │ ├── log_events.go │ │ ├── log_events_test.go │ │ ├── metric_rules.go │ │ ├── metric_rules_test.go │ │ ├── metrics.go │ │ ├── metrics_test.go │ │ ├── php_packages.go │ │ ├── php_packages_test.go │ │ ├── pidfile.go │ │ ├── processor.go │ │ ├── processor_test.go │ │ ├── protocol │ │ ├── App.go │ │ ├── AppReply.go │ │ ├── AppStatus.go │ │ ├── Error.go │ │ ├── Event.go │ │ ├── Message.go │ │ ├── MessageBody.go │ │ ├── Metric.go │ │ ├── MetricData.go │ │ ├── SlowSQL.go │ │ ├── SpanBatch.go │ │ ├── Trace.go │ │ ├── Transaction.go │ │ └── encode.go │ │ ├── ratelimit │ │ └── ratelimit.go │ │ ├── sample_config │ │ └── config1.cfg │ │ ├── sampling.go │ │ ├── sampling_test.go │ │ ├── secrets │ │ └── secrets.go │ │ ├── slow_sqls.go │ │ ├── slow_sqls_test.go │ │ ├── span_events.go │ │ ├── sysinfo │ │ ├── bootid_generic.go │ │ ├── bootid_generic_test.go │ │ ├── bootid_linux.go │ │ ├── bootid_linux_test.go │ │ ├── docker_generic.go │ │ ├── docker_generic_test.go │ │ ├── docker_linux.go │ │ ├── docker_linux_test.go │ │ ├── errors.go │ │ ├── memtotal_darwin.go │ │ ├── memtotal_darwin_test.go │ │ ├── memtotal_freebsd.go │ │ ├── memtotal_freebsd_test.go │ │ ├── memtotal_linux.go │ │ ├── memtotal_linux_test.go │ │ ├── memtotal_solaris.go │ │ ├── memtotal_solaris_test.go │ │ ├── sys_generic.go │ │ └── sys_linux.go │ │ ├── txn_events.go │ │ ├── txn_events_test.go │ │ ├── txn_traces.go │ │ ├── txn_traces_test.go │ │ ├── utilization │ │ ├── addresses.go │ │ ├── aws.go │ │ ├── aws_test.go │ │ ├── azure.go │ │ ├── azure_test.go │ │ ├── fqdn.go │ │ ├── gcp.go │ │ ├── gcp_test.go │ │ ├── kubernetes.go │ │ ├── pcf.go │ │ ├── pcf_test.go │ │ ├── provider.go │ │ ├── provider_test.go │ │ ├── utilization_hash.go │ │ └── utilization_hash_test.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ └── version │ │ └── version.go └── test-data │ ├── agentPoliciesAddPoliciesToPayload.json │ ├── agentPoliciesVerifySecurityPolicies.json │ └── getSupportedPoliciesHash.json ├── docker-compose.yaml ├── docs ├── codecov.md ├── dev_environment.md ├── development.md └── img │ ├── PHP_Agent_Architecture.png │ ├── Phpinfo_Example_Summary.png │ ├── Phpinfo_Example_Transaction.png │ └── codecov-pr-comment.png ├── files ├── Dockerfile └── set_path.sh ├── make ├── backtrace_test.c ├── check_valgrind_output.awk ├── config.mk ├── detect-linux-libc.env ├── php_versions.mk ├── pthread_test.c ├── reallocarray_test.c ├── release.mk ├── vendor.mk └── version.mk ├── protocol ├── flatbuffers │ └── protocol.fbs └── infinite_tracing │ └── v1.proto ├── suppressions ├── README.md ├── agent.supp ├── axiom.supp ├── darwin-extra.supp ├── darwin15.supp └── php53.supp ├── tests ├── event_limits │ └── custom │ │ ├── test_custom_events_max_samples_stored_0_limit.php │ │ ├── test_custom_events_max_samples_stored_100000_limit.php │ │ ├── test_custom_events_max_samples_stored_240_limit.php │ │ ├── test_custom_events_max_samples_stored_30000_limit.php │ │ ├── test_custom_events_max_samples_stored_7000_limit.php │ │ ├── test_custom_events_max_samples_stored_invalid_toolarge_limit.php │ │ ├── test_custom_events_max_samples_stored_invalid_toosmall_limit.php │ │ └── test_custom_events_max_samples_stored_not_specified.php ├── include │ ├── .gitignore │ ├── config.php │ ├── drupal.php │ ├── guzzle.tar.bz2 │ ├── helpers.php │ ├── integration.php │ ├── newrelic-integration │ │ ├── README.md │ │ ├── composer.json │ │ ├── package.json │ │ ├── phpunit.xml.dist │ │ ├── sami.php │ │ ├── src │ │ │ ├── DatastoreInstance.php │ │ │ ├── Metric.php │ │ │ ├── SlowSQL.php │ │ │ ├── Trace.php │ │ │ ├── Trace │ │ │ │ ├── FilterIterator.php │ │ │ │ ├── FilterIterator.php81.php │ │ │ │ ├── Segment.php │ │ │ │ ├── Segment.php81.php │ │ │ │ └── StringTable.php │ │ │ └── Transaction.php │ │ └── tests │ │ │ ├── DatastoreInstanceTest.php │ │ │ ├── MetricTest.php │ │ │ ├── SlowSQLTest.php │ │ │ ├── TraceTest.php │ │ │ └── trace │ │ │ ├── SegmentTest.php │ │ │ └── StringTableTest.php │ ├── polyfill.php │ ├── tap.php │ ├── tracing_endpoint.php │ └── unpack_guzzle.php ├── integration │ ├── api │ │ ├── add_custom_parameter │ │ │ ├── test_add_custom_parameter_nested_caught_exception.php │ │ │ ├── test_add_custom_parameter_nested_happy.php │ │ │ ├── test_add_custom_parameter_nested_uncaught_exception.php │ │ │ ├── test_bad_input.php │ │ │ ├── test_key_conversions.php │ │ │ ├── test_span_event.php │ │ │ └── test_value_conversions.php │ │ ├── add_custom_span_parameter │ │ │ ├── test_span_event_parameter_disabled.php │ │ │ ├── test_span_event_parameter_duplicate.php │ │ │ ├── test_span_event_parameter_duplicate_te_off.php │ │ │ ├── test_span_event_parameter_filter.php │ │ │ ├── test_span_event_parameter_filter_logging_off.php │ │ │ ├── test_span_event_parameter_invalid.php │ │ │ ├── test_span_event_parameter_max_key.php │ │ │ ├── test_span_event_parameter_max_key_te_off.php │ │ │ ├── test_span_event_parameter_max_parameters.php │ │ │ ├── test_span_event_parameter_max_value.php │ │ │ ├── test_span_event_parameter_max_value_te_off.php │ │ │ ├── test_span_event_parameter_maxplus_parameters.php │ │ │ ├── test_span_event_parameter_maxplus_parameters_te_off.php │ │ │ ├── test_span_event_parameter_maxplus_parameters_te_off_logging_off.php │ │ │ ├── test_span_event_parameter_maxplus_span_and_te.php │ │ │ ├── test_span_event_parameter_maxplus_span_and_te_te_off.php │ │ │ ├── test_span_event_parameter_nested_caught_exception.php │ │ │ ├── test_span_event_parameter_nested_happy.php │ │ │ ├── test_span_event_parameter_nested_uncaught_exception.php │ │ │ ├── test_span_event_parameter_overwrite.php │ │ │ ├── test_span_event_parameter_te_off.php │ │ │ └── test_span_event_parameter_types.php │ │ ├── add_custom_tracer │ │ │ ├── test_happy.php │ │ │ ├── test_invalid_input.php │ │ │ ├── test_not_user_function.php │ │ │ └── test_short_segments.php │ │ ├── custom_metric │ │ │ ├── test_bad_input.php │ │ │ ├── test_bad_input.php8.php │ │ │ ├── test_happy.php │ │ │ └── test_happy_logging_off.php │ │ ├── datastore │ │ │ ├── test_all_parameters_no_children.php │ │ │ ├── test_all_parameters_nosql.php │ │ │ ├── test_all_parameters_sql_no_query.php │ │ │ ├── test_all_parameters_sql_obfuscated.php │ │ │ ├── test_all_parameters_sql_obfuscated_logging_off.php │ │ │ ├── test_all_parameters_sql_raw.php │ │ │ ├── test_basic.php │ │ │ ├── test_invalid_parameters.php │ │ │ └── test_recording_disabled.php │ │ ├── distributed_trace │ │ │ └── newrelic │ │ │ │ ├── test_accept_after_create.php │ │ │ │ ├── test_accept_distributed_trace.php │ │ │ │ ├── test_accept_distributed_trace_noarg.php │ │ │ │ ├── test_accept_distributed_trace_noarg.php8.php │ │ │ │ ├── test_accept_intrinsics.php │ │ │ │ ├── test_accept_no_txn.php │ │ │ │ ├── test_accept_version_0.php │ │ │ │ ├── test_accept_version_1.php │ │ │ │ ├── test_accept_version_2.php │ │ │ │ ├── test_create_intrinsics.php │ │ │ │ ├── test_create_payload_nested_caught_exception.php │ │ │ │ ├── test_create_payload_nested_happy.php │ │ │ │ ├── test_create_payload_nested_uncaught_exception.php │ │ │ │ ├── test_create_payload_span_events_disabled.php │ │ │ │ ├── test_create_transaction_off_span_on_cat_off.php │ │ │ │ ├── test_create_transaction_off_span_on_cat_on.php │ │ │ │ ├── test_disabled_accept.php │ │ │ │ ├── test_disabled_create.php │ │ │ │ ├── test_enabled.php │ │ │ │ ├── test_keep_span_with_payload.php │ │ │ │ └── test_recording_disabled.php │ │ ├── enable_params │ │ │ ├── test_disable_1.php │ │ │ ├── test_disable_2.php │ │ │ ├── test_enable_1.php │ │ │ ├── test_enable_2.php │ │ │ ├── test_enable_3.php │ │ │ ├── test_enable_4.php │ │ │ ├── test_enable_5.php │ │ │ └── test_enable_6.php │ │ ├── error_group_callback │ │ │ ├── test_error_group_callback_bad_callback.php │ │ │ ├── test_error_group_callback_bad_callback.php7.php │ │ │ ├── test_error_group_callback_bad_params.php │ │ │ ├── test_error_group_callback_bad_return_null.php │ │ │ ├── test_error_group_callback_bad_return_num.php │ │ │ ├── test_error_group_callback_clobber.php │ │ │ ├── test_error_group_callback_empty_callback.php │ │ │ ├── test_error_group_callback_error_non_web.php │ │ │ ├── test_error_group_callback_error_web.php │ │ │ ├── test_error_group_callback_error_web.php84.php │ │ │ ├── test_error_group_callback_exception_non_web.php │ │ │ ├── test_error_group_callback_exception_web.php │ │ │ └── test_error_group_callback_max_string_len.php │ │ ├── ignore_transaction │ │ │ └── test_ignore.php │ │ ├── internal │ │ │ ├── test_get_metric_table.php │ │ │ ├── test_get_request_metadata_cat.php │ │ │ └── test_get_request_metadata_dt.php │ │ ├── metadata │ │ │ ├── test_linking_metadata_dt.php │ │ │ ├── test_linking_metadata_dt_logging_off.php │ │ │ ├── test_linking_metadata_invalid.php │ │ │ ├── test_linking_metadata_invalid.php8.php │ │ │ ├── test_linking_metadata_no_dt.php │ │ │ ├── test_trace_metadata_dt.php │ │ │ ├── test_trace_metadata_invalid.php │ │ │ ├── test_trace_metadata_invalid.php8.php │ │ │ └── test_trace_metadata_no_dt.php │ │ ├── notice_error │ │ │ ├── test_bad_inputs.php │ │ │ ├── test_errors_not_filtered.php │ │ │ ├── test_exceptions_not_filtered.php │ │ │ ├── test_good_1_arg_exception.php │ │ │ ├── test_good_1_arg_exception_handler.php │ │ │ ├── test_good_1_arg_string.php │ │ │ ├── test_good_2_args.php │ │ │ ├── test_good_4_args.php │ │ │ ├── test_good_4_args_error_handler.php │ │ │ ├── test_good_5_args.php │ │ │ ├── test_good_5_args_error_handler.php │ │ │ ├── test_last_error_wins.php │ │ │ ├── test_not_recording.php │ │ │ ├── test_notice_error_nested_caught_exception.php │ │ │ ├── test_notice_error_nested_happy.php │ │ │ ├── test_notice_error_nested_uncaught_exception.php │ │ │ ├── test_prioritize_api.php │ │ │ ├── test_priority.php │ │ │ └── test_uncaught_is_ultimate.php │ │ ├── other │ │ │ ├── test_end_transaction_nested.php │ │ │ ├── test_ignore_apdex.php │ │ │ ├── test_is_sampled_cancelled_txn.php │ │ │ ├── test_is_sampled_dt_disabled.php │ │ │ ├── test_is_sampled_dt_enabled.php │ │ │ ├── test_is_sampled_extra_param.php │ │ │ ├── test_is_sampled_extra_param.php8.php │ │ │ ├── test_set_user_attributes_happy.php │ │ │ ├── test_set_user_attributes_nested_caught_exception.php │ │ │ ├── test_set_user_attributes_nested_happy.php │ │ │ ├── test_set_user_attributes_nested_uncaught_exception.php │ │ │ └── test_start_and_end_transaction.php │ │ ├── record_custom_event │ │ │ ├── test_NAN.php │ │ │ ├── test_attributes_exclude.php │ │ │ ├── test_bad_event_type.php │ │ │ ├── test_bad_keys.php │ │ │ ├── test_custom_insights_events_disabled.php │ │ │ ├── test_custom_insights_events_enabled.php │ │ │ ├── test_empty_array.php │ │ │ ├── test_empty_strings_in_array.php │ │ │ ├── test_end_of_transaction.php │ │ │ ├── test_happy_path.php │ │ │ ├── test_huge_parameter_list.php │ │ │ ├── test_long_key.php │ │ │ ├── test_long_type.php │ │ │ ├── test_long_value.php │ │ │ ├── test_multiple_events.php │ │ │ ├── test_one_parameter.php │ │ │ ├── test_value_datatypes.php │ │ │ └── test_value_nested_array.php │ │ ├── rum │ │ │ ├── test_bad_input_1.php │ │ │ ├── test_bad_input_2.php │ │ │ ├── test_disable_autorum.php │ │ │ ├── test_footer_1.php │ │ │ ├── test_footer_2.php │ │ │ ├── test_footer_3.php │ │ │ ├── test_footer_4.php │ │ │ ├── test_footer_5.php │ │ │ ├── test_header_1.php │ │ │ ├── test_header_2.php │ │ │ ├── test_header_3.php │ │ │ ├── test_header_4.php │ │ │ ├── test_too_many_args_1.php │ │ │ └── test_too_many_args_2.php │ │ ├── set_appname │ │ │ ├── test_already_ended.php │ │ │ ├── test_appname_license.php │ │ │ ├── test_appname_switch_license.php │ │ │ ├── test_appname_switch_license_lasp.php │ │ │ ├── test_bad_params.php │ │ │ ├── test_bad_params.php8.php │ │ │ ├── test_no_license.php │ │ │ ├── test_transmit_false.php │ │ │ ├── test_transmit_int.php │ │ │ └── test_transmit_true.php │ │ └── set_user_id │ │ │ ├── test_set_user_id.php │ │ │ ├── test_set_user_id_empty_string.php │ │ │ ├── test_set_user_id_error.php │ │ │ ├── test_set_user_id_exceeds_maxlen.php │ │ │ ├── test_set_user_id_exception.php │ │ │ ├── test_set_user_id_noarg.php │ │ │ ├── test_set_user_id_non_string.php │ │ │ └── test_set_user_id_null.php │ ├── attributes │ │ ├── test_disabled.php │ │ ├── test_disabled_all.php │ │ ├── test_disabled_browser.php │ │ ├── test_disabled_old.php │ │ ├── test_empty_request.php │ │ ├── test_enabled.php │ │ ├── test_enabled_browser.php │ │ ├── test_enabled_browser_old.php │ │ ├── test_filtering_1.php │ │ ├── test_filtering_10.php │ │ ├── test_filtering_11.php │ │ ├── test_filtering_12.php │ │ ├── test_filtering_2.php │ │ ├── test_filtering_3.php │ │ ├── test_filtering_4.php │ │ ├── test_filtering_5.php │ │ ├── test_filtering_6.php │ │ ├── test_filtering_7.php │ │ ├── test_filtering_8.php │ │ ├── test_filtering_9.php │ │ ├── test_precedence.php │ │ ├── test_precedence_browser.php │ │ ├── test_response_headers.php │ │ ├── test_response_ini.php │ │ ├── test_response_ini_set.php │ │ ├── test_response_whitespace.php │ │ ├── test_transaction_background.php │ │ ├── test_transaction_closure_clm.php │ │ ├── test_transaction_closure_clm.php84.php │ │ ├── test_transaction_closure_clm_off.php │ │ ├── test_transaction_closure_clm_off.php84.php │ │ ├── test_transaction_function_len_clm.php │ │ ├── test_transaction_namespace2_clm.php │ │ ├── test_transaction_namespace2_clm_off.php │ │ ├── test_transaction_namespace_clm.php │ │ ├── test_transaction_namespace_clm_off.php │ │ ├── test_transaction_namespace_len_clm.php │ │ ├── test_transaction_namespace_len_clm_off.php │ │ ├── test_transaction_nested_user_functions_clm.php │ │ ├── test_transaction_nested_user_functions_clm_off.php │ │ ├── test_transaction_non_web.php │ │ ├── test_transaction_non_web_clm.php │ │ ├── test_transaction_non_web_clm_off.php │ │ ├── test_transaction_web.php │ │ ├── test_transaction_web_clm.php │ │ └── test_transaction_web_clm_off.php │ ├── autoloader │ │ ├── autoload-with-broken-composer-00 │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── autoload_real.php │ │ │ │ └── installed.php │ │ ├── autoload-with-broken-composer-01 │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── autoload_real.php │ │ │ │ └── installed.php │ │ ├── autoload-with-broken-composer-02 │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ └── autoload_real.php │ │ ├── autoload-with-composer-throwing-error │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── autoload_real.php │ │ │ │ └── installed.php │ │ ├── autoload-with-composer-throwing-exception │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── autoload_real.php │ │ │ │ └── installed.php │ │ ├── autoload-with-composer │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ └── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── autoload_real.php │ │ │ │ └── installed.php │ │ ├── autoload-without-composer │ │ │ └── vendor │ │ │ │ └── autoload.php │ │ ├── composer-show.php │ │ ├── packages-with-broken-composer-00 │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ ├── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── autoload_real.php │ │ │ │ └── installed.php │ │ │ │ └── symfony │ │ │ │ └── http-kernel │ │ │ │ └── HttpKernel.php │ │ ├── packages-with-broken-composer-01 │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ ├── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── autoload_real.php │ │ │ │ └── installed.php │ │ │ │ └── laravel │ │ │ │ └── framework │ │ │ │ └── src │ │ │ │ └── Illuminate │ │ │ │ └── Foundation │ │ │ │ └── Application.php │ │ ├── packages-with-broken-composer-02 │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ ├── composer │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── autoload_real.php │ │ │ │ └── installed.php │ │ │ │ └── laravel │ │ │ │ └── framework │ │ │ │ └── src │ │ │ │ └── Illuminate │ │ │ │ └── Foundation │ │ │ │ └── Application.php │ │ ├── test_autoloader_with_broken_composer_00.php │ │ ├── test_autoloader_with_broken_composer_01.php │ │ ├── test_autoloader_with_broken_composer_02.php │ │ ├── test_autoloader_with_composer_disabled.php │ │ ├── test_autoloader_with_composer_enabled.php │ │ ├── test_autoloader_with_composer_enabled_package_detection_disabled.php │ │ ├── test_autoloader_with_composer_throwing_error.php │ │ ├── test_autoloader_with_composer_throwing_exception.php │ │ ├── test_autoloader_without_composer_disabled.php │ │ ├── test_autoloader_without_composer_enabled.php │ │ ├── test_packages_with_broken_composer_00.php │ │ ├── test_packages_with_broken_composer_01.php │ │ └── test_packages_with_broken_composer_02.php │ ├── basic │ │ ├── test_call_user_func_array_0.php │ │ ├── test_dl.php │ │ ├── test_internal_function.php │ │ ├── test_output_buffer.php │ │ └── test_output_buffer_logging_off.php │ ├── distributed_tracing │ │ ├── newrelic │ │ │ ├── test_default_trace_id.php │ │ │ ├── test_error_intrinsic.php │ │ │ ├── test_error_intrinsic_error.php │ │ │ ├── test_error_intrinsic_exception.php │ │ │ ├── test_full_trace_id.php │ │ │ ├── test_inbound_payload_rejects_if_no_tx_or_id.php │ │ │ ├── test_intrinsics_disabled_errors.php │ │ │ ├── test_intrinsics_disabled_txns.php │ │ │ ├── test_intrinsics_enabled_errors.php │ │ │ ├── test_intrinsics_enabled_txns.php │ │ │ ├── test_intrinsics_notset_errors.php │ │ │ ├── test_intrinsics_notset_txns.php │ │ │ ├── test_supportability_acceptpayload_exception.php │ │ │ ├── test_supportability_acceptpayload_ignored_createBeforeAccept.php │ │ │ ├── test_supportability_acceptpayload_ignored_majorVersion.php │ │ │ ├── test_supportability_acceptpayload_ignored_multiple.php │ │ │ ├── test_supportability_acceptpayload_ignored_multiple_logging_off.php │ │ │ ├── test_supportability_acceptpayload_ignored_null.php │ │ │ ├── test_supportability_acceptpayload_ignored_untrustedAccount.php │ │ │ ├── test_supportability_acceptpayload_ignored_untrustedAccount_httpsafe.php │ │ │ ├── test_supportability_acceptpayload_ignored_untrustedAccount_logging_off.php │ │ │ ├── test_supportability_acceptpayload_parseexception.php │ │ │ └── test_supportability_acceptpayload_success.php │ │ └── w3c │ │ │ ├── test_force_keep_headers_not_sampled.php │ │ │ ├── test_force_keep_headers_not_sampled_non_newrelic.php │ │ │ ├── test_force_keep_headers_sampled.php │ │ │ ├── test_force_keep_headers_sampled_non_newrelic.php │ │ │ ├── test_force_toss_headers_not_sampled.php │ │ │ ├── test_force_toss_headers_not_sampled_non_newrelic.php │ │ │ ├── test_force_toss_headers_sampled.php │ │ │ ├── test_force_toss_headers_sampled_non_newrelic.php │ │ │ ├── test_insert_dt_headers_empty_array.php │ │ │ ├── test_insert_dt_headers_happy.php │ │ │ ├── test_insert_dt_headers_happy_logging_off.php │ │ │ ├── test_insert_dt_headers_locale.php │ │ │ ├── test_insert_dt_headers_nonref.php │ │ │ ├── test_insert_dt_headers_wrong_arg_type.php │ │ │ ├── test_insert_dt_headers_wrong_arg_type.php8.php │ │ │ ├── test_invalid_inbound.php │ │ │ ├── test_valid_inbound_headers.php │ │ │ ├── test_valid_inbound_headers_logging_off.php │ │ │ ├── test_valid_inbound_headers_parsed_key.php │ │ │ ├── test_valid_inbound_no_sampled.php │ │ │ ├── test_valid_inbound_non_newrelic.php │ │ │ └── test_valid_no_nr_state.php │ ├── errors │ │ ├── test_EH_THROW_errors_caught_exception.php │ │ ├── test_EH_THROW_errors_uncaught_exception.php │ │ ├── test_E_COMPILE_ERROR.zend.php │ │ ├── test_E_COMPILE_WARNING.php │ │ ├── test_E_COMPILE_WARNING.php8.php │ │ ├── test_E_DEPRECATED_2.php7.php │ │ ├── test_E_DEPRECATED_2.php8.php │ │ ├── test_E_DEPRECATED_2.php81.php │ │ ├── test_E_DEPRECATED_2.php84.php │ │ ├── test_E_DEPRECATED_payload1.php │ │ ├── test_E_DEPRECATED_payload2.php │ │ ├── test_E_DEPRECATED_payload3.php │ │ ├── test_E_ERROR.php7.0.1.php │ │ ├── test_E_ERROR.php7.4.php │ │ ├── test_E_NOTICE.php │ │ ├── test_E_NOTICE.php8.php │ │ ├── test_E_PARSE.zend.php │ │ ├── test_E_PARSE.zend.php8.php │ │ ├── test_E_RECOVERABLE.php7.4.php │ │ ├── test_E_RECOVERABLE.php7.php │ │ ├── test_E_STRICT.php7.php │ │ ├── test_E_USER_DEPRECATED.php │ │ ├── test_E_USER_ERROR.php │ │ ├── test_E_USER_NOTICE.php │ │ ├── test_E_USER_WARNING.php │ │ ├── test_E_WARNING.php7.php │ │ ├── test_E_WARNING.php8.php │ │ ├── test_error_handler_false.php │ │ ├── test_error_handler_implicit.php │ │ ├── test_error_handler_true.php │ │ ├── test_error_handler_with_fatal_error.php │ │ ├── test_error_handler_with_nonhandled_error_type.php │ │ ├── test_error_handler_with_strings.php │ │ ├── test_error_handler_with_strings.php7.php │ │ ├── test_error_linking_dt_off_cat_off.php │ │ ├── test_error_linking_dt_off_cat_on.php │ │ ├── test_error_linking_dt_on_cat_off.php │ │ ├── test_error_reporting_obeyed.php │ │ ├── test_exception.php │ │ ├── test_exception_no_exception_handler.php │ │ ├── test_exception_restored_no_exception_handler.php │ │ ├── test_ignore_E_WARNING.php │ │ ├── test_ignore_E_WARNING.php8.php │ │ ├── test_ignore_all_except_E_WARNING.php7.php │ │ ├── test_ignore_all_except_E_WARNING.php8.php │ │ ├── test_ignore_exception.php │ │ ├── test_ignore_exception_subclass.php │ │ ├── test_ignore_throwable.php │ │ ├── test_ignored_top_level_exception_closure.php │ │ ├── test_ignored_top_level_exception_function.php │ │ ├── test_ignored_top_level_exception_instance_method.php │ │ ├── test_ignored_top_level_exception_restore.php │ │ ├── test_ignored_top_level_exception_static_method.php │ │ ├── test_large_error_message.php │ │ ├── test_restore_top_level_exception_internal_function.php │ │ ├── test_top_level_exception_closure.php │ │ ├── test_top_level_exception_function.php │ │ ├── test_top_level_exception_instance_method.php │ │ ├── test_top_level_exception_internal_function.php │ │ ├── test_top_level_exception_restore.php │ │ ├── test_top_level_exception_static_method.php │ │ ├── test_top_level_exception_tracer.php │ │ ├── test_top_level_exception_tracer_logging_off.php │ │ ├── test_uncaught_handled_exception_01.php │ │ ├── test_uncaught_handled_exception_02.php │ │ ├── test_uncaught_handled_exception_02.php84.php │ │ ├── test_uncaught_handled_exception_03.php │ │ ├── test_uncaught_handled_exception_04.php │ │ ├── test_uncaught_handled_exception_04.php83a.php │ │ └── test_uncaught_handled_exception_04.php83b.php │ ├── events │ │ ├── test_database_duration.php │ │ └── test_empty.php │ ├── external │ │ ├── curl_exec │ │ │ ├── test_cat_and_synthetics_disabled.php │ │ │ ├── test_cat_disabled.php │ │ │ ├── test_cat_disabled_by_default.php │ │ │ ├── test_cat_request_headers_empty_array.php │ │ │ ├── test_cat_request_headers_present.php │ │ │ ├── test_cat_request_headers_present_array.php │ │ │ ├── test_cat_request_headers_referenced_array.php │ │ │ ├── test_cat_response_header_anonymous.php │ │ │ ├── test_cat_response_header_function.php │ │ │ ├── test_cat_response_header_returned.php │ │ │ ├── test_cat_response_header_to_file.php │ │ │ ├── test_cat_response_header_to_stdout.php │ │ │ ├── test_cat_simple.php │ │ │ ├── test_dt_correct_span_is_external.php │ │ │ ├── test_dt_enabled_cat_enabled.php │ │ │ ├── test_dt_newrelic_header_disabled.php │ │ │ ├── test_dt_request_header.php │ │ │ ├── test_dt_request_header_w3c_only.php │ │ │ ├── test_dt_request_headers_empty_array.php │ │ │ ├── test_dt_request_headers_present.php │ │ │ ├── test_dt_request_headers_present_array.php │ │ │ ├── test_dt_request_headers_present_array_logging_off.php │ │ │ ├── test_dt_request_headers_referenced_array.php │ │ │ ├── test_dt_simple.php │ │ │ ├── test_dt_span_customrequest.php │ │ │ ├── test_dt_unique_headers.php │ │ │ ├── test_file_proto.php │ │ │ ├── test_http.php │ │ │ ├── test_malformed_url.php │ │ │ ├── test_missing_handle.php │ │ │ ├── test_request_headers_referenced_array.php │ │ │ ├── test_span_sets_method.php │ │ │ ├── test_synthetics.php │ │ │ ├── test_synthetics_disabled.php │ │ │ ├── test_synthetics_with_cat_disabled.php │ │ │ ├── test_synthetics_with_dt.php │ │ │ ├── test_synthetics_with_dt_logging_off.php │ │ │ └── test_type_mismatch.php │ │ ├── curl_multi_exec │ │ │ ├── test_cat_simple.php │ │ │ ├── test_curl_multi_exec_params.php │ │ │ ├── test_custom_header.php │ │ │ ├── test_dt_custom_header.php │ │ │ ├── test_dt_custom_header_logging_off.php │ │ │ ├── test_dt_newrelic_header_disabled.php │ │ │ ├── test_dt_simple.php │ │ │ ├── test_exec_add_handles.php │ │ │ ├── test_exec_remove_handles.php │ │ │ ├── test_exec_remove_handles_logging_off.php │ │ │ ├── test_http.php │ │ │ ├── test_malformed_url.php │ │ │ ├── test_missing_arg.php │ │ │ ├── test_simple.php │ │ │ ├── test_span_sets_method.php │ │ │ ├── test_txn_restart.php │ │ │ ├── test_txn_restart_ignore.php │ │ │ ├── test_txn_stop.php │ │ │ └── test_type_mismatch.php │ │ ├── drupal6 │ │ │ ├── skipif.inc │ │ │ ├── test_basic.php │ │ │ ├── test_cat_and_synthetics_disabled.php │ │ │ ├── test_cat_disabled.php │ │ │ ├── test_cross_process_empty_headers.php │ │ │ ├── test_cross_process_existing_header.php │ │ │ ├── test_cross_process_no_headers.php │ │ │ ├── test_dt_empty_headers.php │ │ │ ├── test_dt_existing_headers.php │ │ │ ├── test_dt_newrelic_header_disabled.php │ │ │ ├── test_dt_no_headers.php │ │ │ ├── test_multiple_calls.php │ │ │ ├── test_span_externals.php │ │ │ ├── test_span_externals_clm_off.php │ │ │ ├── test_spans_post.php │ │ │ ├── test_spans_post_clm_off.php │ │ │ ├── test_synthetics.php │ │ │ ├── test_synthetics_disabled.php │ │ │ ├── test_synthetics_with_cat_disabled.php │ │ │ └── test_synthetics_with_dt.php │ │ ├── drupal7 │ │ │ ├── skipif.inc │ │ │ ├── test_bad_params_integer_headers.php │ │ │ ├── test_bad_params_integer_headers.php8.php │ │ │ ├── test_bad_params_integer_options.php │ │ │ ├── test_bad_params_null_headers.php │ │ │ ├── test_bad_params_null_headers.php8.php │ │ │ ├── test_bad_params_null_options.php │ │ │ ├── test_bad_url.php │ │ │ ├── test_basic.php │ │ │ ├── test_cat_and_synthetics_disabled.php │ │ │ ├── test_cat_disabled.php │ │ │ ├── test_cross_process_empty_headers.php │ │ │ ├── test_cross_process_empty_options.php │ │ │ ├── test_cross_process_existing_header.php │ │ │ ├── test_cross_process_no_options.php │ │ │ ├── test_dt_empty_headers.php │ │ │ ├── test_dt_existing_headers.php │ │ │ ├── test_dt_newrelic_header_disabled.php │ │ │ ├── test_dt_no_headers.php │ │ │ ├── test_multiple_calls.php │ │ │ ├── test_spans_post.php │ │ │ ├── test_spans_post_clm.php │ │ │ ├── test_spans_post_clm_off.php │ │ │ ├── test_spans_sets_external_span_correctly.php │ │ │ ├── test_spans_sets_external_span_correctly_clm_off.php │ │ │ ├── test_synthetics.php │ │ │ ├── test_synthetics_disabled.php │ │ │ ├── test_synthetics_with_cat_disabled.php │ │ │ └── test_synthetics_with_dt.php │ │ ├── file_get_contents │ │ │ ├── test_cat_and_synthetics_disabled.php │ │ │ ├── test_cat_context_provided.php │ │ │ ├── test_cat_default_context.php │ │ │ ├── test_cat_disabled.php │ │ │ ├── test_cat_no_context.php │ │ │ ├── test_dt_context_provided.php │ │ │ ├── test_dt_context_provided_logging_off.php │ │ │ ├── test_dt_default_context.php │ │ │ ├── test_dt_disabled.php │ │ │ ├── test_dt_disabled_cat_disabled.php │ │ │ ├── test_dt_newrelic_header_disabled.php │ │ │ ├── test_dt_no_context.php │ │ │ ├── test_http_response_header_cv.php │ │ │ ├── test_remove_headers_from_context.php │ │ │ ├── test_spans_are_created_correctly.php │ │ │ ├── test_synthetics_context_provided.php │ │ │ ├── test_synthetics_default_context.php │ │ │ ├── test_synthetics_disabled.php │ │ │ ├── test_synthetics_no_context.php │ │ │ ├── test_synthetics_with_cat_disabled.php │ │ │ ├── test_synthetics_with_dt.php │ │ │ └── test_synthetics_with_dt_logging_off.php │ │ ├── guzzle5 │ │ │ ├── skipif.inc │ │ │ ├── test_cat.php │ │ │ ├── test_dt.php │ │ │ ├── test_dt_newrelic_header_disabled.php │ │ │ ├── test_dt_synthetics.php │ │ │ ├── test_dt_synthetics_logging_off.php │ │ │ ├── test_no_cat_no_dt.php │ │ │ └── test_spans_external.php │ │ ├── guzzle6 │ │ │ ├── skipif.inc │ │ │ ├── test_bad_response_exception_async.php │ │ │ ├── test_bad_response_exception_sync.php │ │ │ ├── test_cat.php │ │ │ ├── test_dt.php │ │ │ ├── test_dt_newrelic_header_disabled.php │ │ │ ├── test_dt_synthetics.php │ │ │ ├── test_dt_synthetics_logging_off.php │ │ │ ├── test_no_cat_no_dt.php │ │ │ ├── test_spans_are_created_correctly.php │ │ │ ├── test_timeout_async.php │ │ │ ├── test_timeout_sync.php │ │ │ ├── test_transfer_exception_async.php │ │ │ ├── test_transfer_exception_sync.php │ │ │ ├── test_uncaught_bad_response_exception_sync.php │ │ │ └── test_uncaught_transfer_exception_async.php │ │ ├── guzzle7 │ │ │ ├── skipif.inc │ │ │ ├── test_bad_response_exception_async.php │ │ │ ├── test_bad_response_exception_sync.php │ │ │ ├── test_cat.php │ │ │ ├── test_dt.php │ │ │ ├── test_dt_newrelic_header_disabled.php │ │ │ ├── test_dt_synthetics.php │ │ │ ├── test_no_cat_no_dt.php │ │ │ ├── test_spans_are_created_correctly.php │ │ │ ├── test_timeout_async.php │ │ │ ├── test_timeout_sync.php │ │ │ ├── test_transfer_exception_async.php │ │ │ ├── test_transfer_exception_sync.php │ │ │ ├── test_txn_ignore.php │ │ │ ├── test_uncaught_bad_response_exception_sync.php │ │ │ └── test_uncaught_transfer_exception_async.php │ │ ├── http │ │ │ ├── test_v1_cat.php │ │ │ ├── test_v1_cat_and_synthetics_disabled.php │ │ │ ├── test_v1_cat_disabled.php │ │ │ ├── test_v1_synthetics.php │ │ │ ├── test_v1_synthetics_disabled.php │ │ │ ├── test_v1_synthetics_with_cat_disabled.php │ │ │ └── test_v2_cat.php │ │ └── test_curl_multi_add_remove_handles.php │ ├── frameworks │ │ ├── drupal │ │ │ ├── mock_module_handler.php │ │ │ ├── mock_module_handler_empty_array.php │ │ │ ├── mock_module_handler_empty_key.php │ │ │ ├── mock_module_handler_invalid_key.php │ │ │ ├── mock_module_handler_invalid_map.php │ │ │ ├── mock_module_handler_invalid_module.php │ │ │ ├── mock_module_handler_invalid_value.php │ │ │ ├── mock_module_handler_valid.php │ │ │ ├── mock_page_cache_get.php │ │ │ ├── skipif.inc │ │ │ ├── test_hook_implementations_map_empty_array.php │ │ │ ├── test_hook_implementations_map_empty_key.php │ │ │ ├── test_hook_implementations_map_invalid_key.php │ │ │ ├── test_hook_implementations_map_invalid_map.php │ │ │ ├── test_hook_implementations_map_invalid_module.php │ │ │ ├── test_hook_implementations_map_invalid_value.php │ │ │ ├── test_hook_implementations_map_valid.php │ │ │ ├── test_invoke_all_with.php74.php │ │ │ ├── test_invoke_all_with.php8.php │ │ │ ├── test_module_invoke_all.php │ │ │ └── test_module_invoke_all.php8.php │ │ ├── laravel │ │ │ ├── mock_artisan.php │ │ │ ├── mock_artisan.php8.php │ │ │ ├── mock_horizon_error_path.php │ │ │ ├── mock_horizon_exception_path.php │ │ │ ├── mock_horizon_happy_path.php │ │ │ ├── mock_http_options.php │ │ │ ├── mock_supervisor_error_path.php │ │ │ ├── mock_supervisor_exception_path.php │ │ │ ├── mock_supervisor_happy_path.php │ │ │ ├── test_artisan_name.php │ │ │ ├── test_artisan_name_logging_off.php │ │ │ ├── test_artisan_name_non_input.php │ │ │ ├── test_artisan_name_non_string.php │ │ │ ├── test_horizon_disable_laravel_queue.php │ │ │ ├── test_horizon_error_path.php │ │ │ ├── test_horizon_exception_path.php │ │ │ ├── test_horizon_happy_path.php │ │ │ ├── test_http_options_naming.php │ │ │ ├── test_supervisor_error_path.php │ │ │ ├── test_supervisor_exception_path.php │ │ │ └── test_supervisor_happy_path.php │ │ ├── magento │ │ │ ├── test_temp_tables.php │ │ │ └── test_temp_tables_logging_off.php │ │ ├── wordpress │ │ │ ├── mock-wordpress-app.php │ │ │ ├── mock_hooks.php │ │ │ ├── test_site_specific_tables.php │ │ │ ├── test_site_specific_tables_logging_off.php │ │ │ ├── test_wordpress_00.php │ │ │ ├── test_wordpress_00.php7.php │ │ │ ├── test_wordpress_00_1.php │ │ │ ├── test_wordpress_00_2.php │ │ │ ├── test_wordpress_01.php │ │ │ ├── test_wordpress_02.php │ │ │ ├── test_wordpress_03.php │ │ │ ├── test_wordpress_03.php7.php │ │ │ ├── test_wordpress_04.php │ │ │ ├── test_wordpress_04.php7.php │ │ │ ├── test_wordpress_apply_filters.php │ │ │ ├── test_wordpress_do_action.php │ │ │ ├── test_wordpress_slow_hooks_only.php │ │ │ ├── test_wordpress_transaction_name_hooks_off.php │ │ │ ├── test_wordpress_transaction_name_hooks_on.php │ │ │ ├── wp-config.php │ │ │ ├── wp-content │ │ │ │ ├── plugins │ │ │ │ │ ├── mock-plugin1.php │ │ │ │ │ └── mock-plugin2.php │ │ │ │ └── themes │ │ │ │ │ ├── mock-theme1.php │ │ │ │ │ └── mock-theme2.php │ │ │ ├── wp-includes │ │ │ │ ├── functions.php │ │ │ │ └── plugin.php │ │ │ └── wp-settings.php │ │ └── yii │ │ │ ├── test_basic_cli.php │ │ │ ├── test_basic_web.php │ │ │ └── yii2 │ │ │ └── baseyii.php │ ├── ini │ │ ├── capture_params │ │ │ ├── test_disabled.php │ │ │ ├── test_enabled.php │ │ │ └── test_lasp_disabled.php │ │ ├── dummy.inc │ │ ├── test_analytics_events_disabled.php │ │ ├── test_dt_enabled_default.php │ │ ├── test_force_framework_0.php │ │ ├── test_force_framework_1.php │ │ ├── test_force_framework_2.php │ │ ├── test_force_framework_3.php │ │ ├── test_force_framework_5.php │ │ ├── test_force_framework_6.php │ │ ├── test_host_display_name.php │ │ ├── test_ini_001.php │ │ ├── test_ini_002.php │ │ ├── test_ini_003.php │ │ ├── test_ini_003_logging_off.php │ │ ├── test_ini_004.php │ │ ├── test_transaction_events_disabled.php │ │ ├── test_transaction_tracer_max_segments.php │ │ ├── test_transaction_tracer_max_segments_nested.php │ │ ├── test_transaction_tracer_max_segments_no_cap.php │ │ └── test_transaction_tracer_max_segments_with_datastore.php │ ├── jit │ │ ├── function │ │ │ ├── skipif.inc │ │ │ ├── test_computations.php │ │ │ ├── test_even_odd_count.php │ │ │ ├── test_recursion_no_segfault.php │ │ │ ├── test_span_class_function.php │ │ │ ├── test_span_events_are_created_from_segments.php │ │ │ ├── test_span_events_are_created_upon_caught_error.php │ │ │ ├── test_span_events_are_created_upon_caught_error.php84.php │ │ │ ├── test_span_events_are_created_upon_exit.php │ │ │ ├── test_span_events_are_created_upon_uncaught_error.php │ │ │ ├── test_span_events_are_created_upon_uncaught_error.php84.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php84.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception_invalid_handler.php │ │ │ ├── test_span_events_are_created_upon_uncaught_unhandled_exception.php │ │ │ ├── test_span_events_error_collector_disabled.php │ │ │ ├── test_span_events_exception_caught_nested.php │ │ │ ├── test_span_events_exception_caught_nested_rethrown.php │ │ │ ├── test_span_events_exception_caught_notice_error.php │ │ │ ├── test_span_events_exception_caught_notice_error_nested.php │ │ │ ├── test_span_events_exception_caught_same_span.php │ │ │ ├── test_span_events_exception_uncaught_nested.php │ │ │ ├── test_span_events_exist_when_no_segments.php │ │ │ ├── test_span_events_hsm_error.php │ │ │ ├── test_span_events_notice_error.php │ │ │ ├── test_span_events_on_dt_off_cat_off.php │ │ │ ├── test_span_events_on_dt_off_cat_on.php │ │ │ └── test_span_events_root_parent.php │ │ └── tracing │ │ │ ├── skipif.inc │ │ │ ├── test_computations.php │ │ │ ├── test_even_odd_count.php │ │ │ ├── test_recursion_no_segfault.php │ │ │ ├── test_span_class_function.php │ │ │ ├── test_span_events_are_created_from_segments.php │ │ │ ├── test_span_events_are_created_upon_caught_error.php │ │ │ ├── test_span_events_are_created_upon_caught_error.php84.php │ │ │ ├── test_span_events_are_created_upon_exit.php │ │ │ ├── test_span_events_are_created_upon_uncaught_error.php │ │ │ ├── test_span_events_are_created_upon_uncaught_error.php84.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php84.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception_invalid_handler.php │ │ │ ├── test_span_events_are_created_upon_uncaught_unhandled_exception.php │ │ │ ├── test_span_events_error_collector_disabled.php │ │ │ ├── test_span_events_exception_caught_nested.php │ │ │ ├── test_span_events_exception_caught_nested_rethrown.php │ │ │ ├── test_span_events_exception_caught_notice_error.php │ │ │ ├── test_span_events_exception_caught_notice_error_nested.php │ │ │ ├── test_span_events_exception_caught_same_span.php │ │ │ ├── test_span_events_exception_uncaught_nested.php │ │ │ ├── test_span_events_exist_when_no_segments.php │ │ │ ├── test_span_events_hsm_error.php │ │ │ ├── test_span_events_notice_error.php │ │ │ ├── test_span_events_on_dt_off_cat_off.php │ │ │ ├── test_span_events_on_dt_off_cat_on.php │ │ │ └── test_span_events_root_parent.php │ ├── lang │ │ ├── test_attributes.php │ │ ├── test_generator_7.1-7.4.php │ │ ├── test_generator_8.0.php │ │ └── trampoline │ │ │ ├── test_trampoline_00.php │ │ │ ├── test_trampoline_01.php │ │ │ └── test_trampoline_02.php │ ├── logging │ │ ├── consolidation-log │ │ │ ├── test_supportability_metric.php │ │ │ └── vendor │ │ │ │ └── consolidation │ │ │ │ └── log │ │ │ │ └── src │ │ │ │ └── Logger.php │ │ ├── laminas-log │ │ │ ├── test_supportability_metric.php │ │ │ └── vendor │ │ │ │ └── laminas │ │ │ │ └── laminas-log │ │ │ │ └── src │ │ │ │ └── Logger.php │ │ ├── monolog2 │ │ │ ├── test_supportability_metric.php │ │ │ └── vendor │ │ │ │ └── Monolog │ │ │ │ └── Logger.php │ │ └── monolog3 │ │ │ ├── test_supportability_metric.php │ │ │ └── vendor │ │ │ └── Monolog │ │ │ └── Logger.php │ ├── memcache │ │ ├── skipif.inc │ │ ├── test_add.php │ │ ├── test_add.php82.php │ │ ├── test_incr_decr.php │ │ ├── test_incr_decr.php82.php │ │ ├── test_memcache_add.php │ │ ├── test_memcache_add.php82.php │ │ ├── test_memcache_add_logging_off.php │ │ ├── test_memcache_add_logging_off.php82.php │ │ ├── test_memcache_incr_decr.php │ │ ├── test_memcache_incr_decr.php82.php │ │ ├── test_memcache_replace.php │ │ ├── test_memcache_replace.php82.php │ │ ├── test_memcache_set.php │ │ ├── test_memcache_set.php82.php │ │ ├── test_replace.php │ │ ├── test_replace.php82.php │ │ ├── test_set.php │ │ └── test_set.php82.php │ ├── memcached │ │ ├── memcache.inc │ │ ├── skipif.inc │ │ ├── test_add_servers.php │ │ ├── test_add_servers_bad.php │ │ ├── test_basic.php │ │ ├── test_basic_logging_off.php │ │ ├── test_by_key.php │ │ ├── test_cas.php7.php │ │ ├── test_cas_by_key.php7.php │ │ ├── test_concat.php │ │ ├── test_concat_by_key.php │ │ ├── test_concat_by_key_logging_off.php │ │ ├── test_multi.php │ │ ├── test_multi_by_key.php │ │ └── test_socket.php │ ├── mysql │ │ ├── README.md │ │ ├── skipif.inc │ │ ├── test_db_query.php │ │ ├── test_db_query_error.php │ │ ├── test_db_query_logging_off.php │ │ ├── test_query.php │ │ ├── test_query_error.php │ │ ├── test_unbuffered_query.php │ │ └── test_unbuffered_query_logging_off.php │ ├── mysqli │ │ ├── README.md │ │ ├── mysqli.inc │ │ ├── skipif.inc │ │ ├── test_bind_param_object_oo.php │ │ ├── test_bind_param_object_oo_logging_off.php │ │ ├── test_bind_param_oo.php │ │ ├── test_bind_param_proc.php │ │ ├── test_explain_connect.php │ │ ├── test_explain_connect_socket.php │ │ ├── test_explain_construct.php │ │ ├── test_explain_construct_socket.php │ │ ├── test_explain_database_no_user.php │ │ ├── test_explain_database_no_user_logging_off.php │ │ ├── test_explain_init_oo.php │ │ ├── test_explain_init_oo_persistent.php │ │ ├── test_explain_init_proc.php │ │ ├── test_explain_leading_whitespace.php │ │ ├── test_explain_options_garbage.php │ │ ├── test_explain_real_connect_garbage.php │ │ ├── test_explain_real_connect_garbage_logging_off.php │ │ ├── test_explain_reused_id.php │ │ ├── test_explain_reused_id_multiple_001.php │ │ ├── test_explain_reused_id_multiple_002.php │ │ ├── test_explain_select_db_oo.php │ │ ├── test_explain_select_db_proc.php │ │ ├── test_ignore_txn.php │ │ ├── test_multi_query_oo.php │ │ ├── test_multi_query_proc.php │ │ ├── test_multi_query_proc_logging_off.php │ │ ├── test_mysqli_query_1.php │ │ ├── test_null_connect_proc.php │ │ ├── test_null_construct_oo.php │ │ ├── test_null_rc_oo.php │ │ ├── test_null_rc_proc.php │ │ ├── test_null_stmt_construct.php │ │ ├── test_prepare_oo.php │ │ ├── test_prepare_proc.php │ │ ├── test_query_oo.php │ │ ├── test_query_proc.php │ │ ├── test_real_query_oo.php │ │ ├── test_real_query_oo_logging_off.php │ │ ├── test_real_query_proc.php │ │ ├── test_stmt_prepare_oo.php │ │ ├── test_stmt_prepare_proc.php │ │ ├── test_subclassing.php │ │ └── test_subclassing.php81.php │ ├── opcache │ │ ├── disabled │ │ │ ├── opcache_test.inc │ │ │ ├── skipif.inc │ │ │ ├── test_computations.php │ │ │ ├── test_even_odd_count.php │ │ │ ├── test_recursion_no_segfault.php │ │ │ ├── test_span_class_function.php │ │ │ ├── test_span_events_are_created_from_segments.php │ │ │ ├── test_span_events_are_created_upon_caught_error.php │ │ │ ├── test_span_events_are_created_upon_caught_error.php84.php │ │ │ ├── test_span_events_are_created_upon_exit.php │ │ │ ├── test_span_events_are_created_upon_uncaught_error.php │ │ │ ├── test_span_events_are_created_upon_uncaught_error.php84.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php7.php │ │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php84.php │ │ │ ├── test_span_events_are_created_upon_uncaught_unhandled_exception.php │ │ │ ├── test_span_events_error_collector_disabled.php │ │ │ ├── test_span_events_exception_caught_nested.php │ │ │ ├── test_span_events_exception_caught_nested_rethrown.php │ │ │ ├── test_span_events_exception_caught_notice_error.php │ │ │ ├── test_span_events_exception_caught_notice_error_nested.php │ │ │ ├── test_span_events_exception_caught_same_span.php │ │ │ ├── test_span_events_exception_uncaught_nested.php │ │ │ ├── test_span_events_exist_when_no_segments.php │ │ │ ├── test_span_events_hsm_error.php │ │ │ ├── test_span_events_notice_error.php │ │ │ ├── test_span_events_on_dt_off_cat_off.php │ │ │ ├── test_span_events_on_dt_off_cat_on.php │ │ │ └── test_span_events_root_parent.php │ │ └── enabled │ │ │ └── test_opcache.php │ ├── output │ │ ├── test_clean_after_footer.php │ │ ├── test_clean_after_header_5.4.php │ │ ├── test_clean_before_header.php │ │ ├── test_flush.php │ │ ├── test_mimetype_json.php │ │ └── test_output_handler.php │ ├── pdo │ │ ├── mysql │ │ │ ├── base-class │ │ │ │ ├── test_instance_reporting_port.php │ │ │ │ ├── test_instance_reporting_socket.php │ │ │ │ ├── test_prepared_stmt_basic.php │ │ │ │ ├── test_prepared_stmt_bind_value.php │ │ │ │ ├── test_query_1_arg.php │ │ │ │ ├── test_query_fetch_class.php │ │ │ │ ├── test_query_fetch_column.php │ │ │ │ └── test_query_fetch_into.php │ │ │ ├── constructor │ │ │ └── factory │ │ │ │ ├── test_instance_reporting_port.php │ │ │ │ ├── test_instance_reporting_socket.php │ │ │ │ ├── test_prepared_stmt_basic.php │ │ │ │ ├── test_prepared_stmt_bind_value.php │ │ │ │ ├── test_query_1_arg.php │ │ │ │ ├── test_query_fetch_class.php │ │ │ │ ├── test_query_fetch_column.php │ │ │ │ └── test_query_fetch_into.php │ │ ├── pdo.inc │ │ ├── pgsql │ │ │ ├── base-class │ │ │ │ ├── test_instance_reporting_port.php │ │ │ │ ├── test_prepared_stmt_basic.php │ │ │ │ ├── test_prepared_stmt_bind_value.php │ │ │ │ ├── test_query_1_arg.php │ │ │ │ ├── test_query_fetch_class.php │ │ │ │ ├── test_query_fetch_column.php │ │ │ │ └── test_query_fetch_into.php │ │ │ ├── constructor │ │ │ └── factory │ │ │ │ ├── test_instance_reporting_port.php │ │ │ │ ├── test_prepared_stmt_basic.php │ │ │ │ ├── test_prepared_stmt_bind_value.php │ │ │ │ ├── test_query_1_arg.php │ │ │ │ ├── test_query_fetch_class.php │ │ │ │ ├── test_query_fetch_column.php │ │ │ │ └── test_query_fetch_into.php │ │ ├── skipif_mysql.inc │ │ ├── skipif_pdo_subclasses.inc │ │ ├── skipif_pgsql.inc │ │ ├── skipif_sqlite.inc │ │ ├── sqlite │ │ │ ├── base-class │ │ │ │ ├── test_prepared_stmt_basic.php │ │ │ │ ├── test_prepared_stmt_bind_value.php │ │ │ │ ├── test_query_1_arg.php │ │ │ │ ├── test_query_fetch_class.php │ │ │ │ ├── test_query_fetch_column.php │ │ │ │ ├── test_query_fetch_column_logging_off.php │ │ │ │ └── test_query_fetch_into.php │ │ │ ├── constructor │ │ │ ├── extending-class │ │ │ │ └── test_query_1_arg.php │ │ │ └── factory │ │ │ │ ├── test_prepared_stmt_basic.php │ │ │ │ ├── test_prepared_stmt_bind_value.php │ │ │ │ ├── test_query_1_arg.php │ │ │ │ ├── test_query_fetch_class.php │ │ │ │ ├── test_query_fetch_column.php │ │ │ │ ├── test_query_fetch_column_logging_off.php │ │ │ │ └── test_query_fetch_into.php │ │ ├── test_bad_input_1.php │ │ ├── test_bad_input_1_logging_off.php │ │ ├── test_empty_driver_options.php │ │ ├── test_empty_driver_options.php81.php │ │ ├── test_instance_reporting.inc │ │ ├── test_instance_slow_sql_1.php │ │ ├── test_instance_slow_sql_1.php81.php │ │ ├── test_instance_slow_sql_2.php │ │ ├── test_instance_slow_sql_2.php81.php │ │ ├── test_instance_slow_sql_for_update.php │ │ ├── test_instance_slow_sql_found_rows.php │ │ ├── test_instance_slow_sql_found_rows.php81.php │ │ ├── test_instance_slow_sql_lock.php │ │ ├── test_instance_slow_sql_semicolon.php │ │ ├── test_null_options.php │ │ ├── test_null_options.php81.php │ │ ├── test_persistent_conn.php │ │ ├── test_persistent_conn.php81.php │ │ ├── test_prepared_stmt_basic.inc │ │ ├── test_prepared_stmt_bind_value.inc │ │ ├── test_prepared_stmt_params.php │ │ ├── test_prepared_stmt_params.php81.php │ │ ├── test_query_1_arg.inc │ │ ├── test_query_fetch_class.inc │ │ ├── test_query_fetch_column.inc │ │ ├── test_query_fetch_into.inc │ │ ├── test_slow_sql_1.php │ │ ├── test_slow_sql_1.php81.php │ │ ├── test_slow_sql_2.php │ │ ├── test_slow_sql_2.php81.php │ │ ├── test_slow_sql_for_update.php │ │ ├── test_slow_sql_found_rows.php │ │ ├── test_slow_sql_found_rows.php81.php │ │ ├── test_slow_sql_lock.php │ │ ├── test_slow_sql_semicolon.php │ │ └── test_txn_ignore.php │ ├── pgsql │ │ ├── skipif.inc │ │ ├── skipif_php8.inc │ │ ├── skipif_php81.inc │ │ ├── test_pg_execute_mixed_use.php │ │ ├── test_pg_execute_mixed_use_logging_off.php │ │ ├── test_pg_execute_with_resource.php │ │ ├── test_pg_execute_without_resource.php │ │ ├── test_pg_query_error.php │ │ ├── test_pg_query_params_error.php │ │ ├── test_pg_query_params_error_logging_off.php │ │ ├── test_pg_query_params_with_resource.php │ │ ├── test_pg_query_params_without_resource.php │ │ ├── test_pg_query_with_resource.php │ │ ├── test_pg_query_with_resource_logging_off.php │ │ └── test_pg_query_without_resource.php │ ├── predis │ │ ├── predis.inc │ │ ├── test_basic.php │ │ ├── test_basic_logging_off.php │ │ ├── test_basic_reporting_disabled.php │ │ ├── test_cross_transaction.php │ │ ├── test_instance_basic.php │ │ ├── test_pipeline.php │ │ ├── test_pipeline_atomic.php │ │ ├── test_pipeline_fire_and_forget.php │ │ ├── test_pipeline_fire_and_forget_logging_off.php │ │ └── test_txn_restarted.php │ ├── queue │ │ ├── test_basic.php │ │ ├── test_basic_logging_off.php │ │ ├── test_capitalized.php │ │ ├── test_malformed.php │ │ └── test_with_prefix.php │ ├── redis │ │ ├── redis.inc │ │ ├── skipif.inc │ │ ├── test_basic.php │ │ ├── test_basic_logging_off.php │ │ ├── test_bitops.php │ │ ├── test_decr.php │ │ ├── test_geo.php │ │ ├── test_hash.php │ │ ├── test_incr.php │ │ ├── test_instance_basic.php │ │ ├── test_instance_bitops.php │ │ ├── test_instance_decr.php │ │ ├── test_instance_geo.php │ │ ├── test_instance_hash.php │ │ ├── test_instance_incr.php │ │ ├── test_instance_list.php │ │ ├── test_instance_set.php │ │ ├── test_instance_set.redis6.php │ │ ├── test_instance_setex.php │ │ ├── test_instance_stream.redis5.php │ │ ├── test_instance_zset.php │ │ ├── test_instance_zset.redis5.php │ │ ├── test_lget.php │ │ ├── test_list.php │ │ ├── test_list_logging_off.php │ │ ├── test_lremove.php │ │ ├── test_set.php │ │ ├── test_set.redis6.php │ │ ├── test_setex.php │ │ ├── test_stream.redis5.php │ │ ├── test_zset.php │ │ └── test_zset.redis5.php │ ├── span_events │ │ ├── test_span_events_are_created_from_segments.php │ │ ├── test_span_events_are_created_upon_caught_error.php │ │ ├── test_span_events_are_created_upon_caught_error.php84.php │ │ ├── test_span_events_are_created_upon_exit.php │ │ ├── test_span_events_are_created_upon_uncaught_error.php │ │ ├── test_span_events_are_created_upon_uncaught_error.php84.php │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php7.php │ │ ├── test_span_events_are_created_upon_uncaught_handled_exception.php84.php │ │ ├── test_span_events_are_created_upon_uncaught_unhandled_exception.php │ │ ├── test_span_events_error_collector_disabled.php │ │ ├── test_span_events_exception_caught_nested.php │ │ ├── test_span_events_exception_caught_nested_rethrown.php │ │ ├── test_span_events_exception_caught_notice_error.php │ │ ├── test_span_events_exception_caught_notice_error_nested.php │ │ ├── test_span_events_exception_caught_same_span.php │ │ ├── test_span_events_exception_uncaught_nested.php │ │ ├── test_span_events_exist_when_no_segments.php │ │ ├── test_span_events_hsm_error.php │ │ ├── test_span_events_max_samples_stored1.php │ │ ├── test_span_events_max_samples_stored2.php │ │ ├── test_span_events_max_samples_stored3.php │ │ ├── test_span_events_max_samples_stored4.php │ │ ├── test_span_events_max_samples_stored5.php │ │ ├── test_span_events_max_samples_stored6.php │ │ ├── test_span_events_max_samples_stored7.php │ │ ├── test_span_events_max_samples_stored8.php │ │ ├── test_span_events_max_samples_stored_invalid1.php │ │ ├── test_span_events_max_samples_stored_invalid2.php │ │ ├── test_span_events_notice_error.php │ │ ├── test_span_events_off_dt_on_cat_off.php │ │ ├── test_span_events_off_dt_on_cat_on.php │ │ ├── test_span_events_on_dt_off_cat_off.php │ │ ├── test_span_events_on_dt_off_cat_on.php │ │ ├── test_span_events_on_dt_on.php │ │ ├── test_span_events_root_parent.php │ │ ├── test_span_events_special_max_10.php │ │ ├── test_span_events_special_max_disabled.php │ │ └── tt_detail │ │ │ ├── test_tt_detail_off_with_custom_wrapper_api.php │ │ │ ├── test_tt_detail_off_with_custom_wrapper_config.php │ │ │ ├── test_tt_detail_off_with_error.php │ │ │ ├── test_tt_detail_off_with_exception.php │ │ │ ├── test_tt_detail_off_with_long_function.php │ │ │ ├── test_tt_detail_on_with_custom_wrapper.php │ │ │ ├── test_tt_detail_on_with_long_function.php │ │ │ └── tt_detail_helper.inc │ ├── sqlite │ │ ├── skipif.inc │ │ ├── test_bad_input_1.php │ │ ├── test_bad_input_2.php │ │ ├── test_bad_input_3.php │ │ ├── test_bad_input_4.php │ │ ├── test_bad_input_5.php │ │ ├── test_exec.php │ │ ├── test_exec_logging_off.php │ │ ├── test_query_1.php │ │ ├── test_query_2.php │ │ ├── test_unbuffered_1.php │ │ ├── test_unbuffered_2.php │ │ └── test_unbuffered_2_logging_off.php │ ├── sqlite3 │ │ ├── skipif.inc │ │ ├── test_bad_input_1.php │ │ ├── test_bad_input_2.php │ │ ├── test_bad_input_3.php │ │ ├── test_bad_input_3_logging_off.php │ │ ├── test_bad_input_4.php │ │ ├── test_bad_input_5.php │ │ ├── test_bad_sql_1.php │ │ ├── test_bad_sql_2.php │ │ ├── test_query.php │ │ ├── test_query_logging_off.php │ │ ├── test_querysingle_1.php │ │ └── test_querysingle_2.php │ ├── sqlitedatabase │ │ ├── skipif.inc │ │ ├── test_bad_input_1.php │ │ ├── test_bad_input_2.php │ │ ├── test_bad_input_3.php │ │ ├── test_query.php │ │ ├── test_query_logging_off.php │ │ └── test_unbuffered.php │ ├── supportability │ │ └── test_php_and_agent_version_metrics.php │ ├── synthetics │ │ ├── test_bad_header.php │ │ ├── test_disabled.php │ │ ├── test_happy_path.php │ │ ├── test_happy_path_with_cat.php │ │ └── test_happy_path_with_dt.php │ └── uopz │ │ ├── README.md │ │ ├── load.inc │ │ ├── skipif.inc │ │ ├── test_001.php │ │ ├── test_002.php │ │ ├── test_003.php │ │ ├── test_004.php │ │ ├── test_005.php │ │ ├── test_006.php │ │ ├── test_007.php │ │ ├── test_008.php │ │ ├── test_009.php │ │ ├── test_010.php │ │ ├── test_011.php │ │ ├── test_012.php │ │ ├── test_013.php │ │ ├── test_014.php │ │ ├── test_015.php │ │ ├── test_016.php │ │ ├── test_017.php │ │ ├── test_018.php │ │ ├── test_019.php │ │ ├── test_020.php │ │ └── test_021.php ├── lasp │ ├── suite-least-secure │ │ ├── README.md │ │ ├── security-token.txt │ │ ├── securityPolicyAgent.json │ │ ├── test_custom_parameter_on.php │ │ ├── test_errors_off.php │ │ ├── test_errors_on.php │ │ ├── test_events_off.php │ │ ├── test_slow_sql_on.php │ │ ├── test_slow_sql_on.php81.php │ │ ├── test_sql_none.php │ │ ├── test_sql_obfuscated.php │ │ └── test_sql_raw.php │ ├── suite-most-secure │ │ ├── README.md │ │ ├── security-token.txt │ │ ├── securityPolicyAgent.json │ │ ├── test_custom_parameter_off.php │ │ ├── test_custom_parameter_on.php │ │ ├── test_errors_off.php │ │ ├── test_errors_on.php │ │ ├── test_events_off.php │ │ ├── test_slow_sql_off.php │ │ ├── test_sql_none.php │ │ ├── test_sql_obfuscated.php │ │ └── test_sql_raw.php │ ├── suite-random-1 │ │ ├── README.md │ │ ├── security-token.txt │ │ ├── securityPolicyAgent.json │ │ ├── test_errors_on.php │ │ ├── test_events_off.php │ │ ├── test_events_on.php │ │ └── test_sql_obfuscated.php │ ├── suite-random-2 │ │ ├── README.md │ │ ├── security-token.txt │ │ ├── securityPolicyAgent.json │ │ ├── test_custom_parameter_off.php │ │ ├── test_errors_off.php │ │ ├── test_errors_on.php │ │ ├── test_events_on.php │ │ ├── test_slow_sql_on.php │ │ ├── test_slow_sql_on.php81.php │ │ ├── test_sql_none.php │ │ └── test_sql_raw.php │ └── suite-random-3 │ │ ├── README.md │ │ ├── security-token.txt │ │ ├── securityPolicyAgent.json │ │ ├── test_custom_parameter_off.php │ │ ├── test_custom_parameter_on.php │ │ ├── test_errors_on.php │ │ ├── test_events_off.php │ │ ├── test_events_on.php │ │ ├── test_slow_sql_off.php │ │ ├── test_slow_sql_on.php │ │ ├── test_sql_obfuscated.php │ │ └── test_sql_raw.php └── regression │ ├── test_disable_functions.php │ ├── test_php_1097_chunking_header.php │ ├── test_php_1179_pdo_options_crash.php │ ├── test_php_2051_restarted_within_wrapper.php │ └── test_php_579_get_content_type.php └── trivy.yaml /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/bug-report-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/bug-report-response.yml -------------------------------------------------------------------------------- /.github/workflows/code-coverage-baseline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/code-coverage-baseline.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/issue-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/issue-comment.yml -------------------------------------------------------------------------------- /.github/workflows/issue-support-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/issue-support-label.yml -------------------------------------------------------------------------------- /.github/workflows/make-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/make-agent.yml -------------------------------------------------------------------------------- /.github/workflows/make-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/make-integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/release-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/release-build.yml -------------------------------------------------------------------------------- /.github/workflows/repolinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/repolinter.yml -------------------------------------------------------------------------------- /.github/workflows/run-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/run-integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/security-scan.yml -------------------------------------------------------------------------------- /.github/workflows/test-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/test-agent.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-test-suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.github/workflows/trigger-test-suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/.trivyignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/README.md -------------------------------------------------------------------------------- /STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/STYLEGUIDE.md -------------------------------------------------------------------------------- /THIRD_PARTY_NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/THIRD_PARTY_NOTICES.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 12.3.0 2 | -------------------------------------------------------------------------------- /agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/.gitignore -------------------------------------------------------------------------------- /agent/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/Makefile.frag -------------------------------------------------------------------------------- /agent/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/README.txt -------------------------------------------------------------------------------- /agent/apache-suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/apache-suppressions -------------------------------------------------------------------------------- /agent/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/config.m4 -------------------------------------------------------------------------------- /agent/export.syms: -------------------------------------------------------------------------------- 1 | get_module 2 | -------------------------------------------------------------------------------- /agent/fw_cakephp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_cakephp.c -------------------------------------------------------------------------------- /agent/fw_codeigniter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_codeigniter.c -------------------------------------------------------------------------------- /agent/fw_codeigniter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_codeigniter.h -------------------------------------------------------------------------------- /agent/fw_drupal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_drupal.c -------------------------------------------------------------------------------- /agent/fw_drupal8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_drupal8.c -------------------------------------------------------------------------------- /agent/fw_drupal_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_drupal_common.c -------------------------------------------------------------------------------- /agent/fw_drupal_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_drupal_common.h -------------------------------------------------------------------------------- /agent/fw_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_hooks.h -------------------------------------------------------------------------------- /agent/fw_joomla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_joomla.c -------------------------------------------------------------------------------- /agent/fw_laminas3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_laminas3.c -------------------------------------------------------------------------------- /agent/fw_laravel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_laravel.c -------------------------------------------------------------------------------- /agent/fw_laravel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_laravel.h -------------------------------------------------------------------------------- /agent/fw_laravel_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_laravel_queue.c -------------------------------------------------------------------------------- /agent/fw_laravel_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_laravel_queue.h -------------------------------------------------------------------------------- /agent/fw_lumen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_lumen.c -------------------------------------------------------------------------------- /agent/fw_magento1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_magento1.c -------------------------------------------------------------------------------- /agent/fw_magento2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_magento2.c -------------------------------------------------------------------------------- /agent/fw_magento_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_magento_common.c -------------------------------------------------------------------------------- /agent/fw_magento_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_magento_common.h -------------------------------------------------------------------------------- /agent/fw_mediawiki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_mediawiki.c -------------------------------------------------------------------------------- /agent/fw_slim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_slim.c -------------------------------------------------------------------------------- /agent/fw_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_support.c -------------------------------------------------------------------------------- /agent/fw_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_support.h -------------------------------------------------------------------------------- /agent/fw_symfony4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_symfony4.c -------------------------------------------------------------------------------- /agent/fw_symfony_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_symfony_common.c -------------------------------------------------------------------------------- /agent/fw_symfony_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_symfony_common.h -------------------------------------------------------------------------------- /agent/fw_wordpress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_wordpress.c -------------------------------------------------------------------------------- /agent/fw_wordpress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_wordpress.h -------------------------------------------------------------------------------- /agent/fw_yii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_yii.c -------------------------------------------------------------------------------- /agent/fw_zend3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/fw_zend3.c -------------------------------------------------------------------------------- /agent/install-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/install-util.c -------------------------------------------------------------------------------- /agent/lib_aws_sdk_php.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_aws_sdk_php.c -------------------------------------------------------------------------------- /agent/lib_aws_sdk_php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_aws_sdk_php.h -------------------------------------------------------------------------------- /agent/lib_composer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_composer.c -------------------------------------------------------------------------------- /agent/lib_doctrine2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_doctrine2.c -------------------------------------------------------------------------------- /agent/lib_doctrine2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_doctrine2.h -------------------------------------------------------------------------------- /agent/lib_guzzle4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_guzzle4.c -------------------------------------------------------------------------------- /agent/lib_guzzle4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_guzzle4.h -------------------------------------------------------------------------------- /agent/lib_guzzle6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_guzzle6.c -------------------------------------------------------------------------------- /agent/lib_guzzle6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_guzzle6.h -------------------------------------------------------------------------------- /agent/lib_guzzle_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_guzzle_common.c -------------------------------------------------------------------------------- /agent/lib_guzzle_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_guzzle_common.h -------------------------------------------------------------------------------- /agent/lib_mongodb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_mongodb.c -------------------------------------------------------------------------------- /agent/lib_mongodb_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_mongodb_private.h -------------------------------------------------------------------------------- /agent/lib_monolog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_monolog.c -------------------------------------------------------------------------------- /agent/lib_monolog_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_monolog_private.h -------------------------------------------------------------------------------- /agent/lib_php_amqplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_php_amqplib.c -------------------------------------------------------------------------------- /agent/lib_php_amqplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_php_amqplib.h -------------------------------------------------------------------------------- /agent/lib_phpunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_phpunit.c -------------------------------------------------------------------------------- /agent/lib_predis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_predis.c -------------------------------------------------------------------------------- /agent/lib_predis_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_predis_private.h -------------------------------------------------------------------------------- /agent/lib_zend_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_zend_http.c -------------------------------------------------------------------------------- /agent/lib_zend_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/lib_zend_http.h -------------------------------------------------------------------------------- /agent/newrelic-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/newrelic-install.sh -------------------------------------------------------------------------------- /agent/newrelic_php-suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/newrelic_php-suppressions -------------------------------------------------------------------------------- /agent/other_php-suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/other_php-suppressions -------------------------------------------------------------------------------- /agent/php_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_agent.c -------------------------------------------------------------------------------- /agent/php_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_agent.h -------------------------------------------------------------------------------- /agent/php_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api.c -------------------------------------------------------------------------------- /agent/php_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api.h -------------------------------------------------------------------------------- /agent/php_api_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api_datastore.c -------------------------------------------------------------------------------- /agent/php_api_datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api_datastore.h -------------------------------------------------------------------------------- /agent/php_api_datastore_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api_datastore_private.h -------------------------------------------------------------------------------- /agent/php_api_distributed_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api_distributed_trace.c -------------------------------------------------------------------------------- /agent/php_api_distributed_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api_distributed_trace.h -------------------------------------------------------------------------------- /agent/php_api_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api_internal.c -------------------------------------------------------------------------------- /agent/php_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_api_internal.h -------------------------------------------------------------------------------- /agent/php_autorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_autorum.c -------------------------------------------------------------------------------- /agent/php_autorum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_autorum.h -------------------------------------------------------------------------------- /agent/php_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_call.c -------------------------------------------------------------------------------- /agent/php_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_call.h -------------------------------------------------------------------------------- /agent/php_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_compat.h -------------------------------------------------------------------------------- /agent/php_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_curl.c -------------------------------------------------------------------------------- /agent/php_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_curl.h -------------------------------------------------------------------------------- /agent/php_curl_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_curl_md.c -------------------------------------------------------------------------------- /agent/php_curl_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_curl_md.h -------------------------------------------------------------------------------- /agent/php_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_datastore.c -------------------------------------------------------------------------------- /agent/php_datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_datastore.h -------------------------------------------------------------------------------- /agent/php_environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_environment.c -------------------------------------------------------------------------------- /agent/php_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_environment.h -------------------------------------------------------------------------------- /agent/php_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_error.c -------------------------------------------------------------------------------- /agent/php_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_error.h -------------------------------------------------------------------------------- /agent/php_execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_execute.c -------------------------------------------------------------------------------- /agent/php_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_execute.h -------------------------------------------------------------------------------- /agent/php_explain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_explain.c -------------------------------------------------------------------------------- /agent/php_explain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_explain.h -------------------------------------------------------------------------------- /agent/php_explain_mysqli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_explain_mysqli.c -------------------------------------------------------------------------------- /agent/php_explain_mysqli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_explain_mysqli.h -------------------------------------------------------------------------------- /agent/php_explain_pdo_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_explain_pdo_mysql.c -------------------------------------------------------------------------------- /agent/php_explain_pdo_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_explain_pdo_mysql.h -------------------------------------------------------------------------------- /agent/php_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_extension.c -------------------------------------------------------------------------------- /agent/php_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_extension.h -------------------------------------------------------------------------------- /agent/php_file_get_contents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_file_get_contents.c -------------------------------------------------------------------------------- /agent/php_file_get_contents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_file_get_contents.h -------------------------------------------------------------------------------- /agent/php_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_globals.c -------------------------------------------------------------------------------- /agent/php_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_globals.h -------------------------------------------------------------------------------- /agent/php_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_hash.c -------------------------------------------------------------------------------- /agent/php_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_hash.h -------------------------------------------------------------------------------- /agent/php_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_header.c -------------------------------------------------------------------------------- /agent/php_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_header.h -------------------------------------------------------------------------------- /agent/php_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_hooks.h -------------------------------------------------------------------------------- /agent/php_httprequest_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_httprequest_send.c -------------------------------------------------------------------------------- /agent/php_httprequest_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_httprequest_send.h -------------------------------------------------------------------------------- /agent/php_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_includes.h -------------------------------------------------------------------------------- /agent/php_internal_instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_internal_instrument.c -------------------------------------------------------------------------------- /agent/php_internal_instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_internal_instrument.h -------------------------------------------------------------------------------- /agent/php_memcached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_memcached.c -------------------------------------------------------------------------------- /agent/php_memcached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_memcached.h -------------------------------------------------------------------------------- /agent/php_minit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_minit.c -------------------------------------------------------------------------------- /agent/php_mshutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_mshutdown.c -------------------------------------------------------------------------------- /agent/php_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_mysql.c -------------------------------------------------------------------------------- /agent/php_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_mysql.h -------------------------------------------------------------------------------- /agent/php_mysql_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_mysql_private.h -------------------------------------------------------------------------------- /agent/php_mysqli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_mysqli.c -------------------------------------------------------------------------------- /agent/php_mysqli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_mysqli.h -------------------------------------------------------------------------------- /agent/php_mysqli_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_mysqli_private.h -------------------------------------------------------------------------------- /agent/php_newrelic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_newrelic.c -------------------------------------------------------------------------------- /agent/php_newrelic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_newrelic.h -------------------------------------------------------------------------------- /agent/php_nrini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_nrini.c -------------------------------------------------------------------------------- /agent/php_observer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_observer.c -------------------------------------------------------------------------------- /agent/php_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_observer.h -------------------------------------------------------------------------------- /agent/php_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_output.c -------------------------------------------------------------------------------- /agent/php_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_output.h -------------------------------------------------------------------------------- /agent/php_pdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pdo.c -------------------------------------------------------------------------------- /agent/php_pdo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pdo.h -------------------------------------------------------------------------------- /agent/php_pdo_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pdo_mysql.c -------------------------------------------------------------------------------- /agent/php_pdo_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pdo_mysql.h -------------------------------------------------------------------------------- /agent/php_pdo_pgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pdo_pgsql.c -------------------------------------------------------------------------------- /agent/php_pdo_pgsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pdo_pgsql.h -------------------------------------------------------------------------------- /agent/php_pdo_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pdo_private.h -------------------------------------------------------------------------------- /agent/php_pgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pgsql.c -------------------------------------------------------------------------------- /agent/php_pgsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pgsql.h -------------------------------------------------------------------------------- /agent/php_pgsql_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_pgsql_private.h -------------------------------------------------------------------------------- /agent/php_psr7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_psr7.c -------------------------------------------------------------------------------- /agent/php_psr7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_psr7.h -------------------------------------------------------------------------------- /agent/php_redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_redis.c -------------------------------------------------------------------------------- /agent/php_redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_redis.h -------------------------------------------------------------------------------- /agent/php_redis_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_redis_private.h -------------------------------------------------------------------------------- /agent/php_rinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_rinit.c -------------------------------------------------------------------------------- /agent/php_rshutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_rshutdown.c -------------------------------------------------------------------------------- /agent/php_samplers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_samplers.c -------------------------------------------------------------------------------- /agent/php_samplers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_samplers.h -------------------------------------------------------------------------------- /agent/php_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_stack.c -------------------------------------------------------------------------------- /agent/php_stacked_segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_stacked_segment.c -------------------------------------------------------------------------------- /agent/php_stacked_segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_stacked_segment.h -------------------------------------------------------------------------------- /agent/php_txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_txn.c -------------------------------------------------------------------------------- /agent/php_txn_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_txn_private.h -------------------------------------------------------------------------------- /agent/php_user_instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_user_instrument.c -------------------------------------------------------------------------------- /agent/php_user_instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_user_instrument.h -------------------------------------------------------------------------------- /agent/php_user_instrument_hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_user_instrument_hashmap.c -------------------------------------------------------------------------------- /agent/php_user_instrument_hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_user_instrument_hashmap.h -------------------------------------------------------------------------------- /agent/php_user_instrument_hashmap_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_user_instrument_hashmap_key.h -------------------------------------------------------------------------------- /agent/php_user_instrument_wraprec_hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_user_instrument_wraprec_hashmap.c -------------------------------------------------------------------------------- /agent/php_user_instrument_wraprec_hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_user_instrument_wraprec_hashmap.h -------------------------------------------------------------------------------- /agent/php_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_vm.c -------------------------------------------------------------------------------- /agent/php_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_vm.h -------------------------------------------------------------------------------- /agent/php_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_wrapper.c -------------------------------------------------------------------------------- /agent/php_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_wrapper.h -------------------------------------------------------------------------------- /agent/php_zval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/php_zval.h -------------------------------------------------------------------------------- /agent/scripts/init.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/init.alpine -------------------------------------------------------------------------------- /agent/scripts/init.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/init.common -------------------------------------------------------------------------------- /agent/scripts/init.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/init.darwin -------------------------------------------------------------------------------- /agent/scripts/init.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/init.debian -------------------------------------------------------------------------------- /agent/scripts/init.freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/init.freebsd -------------------------------------------------------------------------------- /agent/scripts/init.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/init.generic -------------------------------------------------------------------------------- /agent/scripts/init.rhel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/init.rhel -------------------------------------------------------------------------------- /agent/scripts/init.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/init.solaris -------------------------------------------------------------------------------- /agent/scripts/newrelic-daemon.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/newrelic-daemon.logrotate -------------------------------------------------------------------------------- /agent/scripts/newrelic-daemon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/newrelic-daemon.service -------------------------------------------------------------------------------- /agent/scripts/newrelic-php5.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/newrelic-php5.logrotate -------------------------------------------------------------------------------- /agent/scripts/newrelic.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/newrelic.cfg.template -------------------------------------------------------------------------------- /agent/scripts/newrelic.ini.private.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/newrelic.ini.private.template -------------------------------------------------------------------------------- /agent/scripts/newrelic.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/newrelic.ini.template -------------------------------------------------------------------------------- /agent/scripts/newrelic.sysconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/newrelic.sysconfig -------------------------------------------------------------------------------- /agent/scripts/newrelic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/scripts/newrelic.xml -------------------------------------------------------------------------------- /agent/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/.gitignore -------------------------------------------------------------------------------- /agent/tests/test_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_agent.c -------------------------------------------------------------------------------- /agent/tests/test_api_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_api_datastore.c -------------------------------------------------------------------------------- /agent/tests/test_api_distributed_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_api_distributed_trace.c -------------------------------------------------------------------------------- /agent/tests/test_api_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_api_internal.c -------------------------------------------------------------------------------- /agent/tests/test_api_metadata_dt_disabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_api_metadata_dt_disabled.c -------------------------------------------------------------------------------- /agent/tests/test_api_metadata_dt_enabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_api_metadata_dt_enabled.c -------------------------------------------------------------------------------- /agent/tests/test_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_call.c -------------------------------------------------------------------------------- /agent/tests/test_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_curl.c -------------------------------------------------------------------------------- /agent/tests/test_curl_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_curl_md.c -------------------------------------------------------------------------------- /agent/tests/test_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_datastore.c -------------------------------------------------------------------------------- /agent/tests/test_environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_environment.c -------------------------------------------------------------------------------- /agent/tests/test_fw_codeigniter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_fw_codeigniter.c -------------------------------------------------------------------------------- /agent/tests/test_fw_drupal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_fw_drupal.c -------------------------------------------------------------------------------- /agent/tests/test_fw_laravel_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_fw_laravel_queue.c -------------------------------------------------------------------------------- /agent/tests/test_fw_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_fw_support.c -------------------------------------------------------------------------------- /agent/tests/test_fw_wordpress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_fw_wordpress.c -------------------------------------------------------------------------------- /agent/tests/test_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_globals.c -------------------------------------------------------------------------------- /agent/tests/test_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_hash.c -------------------------------------------------------------------------------- /agent/tests/test_internal_instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_internal_instrument.c -------------------------------------------------------------------------------- /agent/tests/test_lib_aws_sdk_php.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_lib_aws_sdk_php.c -------------------------------------------------------------------------------- /agent/tests/test_lib_php_amqplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_lib_php_amqplib.c -------------------------------------------------------------------------------- /agent/tests/test_memcached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_memcached.c -------------------------------------------------------------------------------- /agent/tests/test_mongodb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_mongodb.c -------------------------------------------------------------------------------- /agent/tests/test_monolog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_monolog.c -------------------------------------------------------------------------------- /agent/tests/test_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_mysql.c -------------------------------------------------------------------------------- /agent/tests/test_mysqli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_mysqli.c -------------------------------------------------------------------------------- /agent/tests/test_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_output.c -------------------------------------------------------------------------------- /agent/tests/test_pdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_pdo.c -------------------------------------------------------------------------------- /agent/tests/test_pdo_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_pdo_mysql.c -------------------------------------------------------------------------------- /agent/tests/test_pdo_pgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_pdo_pgsql.c -------------------------------------------------------------------------------- /agent/tests/test_pgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_pgsql.c -------------------------------------------------------------------------------- /agent/tests/test_php_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_php_error.c -------------------------------------------------------------------------------- /agent/tests/test_php_execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_php_execute.c -------------------------------------------------------------------------------- /agent/tests/test_php_minit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_php_minit.c -------------------------------------------------------------------------------- /agent/tests/test_php_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_php_stack.c -------------------------------------------------------------------------------- /agent/tests/test_php_stacked_segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_php_stacked_segment.c -------------------------------------------------------------------------------- /agent/tests/test_php_txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_php_txn.c -------------------------------------------------------------------------------- /agent/tests/test_php_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_php_wrapper.c -------------------------------------------------------------------------------- /agent/tests/test_predis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_predis.c -------------------------------------------------------------------------------- /agent/tests/test_redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_redis.c -------------------------------------------------------------------------------- /agent/tests/test_txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_txn.c -------------------------------------------------------------------------------- /agent/tests/test_txn_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_txn_private.c -------------------------------------------------------------------------------- /agent/tests/test_user_instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_user_instrument.c -------------------------------------------------------------------------------- /agent/tests/test_user_instrument_hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_user_instrument_hashmap.c -------------------------------------------------------------------------------- /agent/tests/test_zval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/test_zval.c -------------------------------------------------------------------------------- /agent/tests/tlib_bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_bool.c -------------------------------------------------------------------------------- /agent/tests/tlib_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_datastore.c -------------------------------------------------------------------------------- /agent/tests/tlib_datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_datastore.h -------------------------------------------------------------------------------- /agent/tests/tlib_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_exec.c -------------------------------------------------------------------------------- /agent/tests/tlib_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_files.c -------------------------------------------------------------------------------- /agent/tests/tlib_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_main.c -------------------------------------------------------------------------------- /agent/tests/tlib_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_main.h -------------------------------------------------------------------------------- /agent/tests/tlib_php.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_php.c -------------------------------------------------------------------------------- /agent/tests/tlib_php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_php.h -------------------------------------------------------------------------------- /agent/tests/tlib_php_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/tlib_php_includes.h -------------------------------------------------------------------------------- /agent/tests/valgrind-suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/agent/tests/valgrind-suppressions -------------------------------------------------------------------------------- /axiom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/.gitignore -------------------------------------------------------------------------------- /axiom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/Makefile -------------------------------------------------------------------------------- /axiom/cmd_appinfo_transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/cmd_appinfo_transmit.c -------------------------------------------------------------------------------- /axiom/cmd_span_batch_transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/cmd_span_batch_transmit.c -------------------------------------------------------------------------------- /axiom/cmd_txndata_transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/cmd_txndata_transmit.c -------------------------------------------------------------------------------- /axiom/nr_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_agent.c -------------------------------------------------------------------------------- /axiom/nr_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_agent.h -------------------------------------------------------------------------------- /axiom/nr_analytics_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_analytics_events.c -------------------------------------------------------------------------------- /axiom/nr_analytics_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_analytics_events.h -------------------------------------------------------------------------------- /axiom/nr_analytics_events_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_analytics_events_private.h -------------------------------------------------------------------------------- /axiom/nr_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_app.c -------------------------------------------------------------------------------- /axiom/nr_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_app.h -------------------------------------------------------------------------------- /axiom/nr_app_harvest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_app_harvest.c -------------------------------------------------------------------------------- /axiom/nr_app_harvest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_app_harvest.h -------------------------------------------------------------------------------- /axiom/nr_app_harvest_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_app_harvest_private.h -------------------------------------------------------------------------------- /axiom/nr_app_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_app_private.h -------------------------------------------------------------------------------- /axiom/nr_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_attributes.c -------------------------------------------------------------------------------- /axiom/nr_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_attributes.h -------------------------------------------------------------------------------- /axiom/nr_attributes_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_attributes_private.h -------------------------------------------------------------------------------- /axiom/nr_axiom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_axiom.h -------------------------------------------------------------------------------- /axiom/nr_banner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_banner.c -------------------------------------------------------------------------------- /axiom/nr_banner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_banner.h -------------------------------------------------------------------------------- /axiom/nr_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_commands.h -------------------------------------------------------------------------------- /axiom/nr_commands_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_commands_private.h -------------------------------------------------------------------------------- /axiom/nr_configstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_configstrings.c -------------------------------------------------------------------------------- /axiom/nr_configstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_configstrings.h -------------------------------------------------------------------------------- /axiom/nr_custom_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_custom_events.c -------------------------------------------------------------------------------- /axiom/nr_custom_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_custom_events.h -------------------------------------------------------------------------------- /axiom/nr_daemon_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_daemon_spawn.c -------------------------------------------------------------------------------- /axiom/nr_daemon_spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_daemon_spawn.h -------------------------------------------------------------------------------- /axiom/nr_daemon_spawn_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_daemon_spawn_private.h -------------------------------------------------------------------------------- /axiom/nr_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_datastore.c -------------------------------------------------------------------------------- /axiom/nr_datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_datastore.h -------------------------------------------------------------------------------- /axiom/nr_datastore_instance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_datastore_instance.c -------------------------------------------------------------------------------- /axiom/nr_datastore_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_datastore_instance.h -------------------------------------------------------------------------------- /axiom/nr_datastore_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_datastore_private.h -------------------------------------------------------------------------------- /axiom/nr_distributed_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_distributed_trace.c -------------------------------------------------------------------------------- /axiom/nr_distributed_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_distributed_trace.h -------------------------------------------------------------------------------- /axiom/nr_distributed_trace_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_distributed_trace_private.h -------------------------------------------------------------------------------- /axiom/nr_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_errors.c -------------------------------------------------------------------------------- /axiom/nr_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_errors.h -------------------------------------------------------------------------------- /axiom/nr_errors_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_errors_private.h -------------------------------------------------------------------------------- /axiom/nr_exclusive_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_exclusive_time.c -------------------------------------------------------------------------------- /axiom/nr_exclusive_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_exclusive_time.h -------------------------------------------------------------------------------- /axiom/nr_exclusive_time_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_exclusive_time_private.h -------------------------------------------------------------------------------- /axiom/nr_explain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_explain.c -------------------------------------------------------------------------------- /axiom/nr_explain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_explain.h -------------------------------------------------------------------------------- /axiom/nr_explain_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_explain_private.h -------------------------------------------------------------------------------- /axiom/nr_file_naming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_file_naming.c -------------------------------------------------------------------------------- /axiom/nr_file_naming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_file_naming.h -------------------------------------------------------------------------------- /axiom/nr_file_naming_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_file_naming_private.h -------------------------------------------------------------------------------- /axiom/nr_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_guid.c -------------------------------------------------------------------------------- /axiom/nr_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_guid.h -------------------------------------------------------------------------------- /axiom/nr_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_header.c -------------------------------------------------------------------------------- /axiom/nr_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_header.h -------------------------------------------------------------------------------- /axiom/nr_header_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_header_private.h -------------------------------------------------------------------------------- /axiom/nr_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_limits.h -------------------------------------------------------------------------------- /axiom/nr_log_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_log_event.c -------------------------------------------------------------------------------- /axiom/nr_log_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_log_event.h -------------------------------------------------------------------------------- /axiom/nr_log_event_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_log_event_private.h -------------------------------------------------------------------------------- /axiom/nr_log_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_log_events.c -------------------------------------------------------------------------------- /axiom/nr_log_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_log_events.h -------------------------------------------------------------------------------- /axiom/nr_log_level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_log_level.c -------------------------------------------------------------------------------- /axiom/nr_log_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_log_level.h -------------------------------------------------------------------------------- /axiom/nr_mysqli_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_mysqli_metadata.c -------------------------------------------------------------------------------- /axiom/nr_mysqli_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_mysqli_metadata.h -------------------------------------------------------------------------------- /axiom/nr_mysqli_metadata_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_mysqli_metadata_private.h -------------------------------------------------------------------------------- /axiom/nr_php_packages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_php_packages.c -------------------------------------------------------------------------------- /axiom/nr_php_packages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_php_packages.h -------------------------------------------------------------------------------- /axiom/nr_postgres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_postgres.c -------------------------------------------------------------------------------- /axiom/nr_postgres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_postgres.h -------------------------------------------------------------------------------- /axiom/nr_postgres_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_postgres_private.h -------------------------------------------------------------------------------- /axiom/nr_rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_rules.c -------------------------------------------------------------------------------- /axiom/nr_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_rules.h -------------------------------------------------------------------------------- /axiom/nr_rules_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_rules_private.h -------------------------------------------------------------------------------- /axiom/nr_rum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_rum.c -------------------------------------------------------------------------------- /axiom/nr_rum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_rum.h -------------------------------------------------------------------------------- /axiom/nr_rum_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_rum_private.h -------------------------------------------------------------------------------- /axiom/nr_segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment.c -------------------------------------------------------------------------------- /axiom/nr_segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment.h -------------------------------------------------------------------------------- /axiom/nr_segment_children.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_children.c -------------------------------------------------------------------------------- /axiom/nr_segment_children.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_children.h -------------------------------------------------------------------------------- /axiom/nr_segment_children_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_children_private.h -------------------------------------------------------------------------------- /axiom/nr_segment_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_datastore.c -------------------------------------------------------------------------------- /axiom/nr_segment_datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_datastore.h -------------------------------------------------------------------------------- /axiom/nr_segment_datastore_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_datastore_private.h -------------------------------------------------------------------------------- /axiom/nr_segment_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_external.c -------------------------------------------------------------------------------- /axiom/nr_segment_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_external.h -------------------------------------------------------------------------------- /axiom/nr_segment_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_message.c -------------------------------------------------------------------------------- /axiom/nr_segment_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_message.h -------------------------------------------------------------------------------- /axiom/nr_segment_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_private.c -------------------------------------------------------------------------------- /axiom/nr_segment_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_private.h -------------------------------------------------------------------------------- /axiom/nr_segment_terms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_terms.c -------------------------------------------------------------------------------- /axiom/nr_segment_terms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_terms.h -------------------------------------------------------------------------------- /axiom/nr_segment_terms_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_terms_private.h -------------------------------------------------------------------------------- /axiom/nr_segment_traces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_traces.c -------------------------------------------------------------------------------- /axiom/nr_segment_traces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_traces.h -------------------------------------------------------------------------------- /axiom/nr_segment_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_tree.c -------------------------------------------------------------------------------- /axiom/nr_segment_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_segment_tree.h -------------------------------------------------------------------------------- /axiom/nr_slowsqls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_slowsqls.c -------------------------------------------------------------------------------- /axiom/nr_slowsqls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_slowsqls.h -------------------------------------------------------------------------------- /axiom/nr_span_encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_encoding.c -------------------------------------------------------------------------------- /axiom/nr_span_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_encoding.h -------------------------------------------------------------------------------- /axiom/nr_span_encoding_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_encoding_private.h -------------------------------------------------------------------------------- /axiom/nr_span_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_event.c -------------------------------------------------------------------------------- /axiom/nr_span_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_event.h -------------------------------------------------------------------------------- /axiom/nr_span_event_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_event_private.h -------------------------------------------------------------------------------- /axiom/nr_span_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_queue.c -------------------------------------------------------------------------------- /axiom/nr_span_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_queue.h -------------------------------------------------------------------------------- /axiom/nr_span_queue_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_span_queue_private.h -------------------------------------------------------------------------------- /axiom/nr_synthetics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_synthetics.c -------------------------------------------------------------------------------- /axiom/nr_synthetics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_synthetics.h -------------------------------------------------------------------------------- /axiom/nr_synthetics_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_synthetics_private.h -------------------------------------------------------------------------------- /axiom/nr_txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_txn.c -------------------------------------------------------------------------------- /axiom/nr_txn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_txn.h -------------------------------------------------------------------------------- /axiom/nr_txn_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_txn_private.h -------------------------------------------------------------------------------- /axiom/nr_utilization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_utilization.h -------------------------------------------------------------------------------- /axiom/nr_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_version.c -------------------------------------------------------------------------------- /axiom/nr_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/nr_version.h -------------------------------------------------------------------------------- /axiom/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/.gitignore -------------------------------------------------------------------------------- /axiom/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/Makefile -------------------------------------------------------------------------------- /axiom/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/README.md -------------------------------------------------------------------------------- /axiom/tests/cross_agent_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/cross_agent_tests/README.md -------------------------------------------------------------------------------- /axiom/tests/cross_agent_tests/cat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/cross_agent_tests/cat/README.md -------------------------------------------------------------------------------- /axiom/tests/cross_agent_tests/docker_container_id/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /axiom/tests/cross_agent_tests/docker_container_id_v2/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /axiom/tests/cross_agent_tests/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/cross_agent_tests/labels.json -------------------------------------------------------------------------------- /axiom/tests/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt: -------------------------------------------------------------------------------- 1 | select * from blogs where title = E'\x08\x0c\n\r\t' 2 | -------------------------------------------------------------------------------- /axiom/tests/cross_agent_tests/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/cross_agent_tests/rules.json -------------------------------------------------------------------------------- /axiom/tests/cross_agent_tests/url_clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/cross_agent_tests/url_clean.json -------------------------------------------------------------------------------- /axiom/tests/mock_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/mock_agent.c -------------------------------------------------------------------------------- /axiom/tests/reference/test_daemon.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/reference/test_daemon.cmp -------------------------------------------------------------------------------- /axiom/tests/reference/test_logging_1.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/reference/test_logging_1.cmp -------------------------------------------------------------------------------- /axiom/tests/reference/test_logging_2.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/reference/test_logging_2.cmp -------------------------------------------------------------------------------- /axiom/tests/reference/test_logging_3.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/reference/test_logging_3.cmp -------------------------------------------------------------------------------- /axiom/tests/reference/test_vlog.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/reference/test_vlog.cmp -------------------------------------------------------------------------------- /axiom/tests/test_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_agent.c -------------------------------------------------------------------------------- /axiom/tests/test_analytics_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_analytics_events.c -------------------------------------------------------------------------------- /axiom/tests/test_apdex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_apdex.c -------------------------------------------------------------------------------- /axiom/tests/test_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_app.c -------------------------------------------------------------------------------- /axiom/tests/test_app_harvest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_app_harvest.c -------------------------------------------------------------------------------- /axiom/tests/test_app_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_app_helpers.h -------------------------------------------------------------------------------- /axiom/tests/test_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_attributes.c -------------------------------------------------------------------------------- /axiom/tests/test_base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_base64.c -------------------------------------------------------------------------------- /axiom/tests/test_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_buffer.c -------------------------------------------------------------------------------- /axiom/tests/test_cmd_appinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_cmd_appinfo.c -------------------------------------------------------------------------------- /axiom/tests/test_cmd_span_batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_cmd_span_batch.c -------------------------------------------------------------------------------- /axiom/tests/test_cmd_txndata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_cmd_txndata.c -------------------------------------------------------------------------------- /axiom/tests/test_configstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_configstrings.c -------------------------------------------------------------------------------- /axiom/tests/test_custom_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_custom_events.c -------------------------------------------------------------------------------- /axiom/tests/test_daemon_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_daemon_spawn.c -------------------------------------------------------------------------------- /axiom/tests/test_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_datastore.c -------------------------------------------------------------------------------- /axiom/tests/test_datastore_instance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_datastore_instance.c -------------------------------------------------------------------------------- /axiom/tests/test_distributed_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_distributed_trace.c -------------------------------------------------------------------------------- /axiom/tests/test_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_errors.c -------------------------------------------------------------------------------- /axiom/tests/test_exclusive_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_exclusive_time.c -------------------------------------------------------------------------------- /axiom/tests/test_explain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_explain.c -------------------------------------------------------------------------------- /axiom/tests/test_file_naming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_file_naming.c -------------------------------------------------------------------------------- /axiom/tests/test_flatbuffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_flatbuffers.c -------------------------------------------------------------------------------- /axiom/tests/test_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_guid.c -------------------------------------------------------------------------------- /axiom/tests/test_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_hash.c -------------------------------------------------------------------------------- /axiom/tests/test_hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_hashmap.c -------------------------------------------------------------------------------- /axiom/tests/test_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_header.c -------------------------------------------------------------------------------- /axiom/tests/test_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_json.c -------------------------------------------------------------------------------- /axiom/tests/test_labels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_labels.c -------------------------------------------------------------------------------- /axiom/tests/test_log_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_log_event.c -------------------------------------------------------------------------------- /axiom/tests/test_log_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_log_events.c -------------------------------------------------------------------------------- /axiom/tests/test_log_level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_log_level.c -------------------------------------------------------------------------------- /axiom/tests/test_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_logging.c -------------------------------------------------------------------------------- /axiom/tests/test_matcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_matcher.c -------------------------------------------------------------------------------- /axiom/tests/test_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_math.c -------------------------------------------------------------------------------- /axiom/tests/test_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_memory.c -------------------------------------------------------------------------------- /axiom/tests/test_metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_metrics.c -------------------------------------------------------------------------------- /axiom/tests/test_minmax_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_minmax_heap.c -------------------------------------------------------------------------------- /axiom/tests/test_mysqli_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_mysqli_metadata.c -------------------------------------------------------------------------------- /axiom/tests/test_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_network.c -------------------------------------------------------------------------------- /axiom/tests/test_number_converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_number_converter.c -------------------------------------------------------------------------------- /axiom/tests/test_obfuscate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_obfuscate.c -------------------------------------------------------------------------------- /axiom/tests/test_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_object.c -------------------------------------------------------------------------------- /axiom/tests/test_php_packages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_php_packages.c -------------------------------------------------------------------------------- /axiom/tests/test_postgres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_postgres.c -------------------------------------------------------------------------------- /axiom/tests/test_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_random.c -------------------------------------------------------------------------------- /axiom/tests/test_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_regex.c -------------------------------------------------------------------------------- /axiom/tests/test_reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_reply.c -------------------------------------------------------------------------------- /axiom/tests/test_rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_rules.c -------------------------------------------------------------------------------- /axiom/tests/test_rum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_rum.c -------------------------------------------------------------------------------- /axiom/tests/test_sampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_sampling.c -------------------------------------------------------------------------------- /axiom/tests/test_segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment.c -------------------------------------------------------------------------------- /axiom/tests/test_segment_children.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_children.c -------------------------------------------------------------------------------- /axiom/tests/test_segment_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_datastore.c -------------------------------------------------------------------------------- /axiom/tests/test_segment_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_external.c -------------------------------------------------------------------------------- /axiom/tests/test_segment_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_helpers.h -------------------------------------------------------------------------------- /axiom/tests/test_segment_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_message.c -------------------------------------------------------------------------------- /axiom/tests/test_segment_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_private.c -------------------------------------------------------------------------------- /axiom/tests/test_segment_terms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_terms.c -------------------------------------------------------------------------------- /axiom/tests/test_segment_traces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_traces.c -------------------------------------------------------------------------------- /axiom/tests/test_segment_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_segment_tree.c -------------------------------------------------------------------------------- /axiom/tests/test_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_serialize.c -------------------------------------------------------------------------------- /axiom/tests/test_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_set.c -------------------------------------------------------------------------------- /axiom/tests/test_signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_signals.c -------------------------------------------------------------------------------- /axiom/tests/test_slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_slab.c -------------------------------------------------------------------------------- /axiom/tests/test_slowsqls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_slowsqls.c -------------------------------------------------------------------------------- /axiom/tests/test_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_sort.c -------------------------------------------------------------------------------- /axiom/tests/test_span_encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_span_encoding.c -------------------------------------------------------------------------------- /axiom/tests/test_span_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_span_event.c -------------------------------------------------------------------------------- /axiom/tests/test_span_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_span_queue.c -------------------------------------------------------------------------------- /axiom/tests/test_sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_sql.c -------------------------------------------------------------------------------- /axiom/tests/test_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_stack.c -------------------------------------------------------------------------------- /axiom/tests/test_string_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_string_pool.c -------------------------------------------------------------------------------- /axiom/tests/test_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_strings.c -------------------------------------------------------------------------------- /axiom/tests/test_synthetics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_synthetics.c -------------------------------------------------------------------------------- /axiom/tests/test_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_system.c -------------------------------------------------------------------------------- /axiom/tests/test_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_text.c -------------------------------------------------------------------------------- /axiom/tests/test_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_threads.c -------------------------------------------------------------------------------- /axiom/tests/test_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_time.c -------------------------------------------------------------------------------- /axiom/tests/test_txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_txn.c -------------------------------------------------------------------------------- /axiom/tests/test_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_url.c -------------------------------------------------------------------------------- /axiom/tests/test_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/test_vector.c -------------------------------------------------------------------------------- /axiom/tests/tlib_bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/tlib_bool.c -------------------------------------------------------------------------------- /axiom/tests/tlib_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/tlib_exec.c -------------------------------------------------------------------------------- /axiom/tests/tlib_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/tlib_files.c -------------------------------------------------------------------------------- /axiom/tests/tlib_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/tlib_main.c -------------------------------------------------------------------------------- /axiom/tests/tlib_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/tlib_main.h -------------------------------------------------------------------------------- /axiom/tests/valgrind-suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/tests/valgrind-suppressions -------------------------------------------------------------------------------- /axiom/util_apdex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_apdex.c -------------------------------------------------------------------------------- /axiom/util_apdex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_apdex.h -------------------------------------------------------------------------------- /axiom/util_base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_base64.c -------------------------------------------------------------------------------- /axiom/util_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_base64.h -------------------------------------------------------------------------------- /axiom/util_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_buffer.c -------------------------------------------------------------------------------- /axiom/util_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_buffer.h -------------------------------------------------------------------------------- /axiom/util_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_cpu.c -------------------------------------------------------------------------------- /axiom/util_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_cpu.h -------------------------------------------------------------------------------- /axiom/util_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_errno.c -------------------------------------------------------------------------------- /axiom/util_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_errno.h -------------------------------------------------------------------------------- /axiom/util_flatbuffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_flatbuffers.c -------------------------------------------------------------------------------- /axiom/util_flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_flatbuffers.h -------------------------------------------------------------------------------- /axiom/util_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_hash.c -------------------------------------------------------------------------------- /axiom/util_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_hash.h -------------------------------------------------------------------------------- /axiom/util_hash_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_hash_private.h -------------------------------------------------------------------------------- /axiom/util_hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_hashmap.c -------------------------------------------------------------------------------- /axiom/util_hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_hashmap.h -------------------------------------------------------------------------------- /axiom/util_hashmap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_hashmap_private.h -------------------------------------------------------------------------------- /axiom/util_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_json.c -------------------------------------------------------------------------------- /axiom/util_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_json.h -------------------------------------------------------------------------------- /axiom/util_labels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_labels.c -------------------------------------------------------------------------------- /axiom/util_labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_labels.h -------------------------------------------------------------------------------- /axiom/util_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_logging.c -------------------------------------------------------------------------------- /axiom/util_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_logging.h -------------------------------------------------------------------------------- /axiom/util_logging_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_logging_private.h -------------------------------------------------------------------------------- /axiom/util_matcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_matcher.c -------------------------------------------------------------------------------- /axiom/util_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_matcher.h -------------------------------------------------------------------------------- /axiom/util_matcher_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_matcher_private.h -------------------------------------------------------------------------------- /axiom/util_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_math.h -------------------------------------------------------------------------------- /axiom/util_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_md5.c -------------------------------------------------------------------------------- /axiom/util_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_md5.h -------------------------------------------------------------------------------- /axiom/util_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_memory.c -------------------------------------------------------------------------------- /axiom/util_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_memory.h -------------------------------------------------------------------------------- /axiom/util_metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_metrics.c -------------------------------------------------------------------------------- /axiom/util_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_metrics.h -------------------------------------------------------------------------------- /axiom/util_metrics_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_metrics_private.h -------------------------------------------------------------------------------- /axiom/util_minmax_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_minmax_heap.c -------------------------------------------------------------------------------- /axiom/util_minmax_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_minmax_heap.h -------------------------------------------------------------------------------- /axiom/util_minmax_heap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_minmax_heap_private.h -------------------------------------------------------------------------------- /axiom/util_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_network.c -------------------------------------------------------------------------------- /axiom/util_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_network.h -------------------------------------------------------------------------------- /axiom/util_number_converter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_number_converter.c -------------------------------------------------------------------------------- /axiom/util_number_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_number_converter.h -------------------------------------------------------------------------------- /axiom/util_obfuscate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_obfuscate.c -------------------------------------------------------------------------------- /axiom/util_obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_obfuscate.h -------------------------------------------------------------------------------- /axiom/util_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_object.c -------------------------------------------------------------------------------- /axiom/util_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_object.h -------------------------------------------------------------------------------- /axiom/util_object_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_object_private.h -------------------------------------------------------------------------------- /axiom/util_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_random.c -------------------------------------------------------------------------------- /axiom/util_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_random.h -------------------------------------------------------------------------------- /axiom/util_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_regex.c -------------------------------------------------------------------------------- /axiom/util_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_regex.h -------------------------------------------------------------------------------- /axiom/util_regex_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_regex_private.h -------------------------------------------------------------------------------- /axiom/util_reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_reply.c -------------------------------------------------------------------------------- /axiom/util_reply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_reply.h -------------------------------------------------------------------------------- /axiom/util_sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_sampling.h -------------------------------------------------------------------------------- /axiom/util_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_serialize.c -------------------------------------------------------------------------------- /axiom/util_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_serialize.h -------------------------------------------------------------------------------- /axiom/util_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_set.c -------------------------------------------------------------------------------- /axiom/util_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_set.h -------------------------------------------------------------------------------- /axiom/util_set_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_set_private.h -------------------------------------------------------------------------------- /axiom/util_signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_signals.c -------------------------------------------------------------------------------- /axiom/util_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_signals.h -------------------------------------------------------------------------------- /axiom/util_slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_slab.c -------------------------------------------------------------------------------- /axiom/util_slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_slab.h -------------------------------------------------------------------------------- /axiom/util_slab_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_slab_private.h -------------------------------------------------------------------------------- /axiom/util_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_sleep.c -------------------------------------------------------------------------------- /axiom/util_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_sleep.h -------------------------------------------------------------------------------- /axiom/util_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_sort.c -------------------------------------------------------------------------------- /axiom/util_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_sort.h -------------------------------------------------------------------------------- /axiom/util_sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_sql.c -------------------------------------------------------------------------------- /axiom/util_sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_sql.h -------------------------------------------------------------------------------- /axiom/util_sql_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_sql_private.h -------------------------------------------------------------------------------- /axiom/util_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_stack.c -------------------------------------------------------------------------------- /axiom/util_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_stack.h -------------------------------------------------------------------------------- /axiom/util_string_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_string_pool.c -------------------------------------------------------------------------------- /axiom/util_string_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_string_pool.h -------------------------------------------------------------------------------- /axiom/util_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_strings.c -------------------------------------------------------------------------------- /axiom/util_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_strings.h -------------------------------------------------------------------------------- /axiom/util_strings_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_strings_bsd.c -------------------------------------------------------------------------------- /axiom/util_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_syscalls.c -------------------------------------------------------------------------------- /axiom/util_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_syscalls.h -------------------------------------------------------------------------------- /axiom/util_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_system.c -------------------------------------------------------------------------------- /axiom/util_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_system.h -------------------------------------------------------------------------------- /axiom/util_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_text.c -------------------------------------------------------------------------------- /axiom/util_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_text.h -------------------------------------------------------------------------------- /axiom/util_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_threads.c -------------------------------------------------------------------------------- /axiom/util_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_threads.h -------------------------------------------------------------------------------- /axiom/util_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_time.h -------------------------------------------------------------------------------- /axiom/util_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_url.c -------------------------------------------------------------------------------- /axiom/util_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_url.h -------------------------------------------------------------------------------- /axiom/util_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_vector.c -------------------------------------------------------------------------------- /axiom/util_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_vector.h -------------------------------------------------------------------------------- /axiom/util_vector_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/util_vector_private.h -------------------------------------------------------------------------------- /axiom/v1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/v1.proto -------------------------------------------------------------------------------- /axiom/vendor/bsd/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/vendor/bsd/sys/cdefs.h -------------------------------------------------------------------------------- /axiom/vendor/bsd/sys/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/axiom/vendor/bsd/sys/tree.h -------------------------------------------------------------------------------- /cla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/cla.md -------------------------------------------------------------------------------- /daemon/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /daemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/Makefile -------------------------------------------------------------------------------- /daemon/cmd/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/client/main.go -------------------------------------------------------------------------------- /daemon/cmd/daemon/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/daemon/flags_test.go -------------------------------------------------------------------------------- /daemon/cmd/daemon/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/daemon/main.go -------------------------------------------------------------------------------- /daemon/cmd/daemon/progenitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/daemon/progenitor.go -------------------------------------------------------------------------------- /daemon/cmd/daemon/rlimit_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/daemon/rlimit_unix.go -------------------------------------------------------------------------------- /daemon/cmd/daemon/signal/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/daemon/signal/signal.go -------------------------------------------------------------------------------- /daemon/cmd/daemon/signal/signal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/daemon/signal/signal_test.go -------------------------------------------------------------------------------- /daemon/cmd/daemon/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/daemon/watcher.go -------------------------------------------------------------------------------- /daemon/cmd/daemon/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/daemon/worker.go -------------------------------------------------------------------------------- /daemon/cmd/integration_runner/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/integration_runner/flags.go -------------------------------------------------------------------------------- /daemon/cmd/integration_runner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/integration_runner/main.go -------------------------------------------------------------------------------- /daemon/cmd/integration_runner/reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/integration_runner/reports.go -------------------------------------------------------------------------------- /daemon/cmd/integration_runner/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/integration_runner/strings.go -------------------------------------------------------------------------------- /daemon/cmd/integration_runner/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/integration_runner/strings_test.go -------------------------------------------------------------------------------- /daemon/cmd/stressor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/stressor/main.go -------------------------------------------------------------------------------- /daemon/cmd/stressor/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/cmd/stressor/stats.go -------------------------------------------------------------------------------- /daemon/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/go.mod -------------------------------------------------------------------------------- /daemon/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/go.sum -------------------------------------------------------------------------------- /daemon/internal/flatbuffersdata/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/flatbuffersdata/data.go -------------------------------------------------------------------------------- /daemon/internal/flatbuffersdata/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/flatbuffersdata/data_test.go -------------------------------------------------------------------------------- /daemon/internal/flatbuffersdata/samples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/flatbuffersdata/samples.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/analytics_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/analytics_events.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/app.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/app_harvest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/app_harvest.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/app_harvest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/app_harvest_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/app_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/client.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/collector/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/collector/certs.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/collector/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/collector/client.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/commands.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/config/config.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/config/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/config/timeout.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/config/unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/config/unmarshal.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/custom_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/custom_events.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/error_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/error_events.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/errors.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/errors_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/harvest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/harvest.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/harvest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/harvest_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/harvest_trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/harvest_trigger.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/integration/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/integration/match.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/integration/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/integration/parse.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/integration/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/integration/test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/integration/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/integration/util.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/json_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/json_string.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/jsonx/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/jsonx/encode.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/jsonx/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/jsonx/encode_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/lasp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/lasp.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/lasp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/lasp_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/limits/limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/limits/limits.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/listener.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/listener_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/listener_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/log/log.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/log/log_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/log_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/log_events.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/log_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/log_events_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/metric_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/metric_rules.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/metric_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/metric_rules_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/metrics.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/metrics_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/php_packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/php_packages.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/php_packages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/php_packages_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/pidfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/pidfile.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/processor.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/processor_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/App.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/App.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/AppReply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/AppReply.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/Error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/Error.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/Event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/Event.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/Message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/Message.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/Metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/Metric.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/SlowSQL.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/SlowSQL.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/Trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/Trace.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/protocol/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/protocol/encode.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/sampling.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/sampling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/sampling_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/secrets/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/secrets/secrets.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/slow_sqls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/slow_sqls.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/slow_sqls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/slow_sqls_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/span_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/span_events.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/sysinfo/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/sysinfo/errors.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/sysinfo/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/sysinfo/sys_linux.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/txn_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/txn_events.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/txn_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/txn_events_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/txn_traces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/txn_traces.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/txn_traces_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/txn_traces_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/utilization/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/utilization/aws.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/utilization/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/utilization/azure.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/utilization/fqdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/utilization/fqdn.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/utilization/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/utilization/gcp.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/utilization/pcf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/utilization/pcf.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/utils.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/utils_test.go -------------------------------------------------------------------------------- /daemon/internal/newrelic/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/daemon/internal/newrelic/version/version.go -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/codecov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/docs/codecov.md -------------------------------------------------------------------------------- /docs/dev_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/docs/dev_environment.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/img/PHP_Agent_Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/docs/img/PHP_Agent_Architecture.png -------------------------------------------------------------------------------- /docs/img/Phpinfo_Example_Summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/docs/img/Phpinfo_Example_Summary.png -------------------------------------------------------------------------------- /docs/img/Phpinfo_Example_Transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/docs/img/Phpinfo_Example_Transaction.png -------------------------------------------------------------------------------- /docs/img/codecov-pr-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/docs/img/codecov-pr-comment.png -------------------------------------------------------------------------------- /files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/files/Dockerfile -------------------------------------------------------------------------------- /files/set_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/files/set_path.sh -------------------------------------------------------------------------------- /make/backtrace_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/backtrace_test.c -------------------------------------------------------------------------------- /make/check_valgrind_output.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/check_valgrind_output.awk -------------------------------------------------------------------------------- /make/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/config.mk -------------------------------------------------------------------------------- /make/detect-linux-libc.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/detect-linux-libc.env -------------------------------------------------------------------------------- /make/php_versions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/php_versions.mk -------------------------------------------------------------------------------- /make/pthread_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/pthread_test.c -------------------------------------------------------------------------------- /make/reallocarray_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/reallocarray_test.c -------------------------------------------------------------------------------- /make/release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/release.mk -------------------------------------------------------------------------------- /make/vendor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/vendor.mk -------------------------------------------------------------------------------- /make/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/make/version.mk -------------------------------------------------------------------------------- /protocol/flatbuffers/protocol.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/protocol/flatbuffers/protocol.fbs -------------------------------------------------------------------------------- /protocol/infinite_tracing/v1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/protocol/infinite_tracing/v1.proto -------------------------------------------------------------------------------- /suppressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/suppressions/README.md -------------------------------------------------------------------------------- /suppressions/agent.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/suppressions/agent.supp -------------------------------------------------------------------------------- /suppressions/axiom.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/suppressions/axiom.supp -------------------------------------------------------------------------------- /suppressions/darwin-extra.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/suppressions/darwin-extra.supp -------------------------------------------------------------------------------- /suppressions/darwin15.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/suppressions/darwin15.supp -------------------------------------------------------------------------------- /suppressions/php53.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/suppressions/php53.supp -------------------------------------------------------------------------------- /tests/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/.gitignore -------------------------------------------------------------------------------- /tests/include/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/config.php -------------------------------------------------------------------------------- /tests/include/drupal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/drupal.php -------------------------------------------------------------------------------- /tests/include/guzzle.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/guzzle.tar.bz2 -------------------------------------------------------------------------------- /tests/include/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/helpers.php -------------------------------------------------------------------------------- /tests/include/integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/integration.php -------------------------------------------------------------------------------- /tests/include/newrelic-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/newrelic-integration/README.md -------------------------------------------------------------------------------- /tests/include/newrelic-integration/sami.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/newrelic-integration/sami.php -------------------------------------------------------------------------------- /tests/include/polyfill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/polyfill.php -------------------------------------------------------------------------------- /tests/include/tap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/tap.php -------------------------------------------------------------------------------- /tests/include/tracing_endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/tracing_endpoint.php -------------------------------------------------------------------------------- /tests/include/unpack_guzzle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/include/unpack_guzzle.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_footer_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_footer_1.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_footer_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_footer_2.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_footer_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_footer_3.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_footer_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_footer_4.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_footer_5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_footer_5.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_header_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_header_1.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_header_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_header_2.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_header_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_header_3.php -------------------------------------------------------------------------------- /tests/integration/api/rum/test_header_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/api/rum/test_header_4.php -------------------------------------------------------------------------------- /tests/integration/attributes/test_enabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/attributes/test_enabled.php -------------------------------------------------------------------------------- /tests/integration/basic/test_dl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/basic/test_dl.php -------------------------------------------------------------------------------- /tests/integration/errors/test_E_NOTICE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/errors/test_E_NOTICE.php -------------------------------------------------------------------------------- /tests/integration/errors/test_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/errors/test_exception.php -------------------------------------------------------------------------------- /tests/integration/events/test_empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/events/test_empty.php -------------------------------------------------------------------------------- /tests/integration/external/drupal6/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/external/drupal6/skipif.inc -------------------------------------------------------------------------------- /tests/integration/external/drupal7/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/external/drupal7/skipif.inc -------------------------------------------------------------------------------- /tests/integration/external/guzzle5/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/external/guzzle5/skipif.inc -------------------------------------------------------------------------------- /tests/integration/external/guzzle6/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/external/guzzle6/skipif.inc -------------------------------------------------------------------------------- /tests/integration/external/guzzle7/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/external/guzzle7/skipif.inc -------------------------------------------------------------------------------- /tests/integration/ini/dummy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/ini/dummy.inc -------------------------------------------------------------------------------- /tests/integration/ini/test_ini_001.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/ini/test_ini_001.php -------------------------------------------------------------------------------- /tests/integration/ini/test_ini_002.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/ini/test_ini_002.php -------------------------------------------------------------------------------- /tests/integration/ini/test_ini_003.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/ini/test_ini_003.php -------------------------------------------------------------------------------- /tests/integration/ini/test_ini_004.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/ini/test_ini_004.php -------------------------------------------------------------------------------- /tests/integration/jit/function/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/jit/function/skipif.inc -------------------------------------------------------------------------------- /tests/integration/jit/tracing/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/jit/tracing/skipif.inc -------------------------------------------------------------------------------- /tests/integration/lang/test_attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/lang/test_attributes.php -------------------------------------------------------------------------------- /tests/integration/lang/test_generator_8.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/lang/test_generator_8.0.php -------------------------------------------------------------------------------- /tests/integration/memcache/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcache/skipif.inc -------------------------------------------------------------------------------- /tests/integration/memcache/test_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcache/test_add.php -------------------------------------------------------------------------------- /tests/integration/memcache/test_add.php82.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcache/test_add.php82.php -------------------------------------------------------------------------------- /tests/integration/memcache/test_incr_decr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcache/test_incr_decr.php -------------------------------------------------------------------------------- /tests/integration/memcache/test_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcache/test_replace.php -------------------------------------------------------------------------------- /tests/integration/memcache/test_set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcache/test_set.php -------------------------------------------------------------------------------- /tests/integration/memcache/test_set.php82.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcache/test_set.php82.php -------------------------------------------------------------------------------- /tests/integration/memcached/memcache.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcached/memcache.inc -------------------------------------------------------------------------------- /tests/integration/memcached/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcached/skipif.inc -------------------------------------------------------------------------------- /tests/integration/memcached/test_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcached/test_basic.php -------------------------------------------------------------------------------- /tests/integration/memcached/test_by_key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcached/test_by_key.php -------------------------------------------------------------------------------- /tests/integration/memcached/test_cas.php7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcached/test_cas.php7.php -------------------------------------------------------------------------------- /tests/integration/memcached/test_concat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcached/test_concat.php -------------------------------------------------------------------------------- /tests/integration/memcached/test_multi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcached/test_multi.php -------------------------------------------------------------------------------- /tests/integration/memcached/test_socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/memcached/test_socket.php -------------------------------------------------------------------------------- /tests/integration/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysql/README.md -------------------------------------------------------------------------------- /tests/integration/mysql/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysql/skipif.inc -------------------------------------------------------------------------------- /tests/integration/mysql/test_db_query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysql/test_db_query.php -------------------------------------------------------------------------------- /tests/integration/mysql/test_query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysql/test_query.php -------------------------------------------------------------------------------- /tests/integration/mysql/test_query_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysql/test_query_error.php -------------------------------------------------------------------------------- /tests/integration/mysqli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/README.md -------------------------------------------------------------------------------- /tests/integration/mysqli/mysqli.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/mysqli.inc -------------------------------------------------------------------------------- /tests/integration/mysqli/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/skipif.inc -------------------------------------------------------------------------------- /tests/integration/mysqli/test_ignore_txn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/test_ignore_txn.php -------------------------------------------------------------------------------- /tests/integration/mysqli/test_null_rc_oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/test_null_rc_oo.php -------------------------------------------------------------------------------- /tests/integration/mysqli/test_prepare_oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/test_prepare_oo.php -------------------------------------------------------------------------------- /tests/integration/mysqli/test_query_oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/test_query_oo.php -------------------------------------------------------------------------------- /tests/integration/mysqli/test_query_proc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/test_query_proc.php -------------------------------------------------------------------------------- /tests/integration/mysqli/test_subclassing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/mysqli/test_subclassing.php -------------------------------------------------------------------------------- /tests/integration/opcache/disabled/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/opcache/disabled/skipif.inc -------------------------------------------------------------------------------- /tests/integration/output/test_flush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/output/test_flush.php -------------------------------------------------------------------------------- /tests/integration/pdo/pdo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/pdo.inc -------------------------------------------------------------------------------- /tests/integration/pdo/skipif_mysql.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/skipif_mysql.inc -------------------------------------------------------------------------------- /tests/integration/pdo/skipif_pgsql.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/skipif_pgsql.inc -------------------------------------------------------------------------------- /tests/integration/pdo/skipif_sqlite.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/skipif_sqlite.inc -------------------------------------------------------------------------------- /tests/integration/pdo/test_bad_input_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/test_bad_input_1.php -------------------------------------------------------------------------------- /tests/integration/pdo/test_null_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/test_null_options.php -------------------------------------------------------------------------------- /tests/integration/pdo/test_query_1_arg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/test_query_1_arg.inc -------------------------------------------------------------------------------- /tests/integration/pdo/test_slow_sql_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/test_slow_sql_1.php -------------------------------------------------------------------------------- /tests/integration/pdo/test_slow_sql_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/test_slow_sql_2.php -------------------------------------------------------------------------------- /tests/integration/pdo/test_slow_sql_lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/test_slow_sql_lock.php -------------------------------------------------------------------------------- /tests/integration/pdo/test_txn_ignore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pdo/test_txn_ignore.php -------------------------------------------------------------------------------- /tests/integration/pgsql/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pgsql/skipif.inc -------------------------------------------------------------------------------- /tests/integration/pgsql/skipif_php8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pgsql/skipif_php8.inc -------------------------------------------------------------------------------- /tests/integration/pgsql/skipif_php81.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/pgsql/skipif_php81.inc -------------------------------------------------------------------------------- /tests/integration/predis/predis.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/predis/predis.inc -------------------------------------------------------------------------------- /tests/integration/predis/test_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/predis/test_basic.php -------------------------------------------------------------------------------- /tests/integration/predis/test_pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/predis/test_pipeline.php -------------------------------------------------------------------------------- /tests/integration/queue/test_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/queue/test_basic.php -------------------------------------------------------------------------------- /tests/integration/queue/test_capitalized.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/queue/test_capitalized.php -------------------------------------------------------------------------------- /tests/integration/queue/test_malformed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/queue/test_malformed.php -------------------------------------------------------------------------------- /tests/integration/queue/test_with_prefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/queue/test_with_prefix.php -------------------------------------------------------------------------------- /tests/integration/redis/redis.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/redis.inc -------------------------------------------------------------------------------- /tests/integration/redis/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/skipif.inc -------------------------------------------------------------------------------- /tests/integration/redis/test_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_basic.php -------------------------------------------------------------------------------- /tests/integration/redis/test_bitops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_bitops.php -------------------------------------------------------------------------------- /tests/integration/redis/test_decr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_decr.php -------------------------------------------------------------------------------- /tests/integration/redis/test_geo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_geo.php -------------------------------------------------------------------------------- /tests/integration/redis/test_hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_hash.php -------------------------------------------------------------------------------- /tests/integration/redis/test_incr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_incr.php -------------------------------------------------------------------------------- /tests/integration/redis/test_lget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_lget.php -------------------------------------------------------------------------------- /tests/integration/redis/test_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_list.php -------------------------------------------------------------------------------- /tests/integration/redis/test_lremove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_lremove.php -------------------------------------------------------------------------------- /tests/integration/redis/test_set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_set.php -------------------------------------------------------------------------------- /tests/integration/redis/test_setex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_setex.php -------------------------------------------------------------------------------- /tests/integration/redis/test_zset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/redis/test_zset.php -------------------------------------------------------------------------------- /tests/integration/sqlite/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/sqlite/skipif.inc -------------------------------------------------------------------------------- /tests/integration/sqlite/test_exec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/sqlite/test_exec.php -------------------------------------------------------------------------------- /tests/integration/sqlite/test_query_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/sqlite/test_query_1.php -------------------------------------------------------------------------------- /tests/integration/sqlite/test_query_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/sqlite/test_query_2.php -------------------------------------------------------------------------------- /tests/integration/sqlite3/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/sqlite3/skipif.inc -------------------------------------------------------------------------------- /tests/integration/sqlite3/test_query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/sqlite3/test_query.php -------------------------------------------------------------------------------- /tests/integration/uopz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/README.md -------------------------------------------------------------------------------- /tests/integration/uopz/load.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/load.inc -------------------------------------------------------------------------------- /tests/integration/uopz/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/skipif.inc -------------------------------------------------------------------------------- /tests/integration/uopz/test_001.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_001.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_002.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_002.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_003.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_003.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_004.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_004.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_005.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_005.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_006.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_006.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_007.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_007.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_008.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_008.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_009.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_009.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_010.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_010.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_011.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_011.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_012.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_012.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_013.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_013.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_014.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_014.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_015.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_015.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_016.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_016.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_017.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_017.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_018.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_018.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_019.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_019.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_020.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_020.php -------------------------------------------------------------------------------- /tests/integration/uopz/test_021.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/integration/uopz/test_021.php -------------------------------------------------------------------------------- /tests/lasp/suite-least-secure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/lasp/suite-least-secure/README.md -------------------------------------------------------------------------------- /tests/lasp/suite-most-secure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/lasp/suite-most-secure/README.md -------------------------------------------------------------------------------- /tests/lasp/suite-random-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/lasp/suite-random-1/README.md -------------------------------------------------------------------------------- /tests/lasp/suite-random-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/lasp/suite-random-2/README.md -------------------------------------------------------------------------------- /tests/lasp/suite-random-2/test_sql_raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/lasp/suite-random-2/test_sql_raw.php -------------------------------------------------------------------------------- /tests/lasp/suite-random-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/lasp/suite-random-3/README.md -------------------------------------------------------------------------------- /tests/lasp/suite-random-3/test_sql_raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/tests/lasp/suite-random-3/test_sql_raw.php -------------------------------------------------------------------------------- /trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/newrelic-php-agent/HEAD/trivy.yaml --------------------------------------------------------------------------------