Created
March 15, 2011 16:17
-
-
Save tylerflint/870959 to your computer and use it in GitHub Desktop.
transaction status sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id":"abcde12", | |
"status":"incomplete", | |
"description": "Installing App", | |
"progress":[ | |
{ | |
"name":"app.router.register", | |
"description": "registering app on router", | |
"status": "complete", | |
"duration": "200" | |
}, | |
{ | |
"name":"app.toaster.find", | |
"description": "allocating available resource for app environment", | |
"status": "complete", | |
"duration": "100" | |
}, | |
{ | |
"name":"app.toaster.init", | |
"description": "initializing app environment", | |
"status": "complete", | |
"duration": "80" | |
}, | |
{ | |
"name":"app.toaster.clone", | |
"description": "cloning repo from github", | |
"status": "incomplete" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment