feat(seer-infra-telemetry): Add a PAT-only DatadogIdentityProvider#118072
Merged
Conversation
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit cbddb62. Configure here.
wedamija
approved these changes
Jun 18, 2026
| base = _mcp_base_url_for_site(identity_data.get("site")) | ||
| return f"{base}{MCP_ENDPOINT_PATH}" if base else None | ||
|
|
||
| def build_identity(self, data: dict[str, Any]) -> dict[str, Any]: |
Member
There was a problem hiding this comment.
Wondering if a lot of this could be consolidated with the existing datadog provider? Not sure how much overlap there is.
I suppose it might not be worth it, since probably long term we'll only keep one of these providers.
Member
Author
There was a problem hiding this comment.
Yeah, since we'll know (hopefully) soon whether we can go forward with the oauth version, probably easier to keep separate for clean deletion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

relates to CW-1523
Adds a standalone
DatadogPatIdentityProviderfor connecting Datadog via a user-supplied read-only personal access token (PAT), alongside the existing OAuth provider.Datadog's MCP OAuth flow only accepts loopback redirect URIs, so it can't be used from a hosted server. A read-only PAT is a Bearer token usable identically to an OAuth access token against the MCP server, so this is the fallback for server environments, unless we're able to register as a client with Datadog.
Followup: #118073