- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore) - Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md) - Remove executable permissions from web assets (HTML, CSS, JS files) - Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt) - Remove executable permissions from source code files across all apps - Add executable permissions to Python
29 lines
538 B
YAML
29 lines
538 B
YAML
global:
|
|
scrape_interval: 5s
|
|
evaluation_interval: 10s
|
|
|
|
alerting:
|
|
alertmanagers:
|
|
- static_configs:
|
|
- targets:
|
|
- "127.0.0.1:9093"
|
|
|
|
scrape_configs:
|
|
- job_name: "blockchain-node"
|
|
static_configs:
|
|
- targets:
|
|
- "127.0.0.1:8080"
|
|
labels:
|
|
service: "blockchain-node"
|
|
|
|
- job_name: "mock-coordinator"
|
|
static_configs:
|
|
- targets:
|
|
- "127.0.0.1:8090"
|
|
labels:
|
|
service: "mock-coordinator"
|
|
|
|
rule_files:
|
|
- alerts.yml
|
|
- gossip-recording-rules.yml
|