Excluding a certain file system from Zabbix regex based disk usage monitoringWhat does Zabbix message “Free disk space is less than XX% on volume Shared memory” mean?Choosing a monitoring system for a dynamically scaling environment: Nagios v. ZabbixZabbix Log Monitoring - Duplicate alertsCan Zabbix alert me when an SNMP device does not respond?Linux: Is it possible to know which options an installation was configured and compiled with?How to automate zabbix web scenarios for vhosts?Disk space monitoring with Zabbix while file descriptor/handle still openZabbix Application MonitoringLog monitoring via ZabbixServer 2012 R2 System Disk Full (Unknown File)Zabbix graph not showing disk usage
Modern approach to radio buttons
In what episode of TOS did a character on the bridge make a comment about raising one to some power?
Tic-Tac-Toe for the terminal
What does the term “mohel” mean in Hilchot Melicha (salting)?
Is this story about US tax office reasonable?
Probability of fraction not being able to be simplified
Glitch in AC sine wave interfering with phase cut dimming
Grammar of "Nec huic publico, ut opinantur, malo turba tantum et imprudens uulgus ingemuit"
Do you play the upbeat when beginning to play a series of notes, and then after?
How to capture more stars?
How did early x86 BIOS programmers manage to program full blown TUIs given very few bytes of ROM/EPROM?
What does "tea juice" mean in this context?
The Passive Wisdom (Perception) score of my character on D&D Beyond seems too high
Is a post-climate apocolypse city in which many or most insects have disappeared realistic?
What are these (utility?) boxes at the side of the house?
Which noble houses were destroyed during the Game of Thrones?
Why doesn't the Earth's acceleration towards the Moon accumulate to push the Earth off its orbit?
How can I prevent interns from being expendable?
Is floating in space similar to falling under gravity?
Why does the UK have more political parties than the US?
Could IPv6 make NAT / port numbers redundant?
Looking after a wayward brother in mother's will
Scaffoldings in New York
Restoring order in a deck of playing cards
Excluding a certain file system from Zabbix regex based disk usage monitoring
What does Zabbix message “Free disk space is less than XX% on volume Shared memory” mean?Choosing a monitoring system for a dynamically scaling environment: Nagios v. ZabbixZabbix Log Monitoring - Duplicate alertsCan Zabbix alert me when an SNMP device does not respond?Linux: Is it possible to know which options an installation was configured and compiled with?How to automate zabbix web scenarios for vhosts?Disk space monitoring with Zabbix while file descriptor/handle still openZabbix Application MonitoringLog monitoring via ZabbixServer 2012 R2 System Disk Full (Unknown File)Zabbix graph not showing disk usage
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I found this answer describing how to exclude a shared memory mount from regex based disk usage monitoring in Zabbix.
Is there any way to exclude a certain file system (CIFS in this case)... for example based on mount point?
Br,
Harri
regex disk-space-utilization zabbix system-monitoring exclude
add a comment |
I found this answer describing how to exclude a shared memory mount from regex based disk usage monitoring in Zabbix.
Is there any way to exclude a certain file system (CIFS in this case)... for example based on mount point?
Br,
Harri
regex disk-space-utilization zabbix system-monitoring exclude
add a comment |
I found this answer describing how to exclude a shared memory mount from regex based disk usage monitoring in Zabbix.
Is there any way to exclude a certain file system (CIFS in this case)... for example based on mount point?
Br,
Harri
regex disk-space-utilization zabbix system-monitoring exclude
I found this answer describing how to exclude a shared memory mount from regex based disk usage monitoring in Zabbix.
Is there any way to exclude a certain file system (CIFS in this case)... for example based on mount point?
Br,
Harri
regex disk-space-utilization zabbix system-monitoring exclude
regex disk-space-utilization zabbix system-monitoring exclude
asked May 15 at 10:26
haba713haba713
1033
1033
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The question talks both about filesystem types and mountpoints (mentioning CIFS and "based on mount point"). It seems that the intent is to exclude based on mountpoint in the end.
Filesystems can be excluded from monitoring same way as described in the answer you linked to, you just have to filter by the LLD macro #FSNAME
.
To do so, create a new global regexp (name is up to you) with the "Character string not included" expression of the filesystem you want to exclude. Then add an LLD filter on the #FSNAME
macro using this global regexp (reference it by name, prefixed with @
).
I don't want to exclude all the CIFS mounts if that's what you suggested. I just want to exclude a single CIFS mount provided by 2nd party file server.
– haba713
May 15 at 11:20
Right, I just clarified based on the fact that you had mentioned the filesystem type. The#FSNAME
LLD macro will allow to filter by names (mountpoints).
– Richlv
May 15 at 11:21
Great! Can you specify which regex should be changed and how if I want to exclude this kind of mount//2ndpartyserver/shares/myshare on /mnt/mymountpoint type cifs (rw,mand)
?
– haba713
May 15 at 11:29
Added details in the answer.
– Richlv
May 15 at 12:00
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f967341%2fexcluding-a-certain-file-system-from-zabbix-regex-based-disk-usage-monitoring%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The question talks both about filesystem types and mountpoints (mentioning CIFS and "based on mount point"). It seems that the intent is to exclude based on mountpoint in the end.
Filesystems can be excluded from monitoring same way as described in the answer you linked to, you just have to filter by the LLD macro #FSNAME
.
To do so, create a new global regexp (name is up to you) with the "Character string not included" expression of the filesystem you want to exclude. Then add an LLD filter on the #FSNAME
macro using this global regexp (reference it by name, prefixed with @
).
I don't want to exclude all the CIFS mounts if that's what you suggested. I just want to exclude a single CIFS mount provided by 2nd party file server.
– haba713
May 15 at 11:20
Right, I just clarified based on the fact that you had mentioned the filesystem type. The#FSNAME
LLD macro will allow to filter by names (mountpoints).
– Richlv
May 15 at 11:21
Great! Can you specify which regex should be changed and how if I want to exclude this kind of mount//2ndpartyserver/shares/myshare on /mnt/mymountpoint type cifs (rw,mand)
?
– haba713
May 15 at 11:29
Added details in the answer.
– Richlv
May 15 at 12:00
add a comment |
The question talks both about filesystem types and mountpoints (mentioning CIFS and "based on mount point"). It seems that the intent is to exclude based on mountpoint in the end.
Filesystems can be excluded from monitoring same way as described in the answer you linked to, you just have to filter by the LLD macro #FSNAME
.
To do so, create a new global regexp (name is up to you) with the "Character string not included" expression of the filesystem you want to exclude. Then add an LLD filter on the #FSNAME
macro using this global regexp (reference it by name, prefixed with @
).
I don't want to exclude all the CIFS mounts if that's what you suggested. I just want to exclude a single CIFS mount provided by 2nd party file server.
– haba713
May 15 at 11:20
Right, I just clarified based on the fact that you had mentioned the filesystem type. The#FSNAME
LLD macro will allow to filter by names (mountpoints).
– Richlv
May 15 at 11:21
Great! Can you specify which regex should be changed and how if I want to exclude this kind of mount//2ndpartyserver/shares/myshare on /mnt/mymountpoint type cifs (rw,mand)
?
– haba713
May 15 at 11:29
Added details in the answer.
– Richlv
May 15 at 12:00
add a comment |
The question talks both about filesystem types and mountpoints (mentioning CIFS and "based on mount point"). It seems that the intent is to exclude based on mountpoint in the end.
Filesystems can be excluded from monitoring same way as described in the answer you linked to, you just have to filter by the LLD macro #FSNAME
.
To do so, create a new global regexp (name is up to you) with the "Character string not included" expression of the filesystem you want to exclude. Then add an LLD filter on the #FSNAME
macro using this global regexp (reference it by name, prefixed with @
).
The question talks both about filesystem types and mountpoints (mentioning CIFS and "based on mount point"). It seems that the intent is to exclude based on mountpoint in the end.
Filesystems can be excluded from monitoring same way as described in the answer you linked to, you just have to filter by the LLD macro #FSNAME
.
To do so, create a new global regexp (name is up to you) with the "Character string not included" expression of the filesystem you want to exclude. Then add an LLD filter on the #FSNAME
macro using this global regexp (reference it by name, prefixed with @
).
edited May 15 at 12:00
answered May 15 at 11:04
RichlvRichlv
2,12611115
2,12611115
I don't want to exclude all the CIFS mounts if that's what you suggested. I just want to exclude a single CIFS mount provided by 2nd party file server.
– haba713
May 15 at 11:20
Right, I just clarified based on the fact that you had mentioned the filesystem type. The#FSNAME
LLD macro will allow to filter by names (mountpoints).
– Richlv
May 15 at 11:21
Great! Can you specify which regex should be changed and how if I want to exclude this kind of mount//2ndpartyserver/shares/myshare on /mnt/mymountpoint type cifs (rw,mand)
?
– haba713
May 15 at 11:29
Added details in the answer.
– Richlv
May 15 at 12:00
add a comment |
I don't want to exclude all the CIFS mounts if that's what you suggested. I just want to exclude a single CIFS mount provided by 2nd party file server.
– haba713
May 15 at 11:20
Right, I just clarified based on the fact that you had mentioned the filesystem type. The#FSNAME
LLD macro will allow to filter by names (mountpoints).
– Richlv
May 15 at 11:21
Great! Can you specify which regex should be changed and how if I want to exclude this kind of mount//2ndpartyserver/shares/myshare on /mnt/mymountpoint type cifs (rw,mand)
?
– haba713
May 15 at 11:29
Added details in the answer.
– Richlv
May 15 at 12:00
I don't want to exclude all the CIFS mounts if that's what you suggested. I just want to exclude a single CIFS mount provided by 2nd party file server.
– haba713
May 15 at 11:20
I don't want to exclude all the CIFS mounts if that's what you suggested. I just want to exclude a single CIFS mount provided by 2nd party file server.
– haba713
May 15 at 11:20
Right, I just clarified based on the fact that you had mentioned the filesystem type. The
#FSNAME
LLD macro will allow to filter by names (mountpoints).– Richlv
May 15 at 11:21
Right, I just clarified based on the fact that you had mentioned the filesystem type. The
#FSNAME
LLD macro will allow to filter by names (mountpoints).– Richlv
May 15 at 11:21
Great! Can you specify which regex should be changed and how if I want to exclude this kind of mount
//2ndpartyserver/shares/myshare on /mnt/mymountpoint type cifs (rw,mand)
?– haba713
May 15 at 11:29
Great! Can you specify which regex should be changed and how if I want to exclude this kind of mount
//2ndpartyserver/shares/myshare on /mnt/mymountpoint type cifs (rw,mand)
?– haba713
May 15 at 11:29
Added details in the answer.
– Richlv
May 15 at 12:00
Added details in the answer.
– Richlv
May 15 at 12:00
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f967341%2fexcluding-a-certain-file-system-from-zabbix-regex-based-disk-usage-monitoring%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown