-
Notifications
You must be signed in to change notification settings - Fork 1
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
jan/retries-and-degradations-analysis #89
Conversation
jan-osch
commented
Mar 24, 2025
•
edited
Loading
edited
- Analysis of degradations and retries
WalkthroughThis update introduces functionality for analyzing degradation and retry metrics over time. A new type and prompt function are added to create validated timelines for operational data analysis. A dedicated analysis module processes check results into time buckets and aggregates degradation and retry counts. In addition, the Slackbot components are updated: the check summary block interface now supports additional analysis outputs, and the check summary command concurrently executes both heatmap and retry/degradation analysis, integrating all results into the final output. Changes
Possibly related PRs
Suggested reviewers
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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 (
|
{ | ||
role: "system", | ||
content: ` | ||
You are an expert AI in analyzing time-series operational data for distributed systems. |
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.
holy smokes, this feels so weird.
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 (1)
src/prompts/checkly.ts (1)
701-796
: Comprehensive implementation for analyzing degradations and retriesThe function creates a detailed prompt for analyzing patterns in timeline data, with clear instructions for the AI model to identify relationships between degradations, retries, and failures. The schema validation ensures consistent output format.
Consider adding JSDoc documentation for this function to improve developer experience, similar to how other prompt functions like
contextAnalysisSummaryPrompt
(line 586) are documented.+/** + * Generates a prompt definition for analyzing degradation and retries timeline data. + * Creates a structured prompt for identifying patterns in degradations and retries + * that might serve as leading indicators of failures. + * + * @param {DegradationAndRetriesTimeline} timelineData - Timeline data containing degradations and retries + * @param {number} totalRetries - The total number of retries across all periods + * @param {number} totalDegradations - The total number of degradations across all periods + * @returns {PromptDefinition} A prompt definition for timeline analysis + */ export function analyseDegradationAndRetriesTimeline( timelineData: DegradationAndRetriesTimeline, totalRetries: number, totalDegradations: number, ): PromptDefinition {
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
src/prompts/checkly.ts
(2 hunks)
🧰 Additional context used
🧬 Code Definitions (1)
src/prompts/checkly.ts (1)
src/prompts/common.ts (2)
PromptDefinition
(18-25)defineMessagesPrompt
(62-76)
⏰ Context from checks skipped due to timeout of 90000ms (2)
- GitHub Check: build
- GitHub Check: build
🔇 Additional comments (2)
src/prompts/checkly.ts (2)
691-699
: Well-structured type definition for timeline dataThe
DegradationAndRetriesTimeline
type provides a clear structure for time-series operational data, properly defining the hierarchy of period timestamps and region-specific metrics.
710-710
: Consider previous feedback on system promptA previous reviewer commented "holy smokes, this feels so weird" on this exact line. While the detailed instructions in the system prompt are valuable for guiding the AI's analysis, consider reviewing this section to ensure clarity and necessity of all instructions.
a7c0b72
to
066a5cb
Compare
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 (1)
src/prompts/checkly.ts (1)
701-796
: Comprehensive prompt construction for degradation and retry analysis.The function effectively creates a structured prompt for analyzing time-series operational data with clear instructions and expected output format. The schema validation ensures consistent response structure.
Two considerations:
- There's no validation that
totalRetries
andtotalDegradations
are non-negative numbers.- The analysis is constrained to "maximum 1 sentence per field" (line 748), which might limit expression of complex patterns.
Consider adding parameter validation:
export function analyseDegradationAndRetriesTimeline( timelineData: DegradationAndRetriesTimeline, totalRetries: number, totalDegradations: number, ): PromptDefinition { + // Validate parameters + if (totalRetries < 0 || totalDegradations < 0) { + throw new Error("Total retries and degradations must be non-negative"); + } const messages: CoreMessage[] = [ // Rest of function...
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (4)
src/prompts/checkly.ts
(2 hunks)src/slackbot/analysis/analyseRetriesAndDegradations.ts
(1 hunks)src/slackbot/blocks/newCheckSummaryBlock.ts
(3 hunks)src/slackbot/commands/check-summary.ts
(3 hunks)
🚧 Files skipped from review as they are similar to previous changes (3)
- src/slackbot/blocks/newCheckSummaryBlock.ts
- src/slackbot/commands/check-summary.ts
- src/slackbot/analysis/analyseRetriesAndDegradations.ts
🧰 Additional context used
🧬 Code Definitions (1)
src/prompts/checkly.ts (1)
src/prompts/common.ts (2)
PromptDefinition
(18-25)defineMessagesPrompt
(62-76)
⏰ Context from checks skipped due to timeout of 90000ms (2)
- GitHub Check: build
- GitHub Check: build
🔇 Additional comments (2)
src/prompts/checkly.ts (2)
691-699
: Well-defined type for timeline analysis.The
DegradationAndRetriesTimeline
type is structured clearly with appropriate properties for time-based analysis of operational data across regions.
710-710
: Address previous feedback.I notice there was a previous comment from tnolet: "holy smokes, this feels so weird." This line is now part of your new system message. Consider reviewing and addressing the previous concern if it's still relevant to the current implementation.