yes, all of these files are located in c:\test\dicom, no subdirectories.
Ad Widget
Collapse
Create a trigger for files bigger than "x" MB
Collapse
X
-
-
Comment
-
How can I make vfs.dir.size return output in MB or GB, not Bytes?Last edited by z0nk; 09-11-2024, 19:23.Comment
-
If you want it to be translated on graphs and overview in latest data - just add unit type for item as "B"
If you want it to be stored in DB and shown in latest data actual values view (rarely needed) - preprocessing with custom multiplier of 0.0009765625. 1 step of this preprocessing for KB, 2 times for MB, 3 times for GB
-
-
You can use this kind of key if you want to receive an alarm but this case works if normally you don't have files with size more than 260 MB.
And this will create an alarm everytime that you will have one or more file with size more than 260 MB.
Item key: vfs.dir.count[C:\test\dicom,,,,,,260000000,,,,]
Alarm exxpression: last(vfs.dir.count[C:\test\dicom,,,,,,260000000,,,,])=0👍 1Comment
Comment