fix(cluster): add Muninn to SSH collection, fix ingest_corpus → glean_corpus rename
- Add [muninn] to NODES map in collect_cluster_logs.sh Muninn is accessible via WireGuard (ssh muninn). One-time 7-day backfill already gleaned: 262,659 entries. - Fix broken script reference: ingest_corpus.py was renamed to glean_corpus.py — ongoing cluster glean was silently broken since the rename
This commit is contained in:
parent
74e0d5fcd6
commit
09b4912c8e
1 changed files with 2 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ DATA_DIR=/devl/turnstone-cluster/data
|
|||
WINDOW="20 minutes ago"
|
||||
SSH_OPTS="-o ConnectTimeout=5 -o BatchMode=yes -o StrictHostKeyChecking=no"
|
||||
PYTHON=/devl/miniconda3/envs/cf/bin/python
|
||||
INGEST="${PYTHON} /Library/Development/CircuitForge/turnstone/scripts/ingest_corpus.py"
|
||||
INGEST="${PYTHON} /Library/Development/CircuitForge/turnstone/scripts/glean_corpus.py"
|
||||
DB=/devl/turnstone-cluster/data/turnstone.db
|
||||
LOG=/devl/turnstone-cluster/data/glean.log
|
||||
|
||||
|
|
@ -48,6 +48,7 @@ declare -A NODES=(
|
|||
[sif]="${DATA_DIR}/sif-journal.jsonl"
|
||||
[cass]="${DATA_DIR}/cass-journal.jsonl"
|
||||
[strahl]="${DATA_DIR}/strahl-journal.jsonl"
|
||||
[muninn]="${DATA_DIR}/muninn-journal.jsonl"
|
||||
)
|
||||
|
||||
for node in "${!NODES[@]}"; do
|
||||
|
|
|
|||
Loading…
Reference in a new issue