Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zabbix-agent-config
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
tech
zabbix-agent-config
Commits
f469c4f8
Commit
f469c4f8
authored
Jan 31, 2014
by
Dennis Kanbier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified readme
parent
59d19c3a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
9 deletions
+19
-9
README.md
README.md
+2
-1
UserParameters/userparameter_linux_disks.conf
UserParameters/userparameter_linux_disks.conf
+17
-8
No files found.
README.md
View file @
f469c4f8
...
...
@@ -8,7 +8,8 @@ Please check out the README pages in the specific directories for more informati
Directory structure
-------------------
zabbix-linux/lld: Used for low-level discovery scripts
zabbix-linux/LLD: Used for low-level discovery scripts
zabbix-linux/UserParameters: Used for custom Zabbix keys
More information
----------------
...
...
UserParameters/userparameter_linux_disks.conf
View file @
f469c4f8
# See https://www.kernel.org/doc/Documentation/ABI/testing/procfs-diskstats
UserParameter
=
custom
.
vfs
.
dev
.
read
.
ops
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$4}'
# reads completed successfully
UserParameter
=
custom
.
vfs
.
dev
.
read
.
sectors
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$6}'
# sectors read
UserParameter
=
custom
.
vfs
.
dev
.
read
.
ms
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$7}'
# time spent reading (ms)
UserParameter
=
custom
.
vfs
.
dev
.
write
.
ops
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$8}'
# writes completed
UserParameter
=
custom
.
vfs
.
dev
.
write
.
sectors
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$10}'
# sectors written
UserParameter
=
custom
.
vfs
.
dev
.
write
.
ms
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$11}'
# time spent writing (ms)
UserParameter
=
custom
.
vfs
.
dev
.
io
.
active
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$12}'
# I/Os currently in progress
UserParameter
=
custom
.
vfs
.
dev
.
io
.
ms
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
y
|
awk
'{print $$13}'
# time spent doing I/Os (ms)
#
# reads completed successfully
UserParameter
=
custom
.
vfs
.
dev
.
read
.
ops
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$4}'
# sectors read
UserParameter
=
custom
.
vfs
.
dev
.
read
.
sectors
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$6}'
# time spent reading (ms)
UserParameter
=
custom
.
vfs
.
dev
.
read
.
ms
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$7}'
# writes completed
UserParameter
=
custom
.
vfs
.
dev
.
write
.
ops
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$8}'
# sectors written
UserParameter
=
custom
.
vfs
.
dev
.
write
.
sectors
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$10}'
# time spent writing (ms)
UserParameter
=
custom
.
vfs
.
dev
.
write
.
ms
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$11}'
# I/Os currently in progress
UserParameter
=
custom
.
vfs
.
dev
.
io
.
active
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
|
awk
'{print $$12}'
# time spent doing I/Os (ms)
UserParameter
=
custom
.
vfs
.
dev
.
io
.
ms
[*],
cat
/
proc
/
diskstats
|
egrep
$
1
|
head
-
1
y
|
awk
'{print $$13}'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment