mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-26 10:36:32 +00:00
cleanup sentry filter
This commit is contained in:
parent
1df35a6fe1
commit
865523fd37
@ -292,7 +292,9 @@ def setup_diagnostics(coresys: CoreSys) -> None:
|
|||||||
return event
|
return event
|
||||||
|
|
||||||
# Update information
|
# Update information
|
||||||
event["contexts"]["supervisor"] = {
|
event.setdefault("extra", {}).update(
|
||||||
|
{
|
||||||
|
"supervisor": {
|
||||||
"machine": coresys.machine,
|
"machine": coresys.machine,
|
||||||
"arch": coresys.arch.default,
|
"arch": coresys.arch.default,
|
||||||
"docker": coresys.docker.info.version,
|
"docker": coresys.docker.info.version,
|
||||||
@ -307,9 +309,14 @@ def setup_diagnostics(coresys: CoreSys) -> None:
|
|||||||
"multicast": coresys.plugins.multicast.version,
|
"multicast": coresys.plugins.multicast.version,
|
||||||
"cli": coresys.plugins.cli.version,
|
"cli": coresys.plugins.cli.version,
|
||||||
}
|
}
|
||||||
event["tags"][
|
}
|
||||||
"installation_type"
|
)
|
||||||
] = f"{'os' if coresys.hassos.available else 'supervised'}"
|
event.setdefault("tags", {}).update(
|
||||||
|
{
|
||||||
|
"installation_type": "os" if coresys.hassos.available else "supervised",
|
||||||
|
"machine": coresys.machine,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
return event
|
return event
|
||||||
|
|
||||||
@ -321,8 +328,7 @@ def setup_diagnostics(coresys: CoreSys) -> None:
|
|||||||
sentry_sdk.init(
|
sentry_sdk.init(
|
||||||
dsn="https://9c6ea70f49234442b4746e447b24747e@o427061.ingest.sentry.io/5370612",
|
dsn="https://9c6ea70f49234442b4746e447b24747e@o427061.ingest.sentry.io/5370612",
|
||||||
before_send=filter_data,
|
before_send=filter_data,
|
||||||
before_breadcrumb=filter_data,
|
max_breadcrumbs=30,
|
||||||
max_breadcrumbs=20,
|
|
||||||
integrations=[AioHttpIntegration(), sentry_logging],
|
integrations=[AioHttpIntegration(), sentry_logging],
|
||||||
release=SUPERVISOR_VERSION,
|
release=SUPERVISOR_VERSION,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user