Logs_Haynes_GetCipher Tables
The logs_haynes_getCipher_latest and logs_haynes_getCipher_changelog tables stores the requests and responses of each getCipher haynes pro API call made, including errors and api timestamps.
🔹 Standard Columns​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
document_name | STRING | YES | Name of the Firestore document |
document_event_id | STRING | YES | Unique ID representing the document event (change ID) |
document_timestamp | TIMESTAMP | YES | Timestamp when the document event occurred |
document_operation | STRING | YES | Type of Firestore operation (e.g., CREATE, UPDATE, DELETE) |
document_id | STRING | YES | ID of the Firestore document |
apiCallTimeInMilliSeconds | INT64 | YES | Time taken to complete the API call in milliseconds |
context | STRING | YES | Context of the log (e.g., module or feature name) |
level | STRING | YES | Log level |
🔸 Struct Columns​
request
​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
message | STRING | YES | Description of the request |
payload.payload | STRING | YES | Payload data passed in the request |
timestamp | INT64 | YES | Timestamp of the request (in Unix time) |
response
​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
data | STRING | YES | Response data string |
message | STRING | YES | Response message |
timestamp | INT64 | YES | Timestamp of the response (in Unix time) |
timestamp
​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
seconds | INT64 | YES | Seconds since Unix epoch |
nanoseconds | INT64 | YES | Nanoseconds part of the timestamp |
error
​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
data | STRING | YES | Additional error data |
message | STRING | YES | Error message |
name | STRING | YES | Name/type of the error |
stack | STRING | YES | Stack trace of the error |
timestamp | TIMESTAMP | YES | Timestamp when the error occurred |