Description Usage Arguments Details Value Examples
It shows a job log or traces a specific job
1 2 3 | show_job_log(url, job_id)
trace_job(url, job_id)
|
url |
string url of server: It must contain the server address and base url; service name is added automatically |
job_id |
string id of the job |
If error occurs, a specific error is printed
Log or trace text
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## Login to GMQL REST services suite as guest
remote_url = "http://www.gmql.eu/gmql-rest/"
login_gmql(remote_url)
## List all jobs
list_jobs <- show_jobs_list(remote_url)
## Not run:
jobs_1 <- list_jobs$jobs[[1]]
## Show jobs_1 log
show_job_log(remote_url, jobs_1)
## Trace jobs_1
trace_job(remote_url, jobs_1)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.