View Issue Details

IDProjectCategoryView StatusLast Update
0001044bareos-coreGeneralpublic2019-02-04 13:33
Reporterfrank Assigned To 
PrioritynormalSeverityfeatureReproducibilityN/A
Status newResolutionopen 
Summary0001044: comment a failed job
DescriptionI'm wondering if it is possible to add comments to a job? Let's say I have some failed jobs because of a network error, can I then one or more comments to this job, describing what the cause of the issue was for later reference?

Would prefer doing so via WebUI, but not sure if it is possible at all as of now.
TagsNo tags attached.
bareos-master: impact
bareos-master: action
bareos-19.2: impact
bareos-19.2: action
bareos-18.2: impact
bareos-18.2: action
bareos-17.2: impact
bareos-17.2: action
bareos-16.2: impact
bareos-16.2: action
bareos-15.2: impact
bareos-15.2: action
bareos-14.2: impact
bareos-14.2: action
bareos-13.2: impact
bareos-13.2: action
bareos-12.4: impact
bareos-12.4: action

Activities

frank

frank

2019-02-04 13:27

manager   ~0003243

Currently it's only possible by sqlquery command in bconsole to add one comment, but webui would not display it.

[root@kvm-2 ~]# bconsole
Connecting to Director localhost:9101
1000 OK: bareos-dir Version: 17.2.7 (16 Jul 2018)
Enter a period to cancel a command.
*sqlquery
Automatically selected Catalog: MyCatalog
Using Catalog "MyCatalog"
Entering SQL query mode.
Terminate each query with a semicolon.
Terminate query mode with a blank line.
Enter SQL query: UPDATE job SET comment = 'network issue' WHERE jobid = '26';
Enter SQL query: SELECT jobid,jobstatus,comment FROM job WHERE jobid = '26';
+-------+-----------+---------------+
| jobid | jobstatus | comment |
+-------+-----------+---------------+
| 26 | E | network issue |
+-------+-----------+---------------+
Enter SQL query:

Issue History

Date Modified Username Field Change
2019-02-04 13:01 frank New Issue
2019-02-04 13:27 frank Note Added: 0003243