Skip to content

Commit

Permalink
descriptions/units added
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuirimia committed Dec 9, 2016
1 parent 3288fc8 commit 3b1dca0
Show file tree
Hide file tree
Showing 3 changed files with 607 additions and 0 deletions.
21 changes: 21 additions & 0 deletions xrootd_stats/README.md
@@ -0,0 +1,21 @@
XROOTD Stats
================


Install
----------------

Copy xrootd_stats.py from python_modules to your python modules directory, e.g. :

- /usr/lib/ganglia/python_modules
- /usr/lib64/ganglia/python_modules

Copy xrootd_stats.pyconf to the gmond conf.d directory, e.g. :

- /etc/ganglia/conf.d/

### AUTHORS

Authors:
- Liviu Irimia https://github.com/liviuirimia/
- Sevcenco Adrian https://github.com/adriansev
113 changes: 113 additions & 0 deletions xrootd_stats/conf.d/xrootd_stats.pyconf
@@ -0,0 +1,113 @@
modules {
module {
name = "xrootd_stats"
language = "python"

param host {
value = "localhost"
}

param port {
value = 1094
}
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_sys_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_info_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_link_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_poll_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_buff_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_proc_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_xrootd_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_ofs_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_oss_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_sgen_(.+)"
}
}

collection_group {
collect_every = 30
time_threshold = 120

metric {
name_match = "xrd_sched_(.+)"
}
}

0 comments on commit 3b1dca0

Please sign in to comment.