-
-
Notifications
You must be signed in to change notification settings - Fork 979
Fix/tri 7032 logs page feedback #2947
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4587928
UI fixes
mpcgrid 2705dd0
Merge branch 'main' into fix/tri-7032-logs-page-feedback
mpcgrid f281fd8
added migration for indexes
mpcgrid 92c0abb
Merge branch 'main' into fix/tri-7032-logs-page-feedback
mpcgrid ddd0c11
code review fixes
mpcgrid f4734e6
duplicate shortcut and user session fetching fix
mpcgrid 8b1a6a9
removed unused variable
mpcgrid ab9e0dd
fixed type failure
mpcgrid e9fcba9
Merge branch 'main' into fix/tri-7032-logs-page-feedback
mpcgrid eb9c2d3
Merge branch 'refs/heads/main' into fix/tri-7032-logs-page-feedback
mpcgrid 04eacb5
Change task icon for task filters
mpcgrid e079b96
Change task icon for task filters
mpcgrid 61bd835
added shortcuts in help and feedback
mpcgrid 2c6ce50
added more conditions for search character escaping
mpcgrid 4998a31
added more conditions for search character escaping
mpcgrid 6889fff
fixed type error
mpcgrid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| import { BookOpenIcon } from "@heroicons/react/20/solid"; | ||
| import { LinkButton } from "./primitives/Buttons"; | ||
| import { Header3 } from "./primitives/Headers"; | ||
| import { Paragraph } from "./primitives/Paragraph"; | ||
|
|
||
| export function LogLevelTooltipInfo() { | ||
| return ( | ||
| <div className="flex max-w-xs flex-col gap-4 p-1 pb-2"> | ||
| <div> | ||
| <Header3>Log Levels</Header3> | ||
| <Paragraph variant="small" className="text-text-dimmed"> | ||
| Structured logging helps you debug and monitor your tasks. | ||
| </Paragraph> | ||
| </div> | ||
| <div> | ||
| <div className="mb-0.5"> | ||
| <Header3 className="text-blue-400">Info</Header3> | ||
| </div> | ||
| <Paragraph variant="small" className="text-text-dimmed"> | ||
| General informational messages about task execution. | ||
| </Paragraph> | ||
| </div> | ||
| <div> | ||
| <div className="mb-0.5"> | ||
| <Header3 className="text-warning">Warn</Header3> | ||
| </div> | ||
| <Paragraph variant="small" className="text-text-dimmed"> | ||
| Warning messages indicating potential issues that don't prevent execution. | ||
| </Paragraph> | ||
| </div> | ||
| <div> | ||
| <div className="mb-0.5"> | ||
| <Header3 className="text-error">Error</Header3> | ||
| </div> | ||
| <Paragraph variant="small" className="text-text-dimmed"> | ||
| Error messages for failures and exceptions during task execution. | ||
| </Paragraph> | ||
| </div> | ||
| <div> | ||
| <div className="mb-0.5"> | ||
| <Header3 className="text-charcoal-400">Debug</Header3> | ||
| </div> | ||
| <Paragraph variant="small" className="text-text-dimmed"> | ||
| Detailed diagnostic information for development and debugging. | ||
| </Paragraph> | ||
| </div> | ||
| <div className="border-t border-charcoal-700 pt-4"> | ||
| <Header3>Tracing & Spans</Header3> | ||
| <Paragraph variant="small" className="text-text-dimmed"> | ||
| Automatically track the flow of your code through task triggers, attempts, and HTTP | ||
| requests. Create custom traces to monitor specific operations. | ||
| </Paragraph> | ||
| </div> | ||
| <LinkButton | ||
| to="https://trigger.dev/docs/logging#tracing-and-spans" | ||
| variant="docs/small" | ||
| LeadingIcon={BookOpenIcon} | ||
| > | ||
| Read docs | ||
| </LinkButton> | ||
| </div> | ||
| ); | ||
| } |
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.