-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add network label + refactor config access - Ensure there is only one CONFIG instance in the program - Add a network label to all metrics * feat: network based alerts * chore: config loaded w/ one RPC_URL * feat: network-based queries * fix: dockerfile * feat: opsgenie receiver * feat: README * fix: alerts
- Loading branch information
Showing
17 changed files
with
348 additions
and
1,303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
# The database URL the application will use to connect to the database. | ||
DATABASE_URL='postgres://postgres:postgres@localhost:5432/postgres' | ||
|
||
# RPC URLS | ||
TESTNET_RPC_URL= | ||
MAINNET_RPC_URL= | ||
# RPC URL | ||
RPC_URL= | ||
|
||
# Config | ||
NETWORK=testnet | ||
ORACLE_ADDRESS=0x | ||
PAIRS=BTC/USD,ETH/USD | ||
IGNORE_SOURCES=BITSTAMP,DEFILLAMA | ||
IGNORE_PUBLISHERS=BINANCE | ||
IGNORE_PUBLISHERS=BINANCE | ||
|
||
# Prometheus | ||
TELEGRAM_BOT_TOKEN= | ||
OPSGENIE_API_KEY= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.