├── .github ├── ISSUE_TEMPLATE │ ├── A.md │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md └── workflows │ ├── license-audit.yml │ └── test-package.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.txt ├── LOCAL_TESTING.md ├── Makefile ├── README.md ├── SECURITY.md ├── UPGRADING.md ├── bugsnag.go ├── bugsnag_example_test.go ├── bugsnag_test.go ├── configuration.go ├── configuration_test.go ├── device ├── hostname.go ├── runtimeversions.go └── runtimeversions_test.go ├── doc.go ├── errors ├── README.md ├── error.go ├── error_test.go ├── parse_panic.go ├── parse_panic_test.go └── stackframe.go ├── event.go ├── event_test.go ├── examples ├── README.md ├── http │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go └── using-goroutines │ ├── README.md │ └── main.go ├── features ├── apptype.feature ├── appversion.feature ├── autonotify.feature ├── configuration.feature ├── fixtures │ ├── app │ │ ├── Dockerfile │ │ ├── autoconfig_scenario.go │ │ ├── command.go │ │ ├── handled_scenario.go │ │ ├── main.go │ │ ├── metadata_scenario.go │ │ ├── nethttp_scenario.go │ │ ├── panic_scenario.go │ │ ├── run.sh │ │ ├── session_scenario.go │ │ ├── unhandled_scenario.go │ │ ├── user_scenario.go │ │ └── utils.go │ └── docker-compose.yml ├── handled.feature ├── hostname.feature ├── metadata.feature ├── multieventsession.feature ├── net-http │ ├── appversion.feature │ ├── autonotify.feature │ ├── handled.feature │ ├── onbeforenotify.feature │ ├── recover.feature │ ├── releasestage.feature │ ├── request.feature │ └── user.feature ├── onbeforenotify.feature ├── paramfilters.feature ├── plain_features │ └── panics.feature ├── recover.feature ├── releasestage.feature ├── sessioncontext.feature ├── steps │ └── go_steps.rb ├── support │ └── env.rb └── user.feature ├── gin ├── bugsnaggin.go └── gin_test.go ├── headers ├── prefixed.go └── prefixed_test.go ├── json_tags.go ├── martini ├── bugsnagmiddleware.go └── martini_test.go ├── metadata.go ├── metadata_test.go ├── middleware.go ├── middleware_test.go ├── negroni ├── bugsnagnegroni.go └── negroni_test.go ├── notifier.go ├── notifier_test.go ├── panicwrap.go ├── panicwrap_test.go ├── payload.go ├── payload_test.go ├── report.go ├── report_publisher.go ├── request_extractor.go ├── request_extractor_test.go ├── revel └── bugsnagrevel.go ├── sessions ├── config.go ├── config_test.go ├── integration_test.go ├── payload.go ├── publisher.go ├── publisher_test.go ├── session.go ├── startup.go ├── tracker.go └── tracker_test.go ├── testutil └── json.go └── v2 ├── LICENSE.txt ├── bugsnag.go ├── bugsnag_example_test.go ├── bugsnag_test.go ├── configuration.go ├── configuration_test.go ├── device ├── hostname.go ├── runtimeversions.go └── runtimeversions_test.go ├── doc.go ├── env_metadata.go ├── env_metadata_test.go ├── environment.go ├── environment_test.go ├── errors ├── README.md ├── error.go ├── error_fmt_wrap_test.go ├── error_test.go ├── error_types_test.go ├── error_unwrap.go ├── error_unwrap_test.go ├── parse_panic.go ├── parse_panic_test.go └── stackframe.go ├── event.go ├── event_test.go ├── go.mod ├── go.sum ├── headers ├── prefixed.go └── prefixed_test.go ├── json_tags.go ├── metadata.go ├── metadata_test.go ├── middleware.go ├── middleware_test.go ├── notifier.go ├── notifier_test.go ├── panicwrap.go ├── panicwrap_test.go ├── payload.go ├── payload_test.go ├── report.go ├── report_publisher.go ├── request_extractor.go ├── request_extractor_test.go ├── sessions ├── config.go ├── config_test.go ├── integration_test.go ├── payload.go ├── publisher.go ├── publisher_test.go ├── session.go ├── startup.go ├── tracker.go └── tracker_test.go └── testutil └── json.go /.github/ISSUE_TEMPLATE/A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/.github/ISSUE_TEMPLATE/A.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/license-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/.github/workflows/license-audit.yml -------------------------------------------------------------------------------- /.github/workflows/test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/.github/workflows/test-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem "bugsnag-maze-runner", "~> 9.14" -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LOCAL_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/LOCAL_TESTING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /bugsnag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/bugsnag.go -------------------------------------------------------------------------------- /bugsnag_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/bugsnag_example_test.go -------------------------------------------------------------------------------- /bugsnag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/bugsnag_test.go -------------------------------------------------------------------------------- /configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/configuration.go -------------------------------------------------------------------------------- /configuration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/configuration_test.go -------------------------------------------------------------------------------- /device/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/device/hostname.go -------------------------------------------------------------------------------- /device/runtimeversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/device/runtimeversions.go -------------------------------------------------------------------------------- /device/runtimeversions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/device/runtimeversions_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/doc.go -------------------------------------------------------------------------------- /errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/errors/README.md -------------------------------------------------------------------------------- /errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/errors/error.go -------------------------------------------------------------------------------- /errors/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/errors/error_test.go -------------------------------------------------------------------------------- /errors/parse_panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/errors/parse_panic.go -------------------------------------------------------------------------------- /errors/parse_panic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/errors/parse_panic_test.go -------------------------------------------------------------------------------- /errors/stackframe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/errors/stackframe.go -------------------------------------------------------------------------------- /event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/event.go -------------------------------------------------------------------------------- /event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/event_test.go -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/examples/http/README.md -------------------------------------------------------------------------------- /examples/http/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/examples/http/go.mod -------------------------------------------------------------------------------- /examples/http/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/examples/http/go.sum -------------------------------------------------------------------------------- /examples/http/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/examples/http/main.go -------------------------------------------------------------------------------- /examples/using-goroutines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/examples/using-goroutines/README.md -------------------------------------------------------------------------------- /examples/using-goroutines/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/examples/using-goroutines/main.go -------------------------------------------------------------------------------- /features/apptype.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/apptype.feature -------------------------------------------------------------------------------- /features/appversion.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/appversion.feature -------------------------------------------------------------------------------- /features/autonotify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/autonotify.feature -------------------------------------------------------------------------------- /features/configuration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/configuration.feature -------------------------------------------------------------------------------- /features/fixtures/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/app/autoconfig_scenario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/autoconfig_scenario.go -------------------------------------------------------------------------------- /features/fixtures/app/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/command.go -------------------------------------------------------------------------------- /features/fixtures/app/handled_scenario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/handled_scenario.go -------------------------------------------------------------------------------- /features/fixtures/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/main.go -------------------------------------------------------------------------------- /features/fixtures/app/metadata_scenario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/metadata_scenario.go -------------------------------------------------------------------------------- /features/fixtures/app/nethttp_scenario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/nethttp_scenario.go -------------------------------------------------------------------------------- /features/fixtures/app/panic_scenario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/panic_scenario.go -------------------------------------------------------------------------------- /features/fixtures/app/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/run.sh -------------------------------------------------------------------------------- /features/fixtures/app/session_scenario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/session_scenario.go -------------------------------------------------------------------------------- /features/fixtures/app/unhandled_scenario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/unhandled_scenario.go -------------------------------------------------------------------------------- /features/fixtures/app/user_scenario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/user_scenario.go -------------------------------------------------------------------------------- /features/fixtures/app/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/app/utils.go -------------------------------------------------------------------------------- /features/fixtures/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/fixtures/docker-compose.yml -------------------------------------------------------------------------------- /features/handled.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/handled.feature -------------------------------------------------------------------------------- /features/hostname.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/hostname.feature -------------------------------------------------------------------------------- /features/metadata.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/metadata.feature -------------------------------------------------------------------------------- /features/multieventsession.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/multieventsession.feature -------------------------------------------------------------------------------- /features/net-http/appversion.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/net-http/appversion.feature -------------------------------------------------------------------------------- /features/net-http/autonotify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/net-http/autonotify.feature -------------------------------------------------------------------------------- /features/net-http/handled.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/net-http/handled.feature -------------------------------------------------------------------------------- /features/net-http/onbeforenotify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/net-http/onbeforenotify.feature -------------------------------------------------------------------------------- /features/net-http/recover.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/net-http/recover.feature -------------------------------------------------------------------------------- /features/net-http/releasestage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/net-http/releasestage.feature -------------------------------------------------------------------------------- /features/net-http/request.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/net-http/request.feature -------------------------------------------------------------------------------- /features/net-http/user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/net-http/user.feature -------------------------------------------------------------------------------- /features/onbeforenotify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/onbeforenotify.feature -------------------------------------------------------------------------------- /features/paramfilters.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/paramfilters.feature -------------------------------------------------------------------------------- /features/plain_features/panics.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/plain_features/panics.feature -------------------------------------------------------------------------------- /features/recover.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/recover.feature -------------------------------------------------------------------------------- /features/releasestage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/releasestage.feature -------------------------------------------------------------------------------- /features/sessioncontext.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/sessioncontext.feature -------------------------------------------------------------------------------- /features/steps/go_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/steps/go_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/features/user.feature -------------------------------------------------------------------------------- /gin/bugsnaggin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/gin/bugsnaggin.go -------------------------------------------------------------------------------- /gin/gin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/gin/gin_test.go -------------------------------------------------------------------------------- /headers/prefixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/headers/prefixed.go -------------------------------------------------------------------------------- /headers/prefixed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/headers/prefixed_test.go -------------------------------------------------------------------------------- /json_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/json_tags.go -------------------------------------------------------------------------------- /martini/bugsnagmiddleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/martini/bugsnagmiddleware.go -------------------------------------------------------------------------------- /martini/martini_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/martini/martini_test.go -------------------------------------------------------------------------------- /metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/metadata.go -------------------------------------------------------------------------------- /metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/metadata_test.go -------------------------------------------------------------------------------- /middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/middleware.go -------------------------------------------------------------------------------- /middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/middleware_test.go -------------------------------------------------------------------------------- /negroni/bugsnagnegroni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/negroni/bugsnagnegroni.go -------------------------------------------------------------------------------- /negroni/negroni_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/negroni/negroni_test.go -------------------------------------------------------------------------------- /notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/notifier.go -------------------------------------------------------------------------------- /notifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/notifier_test.go -------------------------------------------------------------------------------- /panicwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/panicwrap.go -------------------------------------------------------------------------------- /panicwrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/panicwrap_test.go -------------------------------------------------------------------------------- /payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/payload.go -------------------------------------------------------------------------------- /payload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/payload_test.go -------------------------------------------------------------------------------- /report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/report.go -------------------------------------------------------------------------------- /report_publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/report_publisher.go -------------------------------------------------------------------------------- /request_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/request_extractor.go -------------------------------------------------------------------------------- /request_extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/request_extractor_test.go -------------------------------------------------------------------------------- /revel/bugsnagrevel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/revel/bugsnagrevel.go -------------------------------------------------------------------------------- /sessions/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/config.go -------------------------------------------------------------------------------- /sessions/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/config_test.go -------------------------------------------------------------------------------- /sessions/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/integration_test.go -------------------------------------------------------------------------------- /sessions/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/payload.go -------------------------------------------------------------------------------- /sessions/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/publisher.go -------------------------------------------------------------------------------- /sessions/publisher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/publisher_test.go -------------------------------------------------------------------------------- /sessions/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/session.go -------------------------------------------------------------------------------- /sessions/startup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/startup.go -------------------------------------------------------------------------------- /sessions/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/tracker.go -------------------------------------------------------------------------------- /sessions/tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/sessions/tracker_test.go -------------------------------------------------------------------------------- /testutil/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/testutil/json.go -------------------------------------------------------------------------------- /v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/LICENSE.txt -------------------------------------------------------------------------------- /v2/bugsnag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/bugsnag.go -------------------------------------------------------------------------------- /v2/bugsnag_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/bugsnag_example_test.go -------------------------------------------------------------------------------- /v2/bugsnag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/bugsnag_test.go -------------------------------------------------------------------------------- /v2/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/configuration.go -------------------------------------------------------------------------------- /v2/configuration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/configuration_test.go -------------------------------------------------------------------------------- /v2/device/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/device/hostname.go -------------------------------------------------------------------------------- /v2/device/runtimeversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/device/runtimeversions.go -------------------------------------------------------------------------------- /v2/device/runtimeversions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/device/runtimeversions_test.go -------------------------------------------------------------------------------- /v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/doc.go -------------------------------------------------------------------------------- /v2/env_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/env_metadata.go -------------------------------------------------------------------------------- /v2/env_metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/env_metadata_test.go -------------------------------------------------------------------------------- /v2/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/environment.go -------------------------------------------------------------------------------- /v2/environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/environment_test.go -------------------------------------------------------------------------------- /v2/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/README.md -------------------------------------------------------------------------------- /v2/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/error.go -------------------------------------------------------------------------------- /v2/errors/error_fmt_wrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/error_fmt_wrap_test.go -------------------------------------------------------------------------------- /v2/errors/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/error_test.go -------------------------------------------------------------------------------- /v2/errors/error_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/error_types_test.go -------------------------------------------------------------------------------- /v2/errors/error_unwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/error_unwrap.go -------------------------------------------------------------------------------- /v2/errors/error_unwrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/error_unwrap_test.go -------------------------------------------------------------------------------- /v2/errors/parse_panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/parse_panic.go -------------------------------------------------------------------------------- /v2/errors/parse_panic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/parse_panic_test.go -------------------------------------------------------------------------------- /v2/errors/stackframe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/errors/stackframe.go -------------------------------------------------------------------------------- /v2/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/event.go -------------------------------------------------------------------------------- /v2/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/event_test.go -------------------------------------------------------------------------------- /v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/go.mod -------------------------------------------------------------------------------- /v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/go.sum -------------------------------------------------------------------------------- /v2/headers/prefixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/headers/prefixed.go -------------------------------------------------------------------------------- /v2/headers/prefixed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/headers/prefixed_test.go -------------------------------------------------------------------------------- /v2/json_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/json_tags.go -------------------------------------------------------------------------------- /v2/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/metadata.go -------------------------------------------------------------------------------- /v2/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/metadata_test.go -------------------------------------------------------------------------------- /v2/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/middleware.go -------------------------------------------------------------------------------- /v2/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/middleware_test.go -------------------------------------------------------------------------------- /v2/notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/notifier.go -------------------------------------------------------------------------------- /v2/notifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/notifier_test.go -------------------------------------------------------------------------------- /v2/panicwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/panicwrap.go -------------------------------------------------------------------------------- /v2/panicwrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/panicwrap_test.go -------------------------------------------------------------------------------- /v2/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/payload.go -------------------------------------------------------------------------------- /v2/payload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/payload_test.go -------------------------------------------------------------------------------- /v2/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/report.go -------------------------------------------------------------------------------- /v2/report_publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/report_publisher.go -------------------------------------------------------------------------------- /v2/request_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/request_extractor.go -------------------------------------------------------------------------------- /v2/request_extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/request_extractor_test.go -------------------------------------------------------------------------------- /v2/sessions/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/config.go -------------------------------------------------------------------------------- /v2/sessions/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/config_test.go -------------------------------------------------------------------------------- /v2/sessions/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/integration_test.go -------------------------------------------------------------------------------- /v2/sessions/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/payload.go -------------------------------------------------------------------------------- /v2/sessions/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/publisher.go -------------------------------------------------------------------------------- /v2/sessions/publisher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/publisher_test.go -------------------------------------------------------------------------------- /v2/sessions/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/session.go -------------------------------------------------------------------------------- /v2/sessions/startup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/startup.go -------------------------------------------------------------------------------- /v2/sessions/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/tracker.go -------------------------------------------------------------------------------- /v2/sessions/tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/sessions/tracker_test.go -------------------------------------------------------------------------------- /v2/testutil/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-go/HEAD/v2/testutil/json.go --------------------------------------------------------------------------------