-
-
Notifications
You must be signed in to change notification settings - Fork 254
Update bug-report logs url #1630
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
Conversation
📝 WalkthroughWalkthroughBug report template updated to use logs.pelican.dev for log collection. Wings diagnostics gains a --hastebin-url flag pointing to logs.pelican.dev. Panel log upload switches to curl --data-binary with 300 lines instead of 150. Example log URL updated. Rendering directive remains bash. Changes
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (3)
.github/ISSUE_TEMPLATE/bug-report.yml (3)
67-69: Make the commands easier to copy and more resilient (fenced blocks + curl flags).Using fenced code blocks improves copy/paste. Adding curl flags (-sSf) gives better errors without noisy progress. Also explicitly asking users to paste the returned URL helps the flow.
Apply this diff inside the same description block:
- Wings: `sudo wings diagnostics --hastebin-url=https://logs.pelican.dev` - Panel: `tail -n 300 /var/www/pelican/storage/logs/laravel-$(date +%F).log | curl --data-binary @- https://logs.pelican.dev` + Wings: + ```bash + sudo wings diagnostics --hastebin-url=https://logs.pelican.dev + ``` + Panel: + ```bash + tail -n 300 /var/www/pelican/storage/logs/laravel-$(date +%F).log | curl -sSf --data-binary @- https://logs.pelican.dev + ``` + Then paste the URL returned above into this field.
68-68: Add a fallback for non-dated Laravel logs.Some deployments still use storage/logs/laravel.log. This one-liner covers both without making the user think.
If you want to keep it a single line:
- Panel: `tail -n 300 /var/www/pelican/storage/logs/laravel-$(date +%F).log | curl --data-binary @- https://logs.pelican.dev` + Panel: `{ tail -n 300 /var/www/pelican/storage/logs/laravel-$(date +%F).log 2>/dev/null || tail -n 300 /var/www/pelican/storage/logs/laravel.log; } | curl -sSf --data-binary @- https://logs.pelican.dev`
67-69: Clarify privacy expectations in log uploads.A short note helps users avoid sharing secrets unintentionally (tokens, emails, IPs).
Append this line right after the commands in the description block:
+ Note: Logs may contain sensitive information (IPs, tokens, emails). Review/redact before sharing a public URL.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
.github/ISSUE_TEMPLATE/bug-report.yml(1 hunks)
🔇 Additional comments (2)
.github/ISSUE_TEMPLATE/bug-report.yml (2)
67-69: Good move: consolidate to logs.pelican.dev.The switch to the unified logs endpoint and increasing the panel tail to 300 lines improves signal for triage. No blockers from me.
67-67: Confirm Wings flag availability across supported versions.Please verify that all supported Wings versions for this repo accept
--hastebin-url(spelling and semantics). If older versions don’t, consider mentioning the minimum version or an alternative command.
No description provided.