Gets the logs for a feature group row process
REQUIRED | KEY | TYPE | DESCRIPTION |
---|---|---|---|
Yes | deploymentId | str | The deployment id |
Yes | primaryKeyValue | str | The primary key value |
KEY | TYPE | DESCRIPTION | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
success | Boolean | true if the call succeeded, false if there was an error | ||||||||||||||||||
result | FeatureGroupRowProcessLogs |
|
TYPE | WHEN |
---|---|
DataNotFoundError |
|
curl
curl "https://api.abacus.ai/api/getFeatureGroupRowProcessLogsByKey?deploymentId=" \
-X POST \
-H "apiKey: *******************"
-d
'{
"primaryKeyValue": "b"
}'
{
"success": true,
"result": {
"logs": "STDOUT:\n\nThis is print\n\n\nSTDERR:\n\n2023-09-25 18:29:23,078 - ERROR - This is an error\n\n\n",
"featureGroupId": "",
"deploymentId": "",
"primaryKeyValue": "b",
"featureGroupRowProcessId": ""
}
}
python
client.get_feature_group_row_process_logs_by_key(
deployment_id='',
primary_key_value='b'
)
FeatureGroupRowProcessLogs(logs='STDOUT:\n\nThis is print\n\n\nSTDERR:\n\n2023-09-25 18:29:23,078 - ERROR - This is an error\n\n\n',
feature_group_id='',
deployment_id='',
primary_key_value='b',
feature_group_row_process_id='')