Web monitoring application metadata
Overview
Metadata file for the web application "Monitoring". Sets the structure of objects, methods, parameters, filters and their descriptions.
Provides the web application with a description of the structure of the methods API /api/monitor/v1/<OBJECT>/<METHOD>
.
The "Incoplax" is not used directly by the system, it is only used for output via API. On this basis, the content of the files is arbitrary, including the internal structure.
It is deprecated for use in REST.
{ "objects": { "<OBJECT>": { "title": "<TITLE>", "methods": [ { "method": "<METHOD_NAME>", "modes": ["<MODE_1>", ...], "filters": [ { "name": str, "type": str, "min": int, "inputtype": str, "title": str, "help": ["String1", "String2", ...] }, ... ], "params": [ { "name": str, "type": str ("integer", "text"), "inputtype": str ("select", "text"), "min": int, "options": { "Key1": "Title1", "Key2": "Title2", ... }, "title": string, "help": ["String1", "String2", ...] }, ... ] }, ... ] }, ... } }
Field | Description |
---|---|
|
The name of the object type to be substituted in the placeholder URL. |
|
The name of the object type displayed in the selection list/table in the web application. |
|
the name of the object method to be substituted in the placeholder URL. |
|
(optional) list of possible modes as one of the parameters of the executed API method (parameter |
|
(optional) list of filters that can be used as parameters of the API method being executed. Parameter descriptor fields |
|
(optional) list of parameters that can be assigned. Parameter descriptor fields |
Field | Description |
---|---|
|
parameter name. |
|
parameter header displayed in the application. |
|
parameter header displayed in the application ( |
|
(optional, for |
|
(optional, for |
|
(for |
|
parameter header displayed in the application. |
|
multiline tooltip displayed in the application, as a list of strings. |