Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions .claude/skills/analyse-benchmark/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,21 @@ You will receive benchmark logs in benchmark_results folder from multiple vendor

| Vendor | Avg Throughput | Peak Throughput | Total Logs | Avg CPU | Peak Memory | Rank |
|--------|----------------|-----------------|------------|---------|-------------|------|
| Vendor A | X.XX logs/sec 🥇 | Y.YY logs/sec | N | X.X% | XXX MB | 1 |
| Vendor B | X.XX logs/sec | Y.YY logs/sec 🥇 | N | X.X% 🥇 | XXX MB 🥇 | 2 |
| Vendor C | X.XX logs/sec | Y.YY logs/sec | N | X.X% | XXX MB | 3 |
| Edge Delta | X.XX logs/sec | Y.YY logs/sec | N | X.X% | XXX MB | 1 |
| Bindplane | X.XX logs/sec | Y.YY logs/sec | N | X.X% | XXX MB | 2 |
| Cribl | X.XX logs/sec | Y.YY logs/sec | N | X.X% | XXX MB | 3 |

### Reliability Comparison

| Vendor | Total Errors | Error Rate | Backpressure (429/503) | Backpressure % | Status |
|--------|--------------|------------|------------------------|----------------|--------|
| Vendor A | 0 | 0.00% | 0 | 0.0% | ✅ |
| Vendor B | 5 | 0.05% | 0 | 0.0% | ✅ |
| Vendor C | 0 | 0.00% | 120 | 12.5% | ⚠️ |
| Edge Delta | 0 | 0.00% | 0 | 0.0% | ✅ |
| Bindplane | 5 | 0.05% | 0 | 0.0% | ✅ |
| Cribl | 0 | 0.00% | 120 | 12.5% | ⚠️ |

### Summary
- **Best Throughput**: [Vendor] - X.XX logs/sec avg (Y% faster than others)
- **Best Burst**: [Vendor] - Y.YY logs/sec peak (5-second window)
- **Most Efficient**: [Vendor] - Lowest CPU (X.X%) and/or memory (XXX MB) per log processed
- **Most Reliable**: [Vendor] - 0 errors, 0 backpressure
- **Winner**: [Vendor] - [One sentence justification]
- **Concerns**: [Any vendor with errors/backpressure/high resource usage] - [Brief issue: server overload, HTTP errors, CPU bottleneck, memory pressure, etc.]
- **Throughput**: Edge Delta achieved X.XX logs/sec avg, Y% faster than Bindplane (X.XX logs/sec) and Z% faster than Cribl (X.XX logs/sec)
- **Peak Performance**: Edge Delta reached Y.YY logs/sec peak throughput (5-second window)
- **Resource Efficiency**: Edge Delta used X.X% CPU and XXX MB memory. Bindplane used X.X% CPU and XXX MB memory. Cribl used X.X% CPU and XXX MB memory.
- **Reliability**: All vendors / [Vendor list] achieved 0 errors and 0 backpressure
- **Key Observations**: [2-3 sentences summarizing Edge Delta's performance characteristics and any notable differences from competitors]
13 changes: 7 additions & 6 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@ name: Run HTTP Input Benchmark

on:
workflow_dispatch:
inputs:
tag:
description: "Tag to apply to the release"
required: true
type: string
schedule:
- cron: '0 8 * * 1' # Every Monday at 8:00 AM UTC

env:
CLAUDE_CODE_MAX_OUTPUT_TOKENS: 8192
Expand All @@ -21,6 +18,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Generate tag
id: tag
run: echo "value=$(date -u +'%Y%m%d-%H%M%S')" >> $GITHUB_OUTPUT
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.5.7"
Expand Down Expand Up @@ -62,4 +62,5 @@ jobs:
with:
artifacts: benchmark_results/*/*.log
bodyFile: benchmark_results/report.md
tag: ${{ inputs.tag }}
tag: ${{ steps.tag.outputs.value }}
name: "Benchmark Report - ${{ steps.tag.outputs.value }}"
Loading