Demo mode
ValueError
Variant: Post not found with ID 68
37m ago · 15h old
| Error message: | Post not found with ID int |
| When: | about 3 hours ago |
| Occurred at: | 2025-11-13 10:32:15 +0000 |
| Handled: | true |
| Severity: | error |
| Server name: | be1925f18265 |
| Environment: | production |
Items: 7
-
▶inner_logic inner_logictest.py, line test.py, line 50 50In App4546474849505152535455
message = scenario["message"].format(placeholder)
# Simulate stack for authentic trace
def inner_logic():
if random.random() > 0.5:
raise scenario["type"](message)
else:
raise scenario["type"](f"Variant: {message}")inner_logic()
No code available. -
▶simulate_error simulate_errortest.py, line test.py, line 54 54In App4950515253545556575859
if random.random() > 0.5:
raise scenario["type"](message)
else:
raise scenario["type"](f"Variant: {message}")inner_logic()
# Init SDK once
sentry_sdk.init(
dsn=DSN,
traces_sample_rate=1.0,
No code available. -
▶<module> <module>test.py, line test.py, line 98 98In App93949596979899100101102103
# Add breadcrumb
sentry_sdk.add_breadcrumb(message=random.choice(["User loaded page", "Form submitted", "Query executed"]), level="info")
try:
simulate_error(scenario)
except Exception as e:
sentry_sdk.capture_exception(e)
print(f"Sent error: {e}")# Small intra-burst delay to spread within cycle
No code available.