cleanup sentry filter

This commit is contained in:
Pascal Vizeli 2020-08-11 19:11:22 +00:00
parent 1df35a6fe1
commit 865523fd37

View File

@ -292,7 +292,9 @@ def setup_diagnostics(coresys: CoreSys) -> None:
return event
# Update information
event["contexts"]["supervisor"] = {
event.setdefault("extra", {}).update(
{
"supervisor": {
"machine": coresys.machine,
"arch": coresys.arch.default,
"docker": coresys.docker.info.version,
@ -307,9 +309,14 @@ def setup_diagnostics(coresys: CoreSys) -> None:
"multicast": coresys.plugins.multicast.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
@ -321,8 +328,7 @@ def setup_diagnostics(coresys: CoreSys) -> None:
sentry_sdk.init(
dsn="https://9c6ea70f49234442b4746e447b24747e@o427061.ingest.sentry.io/5370612",
before_send=filter_data,
before_breadcrumb=filter_data,
max_breadcrumbs=20,
max_breadcrumbs=30,
integrations=[AioHttpIntegration(), sentry_logging],
release=SUPERVISOR_VERSION,
)