-
Notifications
You must be signed in to change notification settings - Fork 0
perf(logsdb): query optimization, shared code extraction, CI improvements #219
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
Changes from all commits
6e08b77
d19a19f
bd0645b
ddf16e5
c98eece
c01a536
bd6d0d9
1966013
064cb0e
268bf2c
718b180
1c34d0b
fb7da13
fa98631
d3cfefb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| npx lint-staged |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| { | ||
| "$schema": "https://unpkg.com/knip@latest/schema.json", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify current schema pinning and installed knip version.
# Expected: schema URL should not use `@latest` and should align with installed knip major.
echo "knip devDependency:"
jq -r '.devDependencies.knip' package.json
echo "knip schema URL:"
jq -r '.["$schema"]' knip.jsonRepository: strawgate/o11ykit Length of output: 147 Pin Knip schema to a specific version instead of The schema URL currently uses 🤖 Prompt for AI Agents |
||
| "workspaces": { | ||
| ".": { | ||
| "entry": ["scripts/*.{ts,js}"], | ||
| "ignore": ["coverage/**", ".site/**", "octo11y/**"] | ||
| }, | ||
| "packages/otlpjson": { | ||
| "entry": ["src/index.ts"], | ||
| "ignoreDependencies": ["typescript"] | ||
| }, | ||
| "packages/query": { | ||
| "entry": ["src/index.ts"], | ||
| "ignoreDependencies": ["typescript"] | ||
| }, | ||
| "packages/views": { | ||
| "entry": ["src/index.ts"], | ||
| "ignoreDependencies": ["typescript"] | ||
| }, | ||
| "packages/adapters": { | ||
| "entry": ["src/index.ts"], | ||
| "ignoreDependencies": ["typescript"] | ||
| }, | ||
| "packages/stardb": { | ||
| "entry": ["src/index.ts"], | ||
| "ignoreDependencies": ["typescript"] | ||
| }, | ||
| "packages/o11ytsdb": { | ||
| "entry": ["src/index.ts"], | ||
| "ignore": ["bench/**"], | ||
| "ignoreDependencies": ["typescript"] | ||
| }, | ||
| "packages/o11ylogsdb": { | ||
| "entry": ["src/index.ts"], | ||
| "ignore": ["bench/**"], | ||
| "ignoreDependencies": ["typescript"] | ||
| }, | ||
| "packages/o11ytracesdb": { | ||
| "entry": ["src/index.ts"], | ||
| "ignore": ["bench/**"], | ||
| "ignoreDependencies": ["typescript"] | ||
| } | ||
| }, | ||
| "ignore": ["**/dist/**", "**/node_modules/**", "octo11y/**"], | ||
| "ignoreDependencies": ["@biomejs/biome", "husky", "lint-staged", "knip"] | ||
| } | ||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: strawgate/o11ykit
Length of output: 1913
Pin all third-party GitHub Actions to commit SHAs.
All action usages throughout the repository are pinned to mutable tags (
@v6,@v5, etc.) instead of immutable commit SHAs. This weakens CI supply-chain guarantees and affects not only.github/workflows/ci.ymlbut alsopublish-octo11y.yml,release.yml,pages.yml,benchmarks.yml, andactions-dist.yml. Replace all@v<number>references with@<40-character-sha>.🤖 Prompt for AI Agents