MessageProcessingLog

API ManagementCloud IntegrationEnterprise IntegrationEvent MeshiPaaSSAPSAP BTP

Properties

Name Type Description
MessageGuid string Unique identifier for the message
CorrelationId string Correlation ID linking related messages
ApplicationMessageId string Application-level message ID
ApplicationMessageType string Application message type
LogStart string Message processing start time
LogEnd string Message processing end time
Sender string Sending system or adapter
Receiver string Receiving system or adapter
IntegrationFlowName string Name of the integration flow that processed the message
Status string Processing status
LogLevel string Log verbosity level
View JSON Schema on GitHub

JSON Schema

sap-integration-suite-messageprocessinglog-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageProcessingLog",
  "title": "MessageProcessingLog",
  "type": "object",
  "properties": {
    "MessageGuid": {
      "type": "string",
      "description": "Unique identifier for the message"
    },
    "CorrelationId": {
      "type": "string",
      "description": "Correlation ID linking related messages"
    },
    "ApplicationMessageId": {
      "type": "string",
      "description": "Application-level message ID"
    },
    "ApplicationMessageType": {
      "type": "string",
      "description": "Application message type"
    },
    "LogStart": {
      "type": "string",
      "description": "Message processing start time"
    },
    "LogEnd": {
      "type": "string",
      "description": "Message processing end time"
    },
    "Sender": {
      "type": "string",
      "description": "Sending system or adapter"
    },
    "Receiver": {
      "type": "string",
      "description": "Receiving system or adapter"
    },
    "IntegrationFlowName": {
      "type": "string",
      "description": "Name of the integration flow that processed the message"
    },
    "Status": {
      "type": "string",
      "description": "Processing status",
      "enum": [
        "COMPLETED",
        "FAILED",
        "PROCESSING",
        "RETRY",
        "ESCALATED",
        "DISCARDED",
        "ABANDONED"
      ]
    },
    "LogLevel": {
      "type": "string",
      "description": "Log verbosity level",
      "enum": [
        "INFO",
        "DEBUG",
        "TRACE",
        "ERROR"
      ]
    }
  }
}