Hi, I just updated server software to 2024.2. Using the new version of Alteryx Sever Usage Report Utility (v0_1_11). I'm exporting all outputs to yxdb. In the Execution.yxdb output I see a column 'AlteryxResultCode'. I'm thinking these are Warning, Error, Success but am not sure which result goes with each result code. I'd greatly appreciate if someone could point me to documentation or other resource.
Solved! Go to Solution.
@pdx MyMilestoneCardwrote:Hi, I just updated server software to 2024.2. Using the new version of Alteryx Sever Usage Report Utility (v0_1_11). I'm exporting all outputs to yxdb. In the Execution.yxdb output I see a column 'AlteryxResultCode'. I'm thinking these are Warning, Error, Success but am not sure which result goes with each result code. I'd greatly appreciate if someone could point me to documentation or other resource.
The `AlteryxResultCode` in the `Execution.yxdb` file gives the numerical status allotted to each workflow job. Codes passed to this parameter can have the following values and meanings: **`0` for Success**, **`1` for Warning**, and **`2` for Error`.** It is a key denoting the state of your custom server health monitoring package and lets you almost immediately know whether each workflow run ended successfully or ran into issues.
@steven456a is correct, I just went through this on my own server. 0 is Success, 1 is Warning, 2 is Error.
Bacon