We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 736deb7 commit 02a24c3Copy full SHA for 02a24c3
oracle/oracle/main.py
@@ -4,6 +4,7 @@
4
from urllib.parse import urlparse
5
6
import aiohttp
7
+from eth_account import Account
8
from eth_account.signers.local import LocalAccount
9
10
from oracle.health_server import create_health_server_runner, start_health_server
@@ -160,6 +161,10 @@ async def process_network(
160
161
from sentry_sdk.integrations.logging import ignore_logger
162
163
sentry_sdk.init(SENTRY_DSN, traces_sample_rate=0.1)
164
+ sentry_sdk.set_tag("network", NETWORK)
165
+ sentry_sdk.set_tag(
166
+ "account", Account.from_key(NETWORK_CONFIG["ORACLE_PRIVATE_KEY"]).address
167
+ )
168
ignore_logger("backoff")
169
170
asyncio.run(main())
0 commit comments