If there is a better solution to my problem than what I am trying to do, please let me know.
We are going to start using LLD for our file systems. The template we had previously been using had triggers set differently for '/' partitions than every other partition. Since the LLD discovers all of the partitions now, is there a way to distinguish between the discovered file systems?
The best example that I can think of is something like this...
...and this for everything else...
We are going to start using LLD for our file systems. The template we had previously been using had triggers set differently for '/' partitions than every other partition. Since the LLD discovers all of the partitions now, is there a way to distinguish between the discovered file systems?
The best example that I can think of is something like this...
Code:
{Template_OS_Linux_v2:vfs.fs.size[{#FSNAME},pfree].last(0)}<10 & {#FSNAME}="/"
Code:
{Template_OS_Linux_v2:vfs.fs.size[{#FSNAME},pfree].last(0)}<6 & NOT{#FSNAME}="/"
Comment