Get Raw XLog
get_raw_xlogRetrieve raw XLog transaction data with hash IDs. Supports single lookup, GXID traces, filtered search, pagination, and real-time streaming.
Instructions
Get raw (non-decoded) XLog transaction data. Unlike search_transactions which returns decoded data, this returns raw XLog objects with hash IDs. Supports five modes: single lookup, GXID distributed trace, filtered search, pageable list, and real-time streaming. Use lookup_text to resolve hash IDs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ip | No | Client IP filter (for 'search' mode) | |
| date | No | Date in YYYYMMDD format (required for all modes except 'realtime') | |
| gxid | No | Global transaction ID (required for 'gxid' mode) | |
| mode | Yes | 'single' gets one XLog by txid, 'gxid' gets by global transaction ID, 'search' searches with filters, 'pageable' gets a page of XLogs, 'realtime' gets recent real-time XLogs | |
| txid | No | Transaction ID (required for 'single' mode) | |
| login | No | Login ID filter (for 'search' mode) | |
| end_hms | No | End time as HHMMSS string (alternative to end_time_millis) | |
| service | No | Service name filter (for 'search' mode, partial match) | |
| obj_hash | No | Object hash filter (for 'search' mode) | |
| last_txid | No | Last txid from previous page (for 'pageable' pagination) | |
| start_hms | No | Start time as HHMMSS string (alternative to start_time_millis) | |
| xlog_loop | No | Loop offset for 'realtime' mode (from previous response) | |
| obj_hashes | No | Comma-separated object hashes (required for 'pageable' and 'realtime' modes) | |
| page_count | No | Page size for 'pageable' mode (max 30000, default 10000) | |
| xlog_index | No | Index offset for 'realtime' mode (from previous response) | |
| last_xlog_time | No | Last XLog time from previous page (for 'pageable' pagination) | |
| end_time_millis | No | End time in epoch millis (for 'search' and 'pageable' modes) | |
| start_time_millis | No | Start time in epoch millis (for 'search' and 'pageable' modes) |