Audit logging enables you to track access to your Elasticsearch cluster. Search Guard tracks the following types of events, on REST- and transport level:
- SSL_EXCEPTION
- An attempt was made to access Elasticsearch without a valid SSL/TLS certificate.
- BAD_HEADERS
- An attempt was made to spoof a request to Elasticsearch with Search Guard internal headers
- FAILED_LOGIN
- The provided credentials of a request could not be validated, most likely because the user does not exist or the password is incorrect.
- MISSING_PRIVILEGES
- An attempt was made to access Elasticsearch, but the authenticated user lacks the respective privileges for the requested action
- SG_INDEX_ATTEMPT
- An attempt was made to access the Search Guard internal user- and privileges index without a valid admin TLS certificate
- AUTHENTICATED
- Represents a successful request to Elasticsearch
In order to enable audit logging, download the jar file from Maven, and put it in the following folder: <ES installation directory>/plugins/search-guard-2
Per default, the audit log module logs all events in all categories. If you want to log only certain events, you can disable categories individually in the elasticsearch.yml
configuration file:
searchguard.audit.config.disabled_categories: [disabled categories]
For example:
searchguard.audit.config.disabled_categories: AUTHENTICATED, SG_INDEX_ATTEMPT
In this case, events in the categories AUTHENTICATED
and SG_INDEX_ATTEMPT
will not be logged.
Search guard comes with three audit log storage types built in. This specifies where you want to store the tracked events. You can choose from:
- debug
- Outputs the events on standard out
- internal_elasticsearch
- Writes the events in a separate audit index on the same cluster
- external_elasticsearch
- Writes the events in a separate audit index on another ES cluster
You configure the type of audit logging in the elasticsearch.yml
file:
searchguard.audit.type: <debug|internal_elasticsearch|external_elasticsearch>
Note that it is not possible to specify more than one audit type.
You can also use your own, custom implementation of the storage, in case you have special requirements that are not covered by the built-in types. See chapter "Custom storage types" below.
There are no special configuration settings for this audit type, so you just add the audit type setting in elasticsearch.yml
:
searchguard.audit.type: debug
This will output all tracked events on standard out.
In addition to specifying the type as internal_elasticsearch
, you can set the index name and the document type to be used:
searchguard.audit.type: internal_elasticsearch
searchguard.audit.config.index: <indexname>
searchguard.audit.config.type: <typename>
If not specified, Search Guard uses the default value auditlog
for both index name and document type.
If you want to store the tracked events in a different Elasticsearch cluster than the cluster producing the events, you use external_elasticsearch
as audit type, configure the Elasticsearch endpoints with hostname/IP and port, and optionally the index name and document type:
searchguard.audit.type: internal_elasticsearch
searchguard.audit.config.http_endpoints: <endpoints>
searchguard.audit.config.index: <indexname>
searchguard.audit.config.type: <typename>
SearchGuard uses the REST-API to send the tracked events, so for searchguard.audit.config.http_endpoints
, use a comma-separated list of hostname/IP and the REST port (default 9200). For example:
searchguard.audit.config.http_endpoints: 192.168.178.1:9200,192.168.178.2:9200
If you use external_elasticsearch
as audit type, and the cluster you want to store the audit logs in is also secured by Search Guard, you need to supply some additional configuration parameters.
The parameters you need to specify depends on what authentication type you configured on the REST layer.
Use the following settings to control SSL/TLS:
searchguard.audit.config.enable_ssl: <true|false>
Whether or not to use SSL/TLS. If you enabled SSL/TLS on the REST-layer of the receiving cluster, set this to true. Default is false.
searchguard.audit.config.verify_hostnames: <true|false>
Whether or not to verify the hostname of the SSL/TLS certificate of the receiving cluster. Default is true.
searchguard.audit.config.enable_ssl_client_auth: <true|false>
Whether or not to enable SSL/TLS client authentication. If you set this to true, the audit log module will send the nodes certificate from the keystore along with the request. The receiving cluster can use this certificate to verify the identity of the caller.
Note: The audit log module will use the key- and truststore settings configured in the HTTP/REST layer SSL section of the elasticsearch.yml file. Please refer to the Search Guard SSL configuration chapter for more information.
If you enabled HTTP Basic auth on the receiving cluster, use these settings to specify username and password the the audit log module should use:
searchguard.audit.config.username: <username>
searchguard.audit.config.password: <password>
If you have special requirements regarding the storage, you can always implement your own storage type and let the audot log module use it instead of the built in types.
Implementing a custom storage is very easy. You just write a class with a default constructor that extends com.floragunn.searchguard.auditlog.impl.AbstractAuditLog
. You need to implement only two methods:
protected void save(final AuditMessage msg) {
}
public void close() throws IOException {
}
The save
method is responsible for storing the event to whatever storage you require. The interface AuditLog
also extends java.io.Closeable
. If the node is shut down, this method is called, and you can use it to close any resources you have aquired. For example, the HttpESAuditLog
uses it to close the connection to the remote ES cluster.
In order for Search Guard to pick up your custom implementation, specify its fully qualified name as searchguard.audit.type
:
searchguard.audit.type: com.example.MyCustomAuditLogStorage
Make sure that the class is accesible by Search Guard by putting the respective jar
file in the plugins/search-guard-2
folder.