Sample application showing how to use Sentry with Spring Webflux and Spring boot.
To see events triggered in this sample application in your Sentry dashboard, go to src/main/resources/application.properties
and replace the test DSN with your own DSN.
Then, execute a command from the module directory:
../../gradlew bootRun
Make an HTTP request that will trigger events:
curl -XPOST --user user:password http://localhost:8080/person/ -H "Content-Type:application/json" -d '{"firstName":"John","lastName":"Smith"}'
The following queries can be used to test the GraphQL integration.
{
greeting(name: "crash")
}
query GreetingQuery($name: String) {
greeting(name: $name)
}
variables:
{
"name": "crash"
}