Skip to content

rotkonetworks/bootyspector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bootyspector

With default settings

cargo run --release

With custom settings

cargo run --release -- \
  --polkadot-binary /path/to/polkadot \
  --parachain-binary /path/to/polkadot-parachain \
  --output-dir /custom/output \
  --data-dir /custom/data \
  --chain-spec-dir /custom/specs \
  --max-concurrent 20 \
  --base-port 9700 \
  --timeout 45 \
  --config custom-bootnodes.json \
  --debug

prometheus alerting rules:

groups:
- name: bootnode_alerts
 rules:
 - alert: BootnodeDown
   expr: bootnode_status == 0
   for: 5m
   labels:
     severity: critical
   annotations:
     summary: "Bootnode {{ $labels.provider }}/{{ $labels.network }} is down"
     description: "Bootnode has failed with reason: {{ $labels.failure_reason }}"

 - alert: SlowBootnodeChecks
   expr: bootnode_check_duration_ms > 30000
   for: 5m
   labels:
     severity: warning
   annotations:
     summary: "Slow bootnode checks"
     description: "Check duration > 30s for {{ $labels.provider }}/{{ $labels.network }}"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages