Skip to content

Commit

Permalink
Add ClientDropP0s feature to info endpoint (#90)
Browse files Browse the repository at this point in the history
This feature goes with the /v0.6/stats (trace stats) implementation.
  • Loading branch information
Kyle-Verhoog authored Jul 15, 2022
1 parent af549b9 commit ac99f86
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions ddapm_test_agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ async def handle_info(self, request: Request) -> web.Response:
],
"feature_flags": [],
"config": {},
"client_drop_p0s": True,
}
)

Expand Down
4 changes: 4 additions & 0 deletions releasenotes/notes/info-drop-p0s-c207889f590340fb.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
fixes:
- |
Add ClientDropP0s setting to /info response.
1 change: 1 addition & 0 deletions tests/test_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,5 @@ async def test_info(agent):
],
"feature_flags": [],
"config": {},
"client_drop_p0s": True,
}

0 comments on commit ac99f86

Please sign in to comment.