Skip to content

Commit dfa6583

Browse files
committed
Fix typo
1 parent d6337bd commit dfa6583

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

x-pack/platform/packages/shared/kbn-evals-suite-streams/evals/significant_events/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ node scripts/evals run \
134134
| --- | --- | --- |
135135
| `SIGEVENTS_SNAPSHOT_RUN` | Run ID subfolder in GCS to replay snapshots from | `2026-02-25` |
136136
| `SIGEVENTS_DATASET` | Dataset(s) to run (comma-separated or `all`) | `all` |
137-
| `SIGEVENTS_RULEGEN_KI_SOURCE` | KI source for rule generation (`canonical`, `snapshot`, `both`) | `both` |
137+
| `RULE_GENERATION_KI_SOURCE` | KI source for rule generation (`canonical`, `snapshot`, `both`) | `both` |
138138
| `GCS_CREDENTIALS` | GCS service account JSON for snapshot access ||
139139
| `TRACING_ES_URL` | Elasticsearch URL for trace queries (if traces are in a separate cluster) | Falls back to test cluster |
140140
| `TRACING_ES_API_KEY` | API key for the trace Elasticsearch cluster ||

x-pack/platform/packages/shared/kbn-evals-suite-streams/evals/significant_events/rule_generation/resolve_ki_sources.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,5 @@ const resolveKISourcesToRun = (source: KISourceInput | string | undefined): KISo
3939
* When unset, defaults to `['canonical', 'snapshot']` (i.e. `both`).
4040
*/
4141
export const KI_SOURCES_TO_RUN = resolveKISourcesToRun(
42-
process.env.RULE_GENERATION_KI_SOURCE ??
43-
process.env.SIGEVENTS_QUERYGEN_KI_SOURCE ??
44-
process.env.SIGEVENTS_QUERYGEN_FEATURES_SOURCE
42+
process.env.RULE_GENERATION_KI_SOURCE || process.env.SIGEVENTS_QUERYGEN_FEATURES_SOURCE
4543
);

0 commit comments

Comments
 (0)