From fa84724d692f9bb1702491ec50062a711add42f6 Mon Sep 17 00:00:00 2001 From: Trevor Emerick Date: Wed, 8 Jul 2026 23:14:16 -0400 Subject: [PATCH 1/2] chore(php): use boolean DD_PROFILING_ENABLED in sample manifest Align the PHP sample app with Node.js and Java examples that use bare `true` instead of a quoted string. Co-authored-by: Cursor --- examples/cf-php-sample-app/manifest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cf-php-sample-app/manifest.yml b/examples/cf-php-sample-app/manifest.yml index a0aa0da0..b4ea691c 100644 --- a/examples/cf-php-sample-app/manifest.yml +++ b/examples/cf-php-sample-app/manifest.yml @@ -16,7 +16,7 @@ applications: DD_LOGS_ENABLED: true STD_LOG_COLLECTION_PORT: 10514 LOGS_CONFIG: '[{"type":"tcp","port":"10514","source":"php","service":"php-sample-app"}]' - DD_PROFILING_ENABLED: 'true' + DD_PROFILING_ENABLED: true DD_APM_INSTRUMENTATION_ENABLED: 'true' DD_ENABLE_CAPI_METADATA_COLLECTION: 'true' TEST[KEY]: VALUE From 90da1ca5f0fff2798665b35af044a0762b987bdc Mon Sep 17 00:00:00 2001 From: Trevor Emerick Date: Wed, 8 Jul 2026 23:16:16 -0400 Subject: [PATCH 2/2] chore(php): align remaining boolean env vars in sample manifest Use bare true for DD_APM_INSTRUMENTATION_ENABLED and DD_ENABLE_CAPI_METADATA_COLLECTION to match DD_LOGS_ENABLED and DD_PROFILING_ENABLED in the same file. Co-authored-by: Cursor --- examples/cf-php-sample-app/manifest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cf-php-sample-app/manifest.yml b/examples/cf-php-sample-app/manifest.yml index b4ea691c..b151d6bb 100644 --- a/examples/cf-php-sample-app/manifest.yml +++ b/examples/cf-php-sample-app/manifest.yml @@ -17,8 +17,8 @@ applications: STD_LOG_COLLECTION_PORT: 10514 LOGS_CONFIG: '[{"type":"tcp","port":"10514","source":"php","service":"php-sample-app"}]' DD_PROFILING_ENABLED: true - DD_APM_INSTRUMENTATION_ENABLED: 'true' - DD_ENABLE_CAPI_METADATA_COLLECTION: 'true' + DD_APM_INSTRUMENTATION_ENABLED: true + DD_ENABLE_CAPI_METADATA_COLLECTION: true TEST[KEY]: VALUE metadata: labels: