﻿---
title: Auditing security settings
description: You can use audit logging to record security-related events, such as authentication failures, refused connections, and data-access events. In addition,...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/configuration-reference/auding-settings
products:
  - Elasticsearch
applies_to:
  - Elastic Cloud Hosted: Generally available
  - Self-managed Elastic deployments: Generally available
---

# Auditing security settings
You can use [audit logging](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/security/logging-configuration/enabling-audit-logs) to record security-related events, such as authentication failures, refused connections, and data-access events. In addition, changes via the APIs to the security configuration, such as creating, updating and removing [native](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/users-roles/cluster-or-deployment-auth/native) and [built-in](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/users-roles/cluster-or-deployment-auth/built-in-users) users, [roles](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-security-put-role), [role mappings](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-security-put-role-mapping) and [API keys](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-security-create-api-key) are also recorded.
<tip>
  Audit logs are only available on certain subscription levels. For more information, see [Elastic Stack subscriptions](https://www.elastic.co/subscriptions).
</tip>

If configured, auditing settings must be set on every node in the cluster. Static settings, such as `xpack.security.audit.enabled`, must be configured in `elasticsearch.yml` on each node. For dynamic auditing settings, use the [cluster update settings API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cluster-put-settings) to ensure the setting is the same on all nodes.

## General Auditing Settings


<definitions>
  <definition term="xpack.security.audit.enabled logo cloud">
    ([Static](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#static-cluster-setting)) Set to `true` to enable auditing on the node. The default value is `false`. This puts the auditing events in a dedicated file named `<clustername>_audit.json` on each node.
    If enabled, this setting must be configured in `elasticsearch.yml` on all nodes in the cluster.
  </definition>
</definitions>


## Audited Event Settings

The events and some other information about what gets logged can be controlled by using the following settings:

<definitions>
  <definition term="xpack.security.audit.logfile.events.include logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) Specifies the [kind of events](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/elasticsearch-audit-events) to print in the auditing output. In addition, `_all` can be used to exhaustively audit all the events, but this is usually discouraged since it will get very verbose. The default list value contains: `access_denied, access_granted, anonymous_access_denied, authentication_failed, connection_denied, tampered_request, run_as_denied, run_as_granted, security_config_change`.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.events.exclude logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) Excludes the specified [kind of events](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/elasticsearch-audit-events) from the include list. This is useful in the case where the `events.include` setting contains the special value `_all`. The default is the empty list.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.events.emit_request_body logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) Specifies whether to include the full request body from REST requests as an attribute of certain kinds of audit events. This setting can be used to [audit search queries](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/security/logging-configuration/auditing-search-queries).
    The default value is `false`, so request bodies are not printed.
    <important>
      Be advised that sensitive data may be audited in plain text when including the request body in audit events, even though all the security APIs, such as those that change the user’s password, have the credentials filtered out when audited.
    </important>
  </definition>
</definitions>


## Local Node Info Settings


<definitions>
  <definition term="xpack.security.audit.logfile.emit_node_name logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) Specifies whether to include the [node name](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/deploy/self-managed/important-settings-configuration#node-name) as a field in each audit event. The default value is `false`.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.emit_node_host_address logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) Specifies whether to include the node’s IP address as a field in each audit event. The default value is `false`.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.emit_node_host_name logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) Specifies whether to include the node’s host name as a field in each audit event. The default value is `false`.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.emit_node_id logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) Specifies whether to include the node id as a field in each audit event. Unlike [node name](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/deploy/self-managed/important-settings-configuration#node-name), whose value might change if the administrator changes the setting in the config file, the node id will persist across cluster restarts and the administrator cannot change it. The default value is `true`.
  </definition>
</definitions>


## Audit Logfile Event Ignore Policies

The following settings affect the [ignore policies](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/security/logging-configuration/logfile-audit-events-ignore-policies) that enable fine-grained control over which audit events are printed to the log file. All of the settings with the same policy name combine to form a single policy. If an event matches all the conditions of any policy, it is ignored and not printed. Most audit events are subject to the ignore policies. The sole exception are events of the `security_config_change` type, which cannot be filtered out, unless [excluded](#xpack-sa-lf-events-exclude) altogether.

<definitions>
  <definition term="xpack.security.audit.logfile.events.ignore_filters.<policy_name>.users logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) A list of user names or wildcards. The specified policy will not print audit events for users matching these values.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.events.ignore_filters.<policy_name>.realms logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) A list of authentication realm names or wildcards. The specified policy will not print audit events for users in these realms.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.events.ignore_filters.<policy_name>.actions logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) A list of action names or wildcards. Action name can be found in the `action` field of the audit event. The specified policy will not print audit events for actions matching these values.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.events.ignore_filters.<policy_name>.roles logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) A list of role names or wildcards. The specified policy will not print audit events for users that have these roles. If the user has several roles, some of which are **not** covered by the policy, the policy will **not** cover this event.
  </definition>
</definitions>


<definitions>
  <definition term="xpack.security.audit.logfile.events.ignore_filters.<policy_name>.indices logo cloud">
    ([Dynamic](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/stack-settings#dynamic-cluster-setting)) A list of index names or wildcards. The specified policy will not print audit events when all the indices in the event match these values. If the event concerns several indices, some of which are **not** covered by the policy, the policy will **not** cover this event.
  </definition>
</definitions>