(no) System Diagnostic Reports
Translation needed
The content of this page was copied from another page tree and needs to be translated or updated.
When you finish translation, make sure to
-
Replace the label NEEDS-TRANSLATING with TRANSLATED
-
Remove this macro from the page
Â
Since 3.7
Introduction
Various diagnostic reports can be accessed through System Diagnostics Reports panel. This panel contains diagnostic functions that return objects matching specific parameters.Â
Some of the reports can be parametrized to meet specific needs..
As this is primarily intended as a diagnostic function, it needs low level access to objects. Reports will include all objects regardless of their security settings.
As a result, this functionality has high security requirements. A user that would like to execute this function, must have Administrator and a Security Administrator roles!
Â
Reports
Parameters list depend on the report type selected.
Please read the instructions in the info box, to understand what the parameters are intended for.Â
When ready, select Run Filter button. The results are always presented in the same form. To see more properties of listed object, select specific row form the report list.
You can also use the "eye" icon to view the object, but it will not work in case of disconnected objects.Â
Show links function can be used to examine the object details. It can be useful in the following scenarios:
check where the object is linked to
re-link disconnected objects
check spot link
Please also note that function Show links inside System Diagnostic window work same as in other places of system so security rights to objects will apply.
This may result in situation when for exmaple: you have found object with 3 or more spots but when checking links you will not see them as your user does not have needed permissions.
Disconnected Objects
Disconnected Objects filter looks for objects that do not have path to root object in any of the defined perspectives. Only the topmost objects will be returned.
Objects without Spots
For a selected object class, find all objects that do not have any spots linked
Required parameter: Object class.
Objects with Multiple Spots
Find objects of given class, that have more than given number of spots on single document and layer (search is done in current version).
Required parameter: Object class and number of spots.
Access through API
Results of the report can also be accessed via API by using the following API call:
api/diagnostic/objects/{report_name}/json
Replace the {report_name} with one of the following values:
Disconnected Objects
Report name:Â disconnected
Query Parameters: none
Objects without Spots
Report name:Â withoutspots
Query Parameters:Â
classId (number)
Objects with Multiple Spots
Report name:Â withmultiplespots
Query Parameters:Â
classId (number)
spotsNum (number)
Â
Example call:
Â
https://localhost/api/diagnostic/objects/withmultiplespots/json?classId=108&spotsNum=1&offset=0&limit=500
Sample Result:
{
"total":2,
"list":[
{
"metadata":{
},
"contentType":0,
"contentId":0,
"objectName":"11",
"objectId":"5167",
"classId":"108"
},
{
"metadata":{
},
"contentType":0,
"contentId":0,
"objectName":"A113a",
"objectId":"46154",
"classId":"108"
} ]
}
Â