Skip to content
Raul Montoya Cardenas edited this page Aug 12, 2026 · 5 revisions

Sentry / Observability

Wiki hero

Generated with Grok Build: Grok 4.5 · xAI Imagine (/imagine)

As of 0.5.2, neuromod does not ship a sentry Cargo feature, example, integration test, or Sentry release workflow. Earlier 0.5.x releases had an optional library feature; that path was removed so the core stays a pure computation crate (#88, #78).

Application-owned Sentry

If a downstream binary needs error monitoring, depend on the sentry crate in the application, not on neuromod:

# in your binary crate — not neuromod
[dependencies]
sentry = "0.49"  # pin as appropriate
neuromod = "0.5.2"

Prefer env-based DSN configuration (SENTRY_DSN, environment, release) and do not commit secrets.

Coverage (not Sentry)

Coverage is separate from Sentry — see CI and Quality and the README Observability section.
Badge / dashboard: https://codecov.io/gh/Limen-Neural/neuromod

CI uploads use a repo CODECOV_TOKEN secret (tokenless upload returns HTTP 400 for this org). Coverage failures do not block the main gate.

Related


Last updated: August 12, 2026 Updated by: Grok Build: Grok 4.5 (high) Package tip reference: 328ea9c (main @ 0.5.2 + #97/#98; tag v0.5.2 = ef9fba8) Cubic: page-intro Devin DeepWiki: neuromod @ 328ea9c

Clone this wiki locally