b51f6e8a16fb70276cea5ae478b77a6d996cc947
[ab/samba.git/.git] / docs-xml / manpages-3 / vfs_smb_traffic_analyzer.8.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE refentry PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc">
3 <refentry id="vfs_smb_traffic_analyzer.8">
4
5 <refmeta>
6         <refentrytitle>smb_traffic_analyzer</refentrytitle>
7         <manvolnum>8</manvolnum>
8         <refmiscinfo class="source">Samba</refmiscinfo>
9         <refmiscinfo class="manual">System Administration tools</refmiscinfo>
10         <refmiscinfo class="version">3.3</refmiscinfo>
11 </refmeta>
12
13
14 <refnamediv>
15         <refname>vfs_smb_traffic_analyzer</refname>
16         <refpurpose>log Samba VFS read and write operations through a socket
17         to a helper application</refpurpose>
18 </refnamediv>
19
20 <refsynopsisdiv>
21         <cmdsynopsis>
22                 <command>vfs objects = smb_traffic_analyzer</command>
23         </cmdsynopsis>
24 </refsynopsisdiv>
25
26 <refsect1>
27         <title>DESCRIPTION</title>
28
29         <para>This VFS module is part of the
30         <citerefentry><refentrytitle>samba</refentrytitle>
31         <manvolnum>7</manvolnum></citerefentry> suite.</para>
32
33         <para>The <command>vfs_smb_traffic_analyzer</command> VFS module logs
34         client write and read operations on a Samba server and sends this data
35         over a socket to a helper program, which feeds a SQL database. More
36         information on the helper programs can be obtained from the
37         homepage of the project at:
38         http://holger123.wordpress.com/smb-traffic-analyzer/
39         </para>
40         <para><command>vfs_smb_traffic_analyzer</command> currently is aware
41         of the following VFS operations:</para>
42
43         <simplelist>
44         <member>write</member>
45         <member>pwrite</member>
46         <member>read</member>
47         <member>pread</member>
48         </simplelist>
49
50         <para><command>vfs_smb_traffic_analyzer</command> sends the following data
51         in a fixed format seperated by a comma through either an internet or a
52         unix domain socket:</para>
53         <programlisting>
54         BYTES|USER|DOMAIN|READ/WRITE|SHARE|FILENAME|TIMESTAMP
55         </programlisting>
56
57         <para>Description of the records:
58
59         <itemizedlist>
60         <listitem><para><command>BYTES</command> - the length in bytes of the VFS operation</para></listitem>
61         <listitem><para><command>USER</command> - the user who initiated the operation</para></listitem>
62         <listitem><para><command>DOMAIN</command> - the domain of the user</para></listitem>
63         <listitem><para><command>READ/WRITE</command> - either "W" for a write operation or "R" for read</para></listitem>
64         <listitem><para><command>SHARE</command> - the name of the share on which the VFS operation occured</para></listitem>
65         <listitem><para><command>FILENAME</command> - the name of the file that was used by the VFS operation</para></listitem>
66         <listitem><para><command>TIMESTAMP</command> - a timestamp, formatted as "yyyy-mm-dd hh-mm-ss.ms" indicating when the VFS operation occured</para></listitem>
67         </itemizedlist>
68
69         </para>
70
71         <para>This module is stackable.</para>
72
73 </refsect1>
74
75
76 <refsect1>
77         <title>OPTIONS</title>
78
79         <variablelist>
80
81                 <varlistentry>
82                 <term>smb_traffic_analyzer:mode = STRING</term>
83                 <listitem>
84                 <para>If STRING matches to "unix_domain_socket", the module will
85                 use a unix domain socket located at /var/tmp/stadsocket, if
86                 STRING contains an different string or is not defined, the module will
87                 use an internet domain socket for data transfer.</para>
88
89                 </listitem>
90                 </varlistentry>
91
92
93                 <varlistentry>
94                 <term>smb_traffic_analyzer:host = STRING</term>
95                 <listitem>
96                 <para>The module will send the data to the system named with
97                 the hostname STRING.</para>
98
99                 </listitem>
100                 </varlistentry>
101
102                 <varlistentry>
103                 <term>smb_traffic_analyzer:port = STRING</term>
104                 <listitem>
105                 <para>The module will send the data using the TCP port given
106                 in STRING.
107                 </para>
108
109                 <varlistentry>
110                 <term>smb_traffic_analyzer:anonymize_prefix = STRING</term>
111                 <listitem>
112                 <para>The module will replace the user names with a prefix
113                 given by STRING and a simple hash number.
114                 </para>
115
116                 </listitem>
117                 </varlistentry>
118
119
120         </variablelist>
121 </refsect1>
122
123 <refsect1>
124         <title>EXAMPLES</title>
125
126         <para>The module running on share "example_share", using a unix domain socket</para>
127         <programlisting>
128         <smbconfsection name="[example_share]"/>
129         <smbconfoption name="path">/data/example</smbconfoption>
130         <smbconfoption name="vfs objects">smb_traffic_analyzer</smbconfoption>
131         <smbconfoption name="smb_traffic_analyzer:mode">unix_domain_socket</smbconfoption>
132         </programlisting>
133
134         <para>The module running on share "example_share", using an internet domain socket,
135         connecting to host "examplehost" on port 3491.</para>
136         <programlisting>
137         <smbconfsection name="[example_share]"/>
138         <smbconfoption name="path">/data/example</smbconfoption>
139         <smbconfoption name="vfs objects">smb_traffic_analyzer</smbconfoption>
140         <smbconfoption name="smb_traffic_analyzer:host">examplehost</smbconfoption>
141         <smbconfoption name="smb_traffic_analyzer:port">3490</smbconfoption>
142         </programlisting>
143
144 </refsect1>
145
146 <refsect1>
147         <title>VERSION</title>
148         <para>This man page is correct for version 3.3 of the Samba suite.
149         </para>
150 </refsect1>
151
152 <refsect1>
153         <title>AUTHOR</title>
154
155         <para>The original Samba software and related utilities
156         were created by Andrew Tridgell. Samba is now developed
157         by the Samba Team as an Open Source project similar
158         to the way the Linux kernel is developed.</para>
159
160         <para>The original version of the VFS module and the
161         helper tools were created by Holger Hetterich.</para>
162 </refsect1>
163
164 </refentry>