Class JDBCAccessLogValve

  • All Implemented Interfaces:
    Contained, Lifecycle, Valve, GlassFishValve

    public final class JDBCAccessLogValve
    extends ValveBase

    This Tomcat extension logs server access directly to a database, and can be used instead of the regular file-based access log implemented in AccessLogValve. To use, copy into the server/classes directory of the Tomcat installation and configure in server.xml as:

                    <Valve className="AccessLogDBValve"
                    driverName="your_jdbc_driver"
                    connectionURL="your_jdbc_url"
                    pattern="combined" resolveHosts="false"
                    />
     

    Many parameters can be configured, such as the database connection (with driverName and connectionURL), the table name (tableName) and the field names (corresponding to the get/set method names). The same options as AccessLogValve are supported, such as resolveHosts and pattern ("common" or "combined" only).

    When Tomcat is started, a database connection (with autoReconnect option) is created and used for all the log activity. When Tomcat is shutdown, the database connection is closed. This logger can be used at the level of the Engine context (being shared by all the defined hosts) or the Host context (one instance of the logger per host, possibly using different databases).

    The database table can be created with the following command:

     CREATE TABLE access (
     id INT UNSIGNED AUTO_INCREMENT NOT NULL,
     ts TIMESTAMP NOT NULL,
     remoteHost CHAR(15) NOT NULL,
     user CHAR(15),
     timestamp TIMESTAMP NOT NULL,
     virtualHost VARCHAR(64) NOT NULL,
     method VARCHAR(8) NOT NULL,
     query VARCHAR(255) NOT NULL,
     status SMALLINT UNSIGNED NOT NULL,
     bytes INT UNSIGNED NOT NULL,
     referer VARCHAR(128),
     userAgent VARCHAR(128),
     PRIMARY KEY (id),
     INDEX (ts),
     INDEX (remoteHost),
     INDEX (virtualHost),
     INDEX (query),
     INDEX (userAgent)
     );
     

    If the table is created as above, its name and the field names don't need to be defined.

    If the request method is "common", only these fields are used: remoteHost, user, timeStamp, query, status, bytes

    TO DO: provide option for excluding logging of certain MIME types.

    Version:
    1.0
    Author:
    Andre de Jesus
    • Constructor Detail

      • JDBCAccessLogValve

        public JDBCAccessLogValve()
        Class constructor. Initializes the fields with the default values. The defaults are:
                        driverName = null;
                        connectionURL = null;
                        tableName = "access";
                        remoteHostField = "remoteHost";
                        userField = "user";
                        timestampField = "timestamp";
                        virtualHostField = "virtualHost";
                        methodField = "method";
                        queryField = "query";
                        statusField = "status";
                        bytesField = "bytes";
                        refererField = "referer";
                        userAgentField = "userAgent";
                        pattern = "common";
                        resolveHosts = false;
         
    • Method Detail

      • setDriverName

        public void setDriverName​(String driverName)
        Sets the database driver name.
        Parameters:
        driverName - The complete name of the database driver class.
      • setConnectionURL

        public void setConnectionURL​(String connectionURL)
        Sets the JDBC URL for the database where the log is stored.
        Parameters:
        connectionURL - The JDBC URL of the database.
      • setTableName

        public void setTableName​(String tableName)
        Sets the name of the table where the logs are stored.
        Parameters:
        tableName - The name of the table.
      • setRemoteHostField

        public void setRemoteHostField​(String remoteHostField)
        Sets the name of the field containing the remote host.
        Parameters:
        remoteHostField - The name of the remote host field.
      • setUserField

        public void setUserField​(String userField)
        Sets the name of the field containing the remote user name.
        Parameters:
        userField - The name of the remote user field.
      • setTimestampField

        public void setTimestampField​(String timestampField)
        Sets the name of the field containing the server-determined timestamp.
        Parameters:
        timestampField - The name of the server-determined timestamp field.
      • setVirtualHostField

        public void setVirtualHostField​(String virtualHostField)
        Sets the name of the field containing the virtual host information (this is in fact the server name).
        Parameters:
        virtualHostField - The name of the virtual host field.
      • setMethodField

        public void setMethodField​(String methodField)
        Sets the name of the field containing the HTTP request method.
        Parameters:
        methodField - The name of the HTTP request method field.
      • setQueryField

        public void setQueryField​(String queryField)
        Sets the name of the field containing the URL part of the HTTP query.
        Parameters:
        queryField - The name of the field containing the URL part of the HTTP query.
      • setStatusField

        public void setStatusField​(String statusField)
        Sets the name of the field containing the HTTP response status code.
        Parameters:
        statusField - The name of the HTTP response status code field.
      • setBytesField

        public void setBytesField​(String bytesField)
        Sets the name of the field containing the number of bytes returned.
        Parameters:
        bytesField - The name of the returned bytes field.
      • setRefererField

        public void setRefererField​(String refererField)
        Sets the name of the field containing the referer.
        Parameters:
        refererField - The referer field name.
      • setUserAgentField

        public void setUserAgentField​(String userAgentField)
        Sets the name of the field containing the user agent.
        Parameters:
        userAgentField - The name of the user agent field.
      • setPattern

        public void setPattern​(String pattern)
        Sets the logging pattern. The patterns supported correspond to the file-based "common" and "combined". These are translated into the use of tables containing either set of fields.

        TO DO: more flexible field choices.

        Parameters:
        pattern - The name of the logging pattern.
      • setResolveHosts

        public void setResolveHosts​(String resolveHosts)
        Determines whether IP host name resolution is done.
        Parameters:
        resolveHosts - "true" or "false", if host IP resolution is desired or not.
      • invoke

        public int invoke​(Request request,
                          Response response)
                   throws IOException,
                          jakarta.servlet.ServletException
        This method is invoked by Tomcat on each query.
        Specified by:
        invoke in interface GlassFishValve
        Specified by:
        invoke in class ValveBase
        Parameters:
        request - The Request object.
        response - The Response object.
        Returns:
        INVOKE_NEXT or END_PIPELINE
        Throws:
        IOException - Should not be thrown.
        jakarta.servlet.ServletException - Database SQLException is wrapped in a ServletException.
      • postInvoke

        public void postInvoke​(Request request,
                               Response response)
                        throws IOException,
                               jakarta.servlet.ServletException
        Description copied from class: ValveBase
        A post-request processing implementation that does nothing. Very few Valves override this behaviour as most Valve logic is used for request processing.
        Specified by:
        postInvoke in interface GlassFishValve
        Overrides:
        postInvoke in class ValveBase
        Parameters:
        request - The servlet request to be processed
        response - The servlet response to be created
        Throws:
        IOException - if an input/output error occurs
        jakarta.servlet.ServletException - if a servlet error occurs
      • start

        public void start()
                   throws LifecycleException
        Invoked by Tomcat on startup. The database connection is set here.
        Specified by:
        start in interface Lifecycle
        Overrides:
        start in class ValveBase
        Throws:
        LifecycleException - Can be thrown on lifecycle inconsistencies or on database errors (as a wrapped SQLException).
      • stop

        public void stop()
                  throws LifecycleException
        Invoked by tomcat on shutdown. The database connection is closed here.
        Specified by:
        stop in interface Lifecycle
        Overrides:
        stop in class ValveBase
        Throws:
        LifecycleException - Can be thrown on lifecycle inconsistencies or on database errors (as a wrapped SQLException).
      • getCurrentTimeMillis

        public long getCurrentTimeMillis()