1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
.. _log-module-command:
Log module command
==================
It is sometimes desired to better understand the ``module`` usage on the
system we manage. Especially to determine what are the modulefiles most used
and what are those never used that could be removed. This recipe describes a
way to track the ``module`` usage by logging each request made.
Implementation
--------------
Logging module commands and modulefile evaluations relies on two configuration
options introduced in version 5.5:
* :mconfig:`logger`, the command run to transmit messages to the log system
* :mconfig:`logged_events`, list of module event to log
:mconfig:`logger` option relies on the `logger`_ command by default, which is
usually available and already installed on most systems.
Following events are recognized by :mconfig:`logged_events` option:
* ``requested_cmd``: record module commands typed by users
* ``requested_eval``: record modulefile evaluations requested by users
* ``auto_eval``: record modulefile evaluations automatically triggered
Note that some messages can also be sent during modulefile evaluation by using
the ``log`` channel of the :mfcmd:`puts` command.
**Compatible with Modules v5.5+**
.. _logger: https://man7.org/linux/man-pages/man1/logger.1.html
Configuration
-------------
Verify the currently defined :mconfig:`logger` command points to an installed
and valid tool:
.. parsed-literal::
:ps:`$` module config logger
Modules Release 5.5.0 (2024-11-11)
- Config. name ---------.- Value (set by if default overridden) ---------------
logger /usr/bin/logger -t modules
The :mconfig:`logged_events` option is empty by default, so no content is sent
to logs by default.
Configure :mconfig:`logged_events` to record for instance the
``requested_cmd`` and ``requested_eval`` events:
.. parsed-literal::
:ps:`$` module config logged_events +requested_cmd:requested_eval
With this setup, all module commands and modulefile evaluations directly asked
by users will be recorded into the log system. Automatically triggered
evaluations will not be recorded.
Usage example
-------------
Listing available modulefiles, then loading a bare modulefile (that sends
itself a message to logs), then another one with a dependency and purging
everything in the end:
.. parsed-literal::
:ps:`$` cat /path/to/modulefiles/foo/1.0
#%Module
puts log {some message sent to log}
:ps:`$` ml av
--------------- :sgrdi:`/path/to/modulefiles` ---------------
bar/1.0 foo/1.0 qux/1.0
:ps:`$` ml foo/1.0
:ps:`$` module load bar
Loading :sgrhi:`bar/1.0`
:sgrin:`Loading requirement`: qux/1.0
:ps:`$` module purge
Log entries can then be retrieved from system log files:
.. parsed-literal::
:ps:`$` journalctl -q -t modules
Apr 29 07:47:42 hostname modules[3777797]: user="username" command="avail" arguments=""
Apr 29 07:47:51 hostname modules[3777835]: user="username" command="ml" arguments="foo/1.0"
Apr 29 07:47:51 hostname modules[3777835]: some message sent to log
Apr 29 07:47:51 hostname modules[3777835]: user="username" mode="load" module="foo/1.0" specified="foo/1.0" modulefile="/path/to/modulefiles/foo/1.0" requested="1"
Apr 29 07:48:10 hostname modules[3777876]: user="username" command="load" arguments="bar"
Apr 29 07:48:10 hostname modules[3777876]: user="username" mode="load" module="bar/1.0" specified="bar" modulefile="/path/to/modulefiles/bar/1.0" requested="1"
Apr 29 07:48:17 hostname modules[3777914]: user="username" command="purge" arguments=""
Apr 29 07:48:17 hostname modules[3777914]: user="username" mode="unload" module="bar/1.0" specified="bar/1.0" modulefile="/path/to/modulefiles/bar/1.0" requested="1"
Apr 29 07:48:17 hostname modules[3777914]: some message sent to log
Apr 29 07:48:17 hostname modules[3777914]: user="username" mode="unload" module="foo/1.0" specified="foo/1.0" modulefile="/path/to/modulefiles/foo/1.0" requested="1"
Implementation on older versions
--------------------------------
Logging module commands is implemented by the use of a site-specific
configuration that traces every call to a modulefile evaluation.
.. literalinclude:: ../../example/log-module-commands/siteconfig.tcl
:language: tcl
:caption: siteconfig.tcl
:lines: 26-54
:lineno-start: 26
This code defines a ``logModfileInterp`` procedure which is set to be
evaluated after each evaluation of the ``execute-modulefile`` procedure with
the `trace`_ Tcl command. Thanks to the ``trace`` mechanism
``logModfileInterp`` receives the arguments passed to ``execute-modulefile``.
The ``logModfileInterp`` procedure applies filter to only log *load* and
*unload* modulefile evaluations. It may be extended to the other evaluation
modes (*help*, *display*, *test*, *whatis* and *refresh*) by adapting the
following line:
.. literalinclude:: ../../example/log-module-commands/siteconfig.tcl
:language: tcl
:lines: 36-37
:lineno-start: 36
In the proposed code, log entries are formatted as a JSON record which is
convenient to push these logs in a search and analytics engine like
`Elasticsearch`_ or `Splunk`_. Such tools help to globally monitor the whole
set of log entries produced from thousands of computing nodes.
.. literalinclude:: ../../example/log-module-commands/siteconfig.tcl
:language: tcl
:lines: 47-49
:lineno-start: 47
The :command:`logger` command is run to generate the log message. This is done
through a specific ``execLogger`` procedure ensuring that the current user
environment does not confuse :command:`logger` with unexpected version of the
libraries it requires.
.. literalinclude:: ../../example/log-module-commands/siteconfig.tcl
:language: tcl
:lines: 13-24
:lineno-start: 13
Example code also defines a ``logModuleCmd`` procedure which is set to be
evaluated after each evaluation of the ``module`` and the ``ml`` procedures
with `trace`_ Tcl command.
.. literalinclude:: ../../example/log-module-commands/siteconfig.tcl
:language: tcl
:caption: siteconfig.tcl
:lines: 56-76
:lineno-start: 56
.. note::
This code example may be extended to log for instance additional
information in each message. The `upvar`_ Tcl command may be used to
retrieve variables from the calling context. However beware that the
internal code of Modules may change, so if you rely on internal variables
please re-check the code in the :file:`siteconfig.tcl` file deployed after
each upgrade of Modules.
**Compatible with Modules v4.2 to v5.4**
.. _trace: https://www.tcl-lang.org/man/tcl8.5/TclCmd/trace.html
.. _Elasticsearch: https://www.elastic.co/elasticsearch/
.. _Splunk: https://www.splunk.com/
.. _upvar: https://www.tcl-lang.org/man/tcl8.5/TclCmd/upvar.html
Installation
^^^^^^^^^^^^
Create site-specific configuration directory if it does not exist yet:
.. parsed-literal::
$ mkdir \ |etcdir|
Then copy there the site-specific configuration script of this recipe:
.. parsed-literal::
$ cp example/log-module-commands/siteconfig.tcl \ |etcdir|\ /
.. note::
Defined location for the site-specific configuration script may vary from
one installation to another. To determine the expected location for this
file on your setup, check the value of the ``siteconfig`` option on Modules
version 4.3 or above:
.. parsed-literal::
:ps:`$` module config siteconfig
On older version of Modules, check the ``modulecmd.tcl`` script:
.. parsed-literal::
:ps:`$` grep '^set g_siteconfig ' $MODULES_CMD
Usage example
^^^^^^^^^^^^^
Listing available modulefiles, then loading a bare modulefile, then another
one with a dependency and purging everything in the end:
.. parsed-literal::
:ps:`$` ml av
--------------- :sgrdi:`/path/to/modulefiles` ---------------
bar/1.0 foo/1.0 qux/1.0
:ps:`$` ml foo
:ps:`$` module load bar
Loading :sgrhi:`bar/1.0`
:sgrin:`Loading requirement`: qux/1.0
:ps:`$` module purge
A log entry can then be retrieved from system log files:
.. parsed-literal::
:ps:`$` journalctl -q -t module
Sep 12 20:24:01 hostname module[9925]: { "user": "username", "cmd": "ml", "args": "av" }
Sep 12 20:24:02 hostname module[9925]: { "user": "username", "mode": "load", "module": "foo/1.0", "auto": false }
Sep 12 20:24:02 hostname module[9925]: { "user": "username", "cmd": "ml", "args": "foo" }
Sep 12 20:24:03 hostname module[9925]: { "user": "username", "mode": "load", "module": "qux/1.0", "auto": true }
Sep 12 20:24:03 hostname module[9925]: { "user": "username", "mode": "load", "module": "bar/1.0", "auto": false }
Sep 12 20:24:03 hostname module[9925]: { "user": "username", "cmd": "module", "args": "load bar" }
Sep 12 20:24:04 hostname module[9925]: { "user": "username", "mode": "unload", "module": "bar/1.0" }
Sep 12 20:24:04 hostname module[9925]: { "user": "username", "mode": "unload", "module": "qux/1.0" }
Sep 12 20:24:04 hostname module[9925]: { "user": "username", "mode": "unload", "module": "foo/1.0" }
Sep 12 20:24:04 hostname module[9925]: { "user": "username", "cmd": "module", "args": "purge" }
.. vim:set tabstop=2 shiftwidth=2 expandtab autoindent:
|