{% extends "base.html" %} {% load static %} {% block title %}Delete Integration Log{% endblock %} {% block content %}

Delete Integration Log

Back to Log

Confirm Integration Log Deletion

Are you sure you want to delete this integration log?

This action cannot be undone. The integration log and all associated data will be permanently removed.

Integration Information
Integration: {{ object.integration_name }}
Operation: {{ object.get_operation_type_display }}
Status: {{ object.get_status_display }}
External ID: {{ object.external_id|default:"Not provided" }}
Timing Information
Started: {% if object.started_at %} {{ object.started_at|date:"M d, Y g:i A" }} {% else %} Not started {% endif %}
Completed: {% if object.completed_at %} {{ object.completed_at|date:"M d, Y g:i A" }} {% else %} Not completed {% endif %}
Execution Time: {% if object.execution_time %} {{ object.execution_time }} ms {% else %} Not recorded {% endif %}
Retry Count: {{ object.retry_count|default:0 }}
{% if object.error_message %}
Error Information
{{ object.error_message }}
{% endif %} {% if object.request_data or object.response_data %}
{% if object.request_data %}
Request Data
{{ object.request_data }}
{% endif %} {% if object.response_data %}
Response Data
{{ object.response_data }}
{% endif %}
{% endif %}
{% csrf_token %}
These notes will be recorded for audit purposes.
What happens when you delete this log?
  • The integration log record will be permanently removed
  • All request and response data will be lost
  • Error information and debugging data will be deleted
  • This action will be recorded in the audit log
  • Integration statistics may be affected
  • Related system logs will remain intact
Cancel
{% if object.status == 'running' or object.retry_count > 0 %}
Special Considerations
{% if object.status == 'running' %}
Active Operation: This integration is currently running. Deleting this log may affect monitoring and debugging capabilities.
{% endif %} {% if object.retry_count > 0 %}
Retry History: This operation has been retried {{ object.retry_count }} time{{ object.retry_count|pluralize }}. Deleting this log will remove the retry history.
{% endif %}
{% endif %}
Related Information
Integration Details
  • Log ID: {{ object.pk }}
  • Created: {{ object.created_at|date:"M d, Y g:i A" }}
  • Last Updated: {{ object.updated_at|date:"M d, Y g:i A" }}
System Information
  • Integration Name: {{ object.integration_name }}
  • Operation Type: {{ object.get_operation_type_display }}
  • {% if object.metadata %}
  • Has Metadata: Yes
  • {% endif %}
{% endblock %}