-
Notifications
You must be signed in to change notification settings - Fork 559
[Dashboard] Add chain, publisher, and contract data to deploy failure analytics #7376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Dashboard] Add chain, publisher, and contract data to deploy failure analytics #7376
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
5 Skipped Deployments
|
WalkthroughThe contract deployment failure analytics reporting was enhanced to include additional context: chain ID, publisher, and contract name. The reporting function's signature was updated to accept these new parameters, and the deployment form now supplies these values when reporting a failure. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant ContractDeployForm
participant AnalyticsReport
User->>ContractDeployForm: Submit contract deployment
ContractDeployForm->>ContractDeployForm: Attempt deployment
alt Deployment fails
ContractDeployForm->>AnalyticsReport: reportContractDeployFailed({ errorMessage, chainId, publisher, contractName })
end
Possibly related PRs
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
⏰ Context from checks skipped due to timeout of 90000ms (8)
🔇 Additional comments (2)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7376 +/- ##
=======================================
Coverage 52.35% 52.35%
=======================================
Files 939 939
Lines 63161 63161
Branches 4217 4217
=======================================
Hits 33070 33070
Misses 29984 29984
Partials 107 107
🚀 New features to boost your workflow:
|
size-limit report 📦
|
Enhanced Error Reporting for Contract Deployment Failures
Added additional context data to the contract deployment failure analytics by including:
chainId
: Captures the blockchain network where the deployment failedpublisher
: Records the contract publisher informationcontractName
: Tracks which contract failed during deploymentThese parameters provide more comprehensive error tracking, allowing for better debugging and analysis of deployment failures.
Summary by CodeRabbit