Set Up Logs
Structured logs allow you to send, view and query logs sent from your applications within Sentry.
With Sentry Structured Logs, you can send text-based log information from your applications to Sentry. Once in Sentry, these logs can be viewed alongside relevant errors, searched by text-string, or searched using their individual attributes.
Logs for JUL are supported in Sentry Java SDK version 8.16.0 and above.
To enable logging, you need to configure the option in sentry.properties or when calling Sentry.init.
logs.enabled=true
logs.enabled=true
import io.sentry.Sentry;
Sentry.init(options -> {
options.setDsn("___PUBLIC_DSN___");
options.getLogs().setEnabled(true);
});
import io.sentry.Sentry
Sentry.init { options ->
options.dsn = "___PUBLIC_DSN___"
options.logs.enabled = true
}
You may also configure the Sentry handler and set minimumLevel in logging.properties:
# Configure the Sentry handler
handlers=io.sentry.jul.SentryHandler
# Set the minimum level for Sentry handler
io.sentry.jul.SentryHandler.minimumLevel=CONFIG
# Configure the Sentry handler
handlers=io.sentry.jul.SentryHandler
# Set the minimum level for Sentry handler
io.sentry.jul.SentryHandler.minimumLevel=CONFIG
Once the handler is configured with logging enabled, any logs at or above the minimumLevel will be sent to Sentry.
To filter logs, or update them before they are sent to Sentry, you can use the getLogs().beforeSend option.
import io.sentry.Sentry;
Sentry.init(options -> {
options.setDsn("___PUBLIC_DSN___");
options.getLogs().setBeforeSend((logEvent) -> {
// Modify the event here:
logEvent.setBody("new message body");
return logEvent;
});
});
import io.sentry.Sentry;
Sentry.init(options -> {
options.setDsn("___PUBLIC_DSN___");
options.getLogs().setBeforeSend((logEvent) -> {
// Modify the event here:
logEvent.setBody("new message body");
return logEvent;
});
});
import io.sentry.Sentry
import io.sentry.SentryOptions.Logs.BeforeSendLogCallback
Sentry.init { options ->
options.dsn = "___PUBLIC_DSN___"
options.logs.beforeSend = BeforeSendLogCallback { logEvent ->
// Modify the event here:
logEvent.body = "new message body"
return logEvent;
}
}
The beforeSend function receives a log object, and should return the log object if you want it to be sent to Sentry, or null if you want to discard it.
You can use the contextTags option to include specific properties from the Mapped Diagnostic Context (MDC) as attributes on log entries sent to Sentry.
For detailed configuration examples, see the Advanced Usage documentation for your logging framework.
Instead of many thin logs that are hard to correlate, emit one comprehensive log per operation with all relevant context.
This makes debugging dramatically faster — one query returns everything about a specific order, user, or request.
// ❌ Scattered thin logs
Sentry.logger().info("Starting checkout");
Sentry.logger().info("Validating cart");
Sentry.logger().info("Processing payment");
Sentry.logger().info("Checkout complete");
// ✅ One wide event with full context
Sentry.logger().log(
SentryLogLevel.INFO,
SentryLogParameters.create(
SentryAttributes.of(
SentryAttribute.stringAttribute("order_id", order.getId()),
SentryAttribute.stringAttribute("user_id", user.getId()),
SentryAttribute.stringAttribute("user_tier", user.getSubscription()),
SentryAttribute.doubleAttribute("cart_value", cart.getTotal()),
SentryAttribute.integerAttribute("item_count", cart.getItems().size()),
SentryAttribute.stringAttribute("payment_method", "stripe")
)
),
"Checkout completed"
);
// ❌ Scattered thin logs
Sentry.logger().info("Starting checkout");
Sentry.logger().info("Validating cart");
Sentry.logger().info("Processing payment");
Sentry.logger().info("Checkout complete");
// ✅ One wide event with full context
Sentry.logger().log(
SentryLogLevel.INFO,
SentryLogParameters.create(
SentryAttributes.of(
SentryAttribute.stringAttribute("order_id", order.getId()),
SentryAttribute.stringAttribute("user_id", user.getId()),
SentryAttribute.stringAttribute("user_tier", user.getSubscription()),
SentryAttribute.doubleAttribute("cart_value", cart.getTotal()),
SentryAttribute.integerAttribute("item_count", cart.getItems().size()),
SentryAttribute.stringAttribute("payment_method", "stripe")
)
),
"Checkout completed"
);
Add attributes that help you prioritize and debug:
- User context — tier, account age, lifetime value
- Transaction data — order value, item count
- Feature state — active feature flags
- Request metadata — endpoint, method, duration
This lets you filter logs by high-value customers or specific features.
Sentry.logger().log(
SentryLogLevel.INFO,
SentryLogParameters.create(
SentryAttributes.of(
// User context
SentryAttribute.stringAttribute("user_id", user.getId()),
SentryAttribute.stringAttribute("user_tier", user.getPlan()),
SentryAttribute.integerAttribute("account_age_days", user.getAgeDays()),
// Request data
SentryAttribute.stringAttribute("endpoint", "/api/orders"),
SentryAttribute.stringAttribute("method", "POST"),
SentryAttribute.integerAttribute("duration_ms", 234),
// Business context
SentryAttribute.doubleAttribute("order_value", 149.99)
)
),
"API request completed"
);
Sentry.logger().log(
SentryLogLevel.INFO,
SentryLogParameters.create(
SentryAttributes.of(
// User context
SentryAttribute.stringAttribute("user_id", user.getId()),
SentryAttribute.stringAttribute("user_tier", user.getPlan()),
SentryAttribute.integerAttribute("account_age_days", user.getAgeDays()),
// Request data
SentryAttribute.stringAttribute("endpoint", "/api/orders"),
SentryAttribute.stringAttribute("method", "POST"),
SentryAttribute.integerAttribute("duration_ms", 234),
// Business context
SentryAttribute.doubleAttribute("order_value", 149.99)
)
),
"API request completed"
);
Pick a naming convention and stick with it across your codebase. Inconsistent names make queries impossible.
Recommended: Use snake_case for custom attributes to match common conventions.
// ❌ Inconsistent naming
SentryAttribute.stringAttribute("user", "123")
SentryAttribute.stringAttribute("userId", "123")
SentryAttribute.stringAttribute("user_id", "123")
SentryAttribute.stringAttribute("UserID", "123")
// ✅ Consistent snake_case
SentryAttributes.of(
SentryAttribute.stringAttribute("user_id", "123"),
SentryAttribute.stringAttribute("order_id", "456"),
SentryAttribute.doubleAttribute("cart_value", 99.99),
SentryAttribute.integerAttribute("item_count", 3)
)
// ❌ Inconsistent naming
SentryAttribute.stringAttribute("user", "123")
SentryAttribute.stringAttribute("userId", "123")
SentryAttribute.stringAttribute("user_id", "123")
SentryAttribute.stringAttribute("UserID", "123")
// ✅ Consistent snake_case
SentryAttributes.of(
SentryAttribute.stringAttribute("user_id", "123"),
SentryAttribute.stringAttribute("order_id", "456"),
SentryAttribute.doubleAttribute("cart_value", 99.99),
SentryAttribute.integerAttribute("item_count", 3)
)
The Java SDK automatically sets several default attributes on all log entries to provide context and improve debugging:
environment: The environment set in the SDK if defined. This is sent from the SDK assentry.environment.release: The release set in the SDK if defined. This is sent from the SDK assentry.release.sdk.name: The name of the SDK that sent the log. This is sent from the SDK assentry.sdk.name.sdk.version: The version of the SDK that sent the log. This is sent from the SDK assentry.sdk.version.
If the log was parameterized, Sentry adds the message template and parameters as log attributes.
message.template: The parameterized template string. This is sent from the SDK assentry.message.template.message.parameter.X: The parameters to fill the template string. X can either be the number that represent the parameter's position in the template string (sentry.message.parameter.0,sentry.message.parameter.1, etc) or the parameter's name (sentry.message.parameter.item_id,sentry.message.parameter.user_id, etc). This is sent from the SDK assentry.message.parameter.X.
For example, with the following log:
Sentry.logger().error("A %s log message", "formatted");
Sentry.logger().error("A %s log message", "formatted");
Sentry will add the following attributes:
message.template: "A %s log message"message.parameter.0: "formatted"
server.address: The address of the server that sent the log. Equivalent toserver_namethat gets attached to Sentry errors.
If user information is available in the current scope, the following attributes are added to the log:
user.id: The user ID.user.name: The username.user.email: The email address.
If a log is generated by an SDK integration, the SDK will set additional attributes to help you identify the source of the log.
origin: The origin of the log. This is sent from the SDK assentry.origin.
Any attributes set on the current scope via Sentry.setAttribute() or Sentry.setAttributes() are automatically included on all log entries. See Usage above for details.
Available integrations:
If there's an integration you would like to see, open a new issue on GitHub.
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").