Logging
Logging is the practice of emitting log messages that describe what is happening in the
system, or “events” in short. Log events can have varying degrees of severity, such as
debug, info, warning, error or even critical. By default, Open Object
emits logs with level info and higher.
A collection of log events with a correlation ID (like a request or trace ID) allow one to reconstruct the chain of events that took place which lead to a particular outcome.
Open Object emits structured logs in JSON format (unless explicitly configured otherwise), which should make log aggregation and analysis easier.
We try to keep a consistent log message structure, where the following keys are (usually) present:
sourceThe component in the application stack that produced the log entry. Typical values are
uwsgiandapp.levelThe severity level of the log message. One of
debug,info,warning,errororcritical.timestampThe moment when the log entry was produced, a string in ISO-8601 format. Most of the logs have microsecond precision, but some of them are limited to second precision.
eventThe event that occurred, e.g.
request_startedorspawned worker (PID 123). This gives the semantic meaning to the log entry.
Other keys that frequently occur are:
request_idPresent for application logs emitted during an HTTP request, makes it possible to correlate multiple log entries for a single request. Not available in logs emitted by background tasks or logs emitted before/after the Open Object app.
Tip
Certain log aggregation solutions require you to configure “labels” to extract for efficient querying. You can use the above summary of log context keys to configure this according to your needs.
Note
We can not 100% guarantee that every log message will always be JSON due to limitations in third party software/packages that we use. Most (if not all) log aggregation technologies support handling both structured and unstructured logs.
Logging
Format Objects
Open Object emits structured logs (using structlog). A log line can be formatted like this:
{
"object_uuid":"1734afac-4628-446d-b344-f39b42f48bd9",
"objecttype_uuid":"b427ef84-189d-43aa-9efd-7bb2c459e281",
"objecttype_version":1,
"token_identifier":"application-test",
"token_application":"Application (test)",
"event":"object_created",
"user_id":null,
"request_id":"2f9e9a5b-d549-4faa-a411-594aa8a52eee",
"timestamp":"2025-05-19T14:09:20.339166Z",
"logger":"objects.api.serializers",
"level":"info"
}
Each log line will contain an event type, a timestamp and a level.
Dependent on your configured LOG_LEVEL (see Environment configuration reference for more information),
only log lines with of that level or higher will be emitted.
API log events
Below is the list of logging event types that the API can emit. In addition to the mentioned
context variables, these events will also have the request bound metadata described in the django-structlog documentation.
Objects
object_created: created anObjectvia the API. Additional context:object_uuid,objecttype_uuid,objecttype_version,token_identifier,token_application.object_updated: updated anObjectvia the API. Additional context:object_uuid,objecttype_uuid,objecttype_version,token_identifier,token_application.deprecated_endpoint_called: a deprecated endpoint was called. Additional context:endpoint.
Objecttypes
objecttype_created: created anObjecttypevia the API. Additional context:uuid,naam,token_identifier,token_application.objecttype_updated: updated anObjecttypevia the API. Additional context:uuid,naam,token_identifier,token_application.objecttype_deleted: deleted anObjecttypevia the API. Additional context:uuid,naam,token_identifier,token_application.object_version_created: created anObject_versionvia the API. Additional context:version,objecttype_uuid,token_identifier,token_application.object_version_updated: updated anObject_versionvia the API. Additional context:version,objecttype_uuid,token_identifier,token_application.object_version_deleted: deleted anObject_versionvia the API. Additional context:version,objecttype_uuid,token_identifier,token_application.deprecated_endpoint_called: a deprecated endpoint was called. Additional context:endpoint.
Exceptions
Handled exceptions follow a standardized JSON format to ensure consistency and improve error tracking.
Most fields are standard and include:
title, code, status, event, source, user_id, request_id, timestamp, logger and level.
A new field data has been added to provide detailed information about which input parameters caused the error in API calls.
{
"title": "Authentication credentials were not provided.",
"code": "not_authenticated",
"status": 401,
"data": {
"detail": "Authentication credentials were not provided."
},
"event": "api.handled_exception",
"user_id": null,
"request_id": "68b46bf0-a5b8-43f7-a550-e37dee617bff",
"source": "app",
"timestamp": "2025-10-06T07:43:40.991929Z",
"logger": "objects.utils.views",
"level": "error"
}
Uncaught exceptions that occur via the API are logged as api.uncaught_exception events
and contain the traceback of the exception.
{
"event": "api.uncaught_exception",
"request_id": "9a5c781d-b15c-4b3a-8910-e7968ae37cb6",
"user_id": null,
"timestamp": "2025-10-06T08:31:57.572352Z",
"logger": "objects.utils.views",
"level": "error",
"exception": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.12/site-packages/rest_framework/views.py\", line 497, in dispatch\n self.initial(request, *args, **kwargs)\n File \"/usr/local/lib/python3.12/site-packages/vng_api_common/geo.py\", line 30, in initial\n super().initial(request, *args, **kwargs)\n File \"/usr/local/lib/python3.12/site-packages/rest_framework/views.py\", line 415, in initial\n self.check_permissions(request)\n File \"/usr/local/lib/python3.12/site-packages/rest_framework/views.py\", line 332, in check_permissions\n if not permission.has_permission(request, self):\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/app/src/objects/token/permissions.py\", line 10, in has_permission\n 1 / 0\n ~~^~~\nZeroDivisionError: division by zero"
}
Setup configuration
no_permissions_defined: while running the token configuration step, it was detected that neither permissions noris_superuserwas set for the token. Additional context:token_identifier.no_tokens_defined: while running the token configuration step, it was detected that the config file did not define any tokens.configuring_token: attempting to configure a token. Additional context:token_identifier.save_token_to_database: attempting to save a token to the database. Additional context:token_identifier.token_configuration_failure: configuring a token failed. Additional context:token_identifier,exc_info.token_configuration_success: configuring a token succeeded. Additional context:token_identifier.
Data migrations
token_identifier_generated: while migrating, anidentifierwas generated for a token. Additional context:token_identifier,token_pk.missing_service_for_objecttype: while migrating, aServiceobject is missing for anObjectType. Additional context:object,objecttype.invalid_objecttype: while migrating, theObjectTypeis not valid, because it was not possible to parse a UUID from it. Additional context:object,objecttype.
Migration checks
unimported_objecttypes: when upgrading from Objects API 3.6.0 to Open Object 4.0.0, objecttypes where found that have not been imported with theimport_objecttypescommand (see ObjectTypes API migration). Additional context:uuids.
Third party library events
For more information about log events emitted by third party libraries, refer to the documentation for that particular library