COMMENTONCOLUMNresource_monitoring.resource_capacity.availableIS'This is the current (momentaneous) available capacity of this resource (which is total-used) and has to be set from a monitoring system.';
COMMENTONCOLUMNresource_monitoring.resource_capacity.totalIS'This is the total (momentaneous) available capacity of this resource. Usually the total capacity is fixed, but it could change, for example when you add an extra disk.';
CREATETABLEresource_monitoring.resource_usage(
CREATETABLEresource_monitoring.resource_usage(
idserialNOTNULL,
idserialNOTNULL,
...
@@ -457,6 +459,9 @@ ALTER VIEW resource_monitoring.resource_view
...
@@ -457,6 +459,9 @@ ALTER VIEW resource_monitoring.resource_view
OWNERTOresourceassignment;
OWNERTOresourceassignment;
COMMENTONVIEWresource_monitoring.resource_view
COMMENTONVIEWresource_monitoring.resource_view
IS'view on virtual_instrument.resource_view including availability and capacity';
IS'view on virtual_instrument.resource_view including availability and capacity';
COMMENTONCOLUMNresource_monitoring.resource_view.available_capacityIS'This is the current (momentaneous) available capacity of this resource (which is total-used) and has to be set from a monitoring system.';
COMMENTONCOLUMNresource_monitoring.resource_view.used_capacityIS'This is the current (momentaneous) used capacity of this resource (which is total-available) and has to be set from a monitoring system.';
COMMENTONCOLUMNresource_monitoring.resource_view.total_capacityIS'This is the total (momentaneous) available capacity of this resource. Usually the total capacity is fixed, but it could change, for example when you add an extra disk.';