Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifests/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ manifest:
component_version: '>=0.93.0'
tests/test_standard_tags.py::Test_StandardTagsUserAgent: v0.75.0
tests/test_telemetry.py::Test_DependencyEnable: missing_feature
tests/test_telemetry.py::Test_ExtendedHeartbeat: missing_feature (PHP v1.20.0 emits null for dependencies[].version in app-extended-heartbeat, failing schema validation)
tests/test_telemetry.py::Test_ExtendedHeartbeat: v1.20.0
tests/test_telemetry.py::Test_Log_Generation: # TODO: a lower version might be supported
- weblog_declaration:
'*': missing_feature
Expand Down
12 changes: 12 additions & 0 deletions tests/schemas/test_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ def test_library(self):
condition=context.library > "php@1.7.3",
ticket="APMAPI-1270",
),
SchemaBug(
endpoint="/telemetry/proxy/api/v2/apmtelemetry",
data_path="$.payload.dependencies[].version",
condition=context.library == "php" and context.scenario is scenarios.telemetry_extended_heartbeat,
ticket="APMAPI-1938",
),
SchemaBug(
endpoint="/debugger/v1/diagnostics",
data_path="$[]",
Expand Down Expand Up @@ -158,6 +164,12 @@ def test_agent(self):
condition=context.library > "php@1.7.3",
ticket="XXX-1234",
),
SchemaBug(
endpoint="/api/v2/apmtelemetry",
data_path="$.payload.dependencies[].version",
condition=context.library == "php" and context.scenario is scenarios.telemetry_extended_heartbeat,
ticket="APMAPI-1938",
),
SchemaBug(
endpoint="/api/v2/debugger",
data_path="$[]",
Expand Down
Loading