Skip to content

Commit

Permalink
make update
Browse files Browse the repository at this point in the history
  • Loading branch information
khushijain21 committed Mar 3, 2025
1 parent f839834 commit 589f641
Show file tree
Hide file tree
Showing 14 changed files with 170 additions and 147 deletions.
2 changes: 2 additions & 0 deletions auditbeat/auditbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1597,6 +1597,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Auditbeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
5 changes: 2 additions & 3 deletions filebeat/filebeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2679,9 +2679,6 @@ setup.kibana:
# Beats and contains module or input metrics.
#logging.metrics.namespaces: [stats]

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:

# Logging to rotating files. Set logging.to_files to false to disable logging to
# files.
logging.to_files: true
Expand Down Expand Up @@ -2763,6 +2760,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Filebeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
2 changes: 2 additions & 0 deletions heartbeat/heartbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Heartbeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
3 changes: 3 additions & 0 deletions libbeat/_meta/config/logging.reference.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,6 @@ logging.files:
# Rotate existing logs on startup rather than appending them to the existing
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
2 changes: 2 additions & 0 deletions metricbeat/metricbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2545,6 +2545,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Metricbeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
2 changes: 2 additions & 0 deletions packetbeat/packetbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2063,6 +2063,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Packetbeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
2 changes: 2 additions & 0 deletions winlogbeat/winlogbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1474,6 +1474,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Winlogbeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
2 changes: 2 additions & 0 deletions x-pack/auditbeat/auditbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1661,6 +1661,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Auditbeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
287 changes: 143 additions & 144 deletions x-pack/filebeat/filebeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1488,147 +1488,147 @@ filebeat.modules:
#var.password:

#------------------------------ Salesforce Module ------------------------------
# Configuration file for Salesforce module in Filebeat

# Common Configurations:
# - enabled: Set to true to enable ingestion of Salesforce module fileset
# - initial_interval: Initial interval for log collection. This setting determines the time period for which the logs will be initially collected when the ingestion process starts, i.e. 1d/h/m/s
# - api_version: API version for Salesforce, version should be greater than 46.0

# Authentication Configurations:
# User-Password Authentication:
# - enabled: Set to true to enable user-password authentication
# - client.id: Client ID for user-password authentication
# - client.secret: Client secret for user-password authentication
# - token_url: Token URL for user-password authentication
# - username: Username for user-password authentication
# - password: Password for user-password authentication

# JWT Authentication:
# - enabled: Set to true to enable JWT authentication
# - client.id: Client ID for JWT authentication
# - client.username: Username for JWT authentication
# - client.key_path: Path to client key for JWT authentication
# - url: Audience URL for JWT authentication

# Event Monitoring:
# - real_time: Set to true to enable real-time logging using object type data collection
# - real_time_interval: Interval for real-time logging

# Event Log File:
# - event_log_file: Set to true to enable event log file type data collection
# - elf_interval: Interval for event log file
# - log_file_interval: Interval type for log file collection, either Hourly or Daily

- module: salesforce

apex:
enabled: false
var.initial_interval: 1d
var.api_version: 56

var.authentication:
user_password_flow:
enabled: true
client.id: "<YourClientIdHere>"
client.secret: "<YourClientSecretHere>"
token_url: "<YourTokenURLHere>"
username: "<YourUsernameHere>"
password: "<YourPasswordHere>"
jwt_bearer_flow:
enabled: false
client.id: "<YourClientIdHere>"
client.username: "<YourClientUsernameHere>"
client.key_path: "<YourClientKeyPathHere>"
url: "https://login.salesforce.com"

var.url: "https://instance_id.my.salesforce.com"

var.event_log_file: true
var.elf_interval: 1h
var.log_file_interval: "Hourly"

login:
enabled: false
var.initial_interval: 1d
var.api_version: 56

var.authentication:
user_password_flow:
enabled: true
client.id: "<YourClientIdHere>"
client.secret: "client-secret"
token_url: "<YourTokenURLHere>"
username: "<YourUsernameHere>"
password: "<YourPasswordHere>"
jwt_bearer_flow:
enabled: false
client.id: "<YourClientIdHere>"
client.username: "<YourClientUsernameHere>"
client.key_path: "<YourClientKeyPathHere>"
url: "https://login.salesforce.com"

var.url: "https://instance_id.my.salesforce.com"

var.event_log_file: true
var.elf_interval: 1h
var.log_file_interval: "Hourly"

var.real_time: true
var.real_time_interval: 5m

logout:
enabled: false
var.initial_interval: 1d
var.api_version: 56

var.authentication:
user_password_flow:
enabled: true
client.id: "<YourClientIdHere>"
client.secret: "client-secret"
token_url: "<YourTokenURLHere>"
username: "<YourUsernameHere>"
password: "<YourPasswordHere>"
jwt_bearer_flow:
enabled: false
client.id: "<YourClientIdHere>"
client.username: "<YourClientUsernameHere>"
client.key_path: "<YourClientKeyPathHere>"
url: "https://login.salesforce.com"

var.url: "https://instance_id.my.salesforce.com"

var.event_log_file: true
var.elf_interval: 1h
var.log_file_interval: "Hourly"

var.real_time: true
var.real_time_interval: 5m

setupaudittrail:
enabled: false
var.initial_interval: 1d
var.api_version: 56

var.authentication:
user_password_flow:
enabled: true
client.id: "<YourClientIdHere>"
client.secret: "client-secret"
token_url: "<YourTokenURLHere>"
username: "<YourUsernameHere>"
password: "<YourPasswordHere>"
jwt_bearer_flow:
enabled: false
client.id: "<YourClientIdHere>"
client.username: "<YourClientUsernameHere>"
client.key_path: "<YourClientKeyPathHere>"
url: "https://login.salesforce.com"

var.url: "https://instance_id.my.salesforce.com"

var.real_time: true
# Configuration file for Salesforce module in Filebeat

# Common Configurations:
# - enabled: Set to true to enable ingestion of Salesforce module fileset
# - initial_interval: Initial interval for log collection. This setting determines the time period for which the logs will be initially collected when the ingestion process starts, i.e. 1d/h/m/s
# - api_version: API version for Salesforce, version should be greater than 46.0

# Authentication Configurations:
# User-Password Authentication:
# - enabled: Set to true to enable user-password authentication
# - client.id: Client ID for user-password authentication
# - client.secret: Client secret for user-password authentication
# - token_url: Token URL for user-password authentication
# - username: Username for user-password authentication
# - password: Password for user-password authentication

# JWT Authentication:
# - enabled: Set to true to enable JWT authentication
# - client.id: Client ID for JWT authentication
# - client.username: Username for JWT authentication
# - client.key_path: Path to client key for JWT authentication
# - url: Audience URL for JWT authentication

# Event Monitoring:
# - real_time: Set to true to enable real-time logging using object type data collection
# - real_time_interval: Interval for real-time logging

# Event Log File:
# - event_log_file: Set to true to enable event log file type data collection
# - elf_interval: Interval for event log file
# - log_file_interval: Interval type for log file collection, either Hourly or Daily

- module: salesforce

apex:
enabled: false
var.initial_interval: 1d
var.api_version: 56

var.authentication:
user_password_flow:
enabled: true
client.id: "<YourClientIdHere>"
client.secret: "<YourClientSecretHere>"
token_url: "<YourTokenURLHere>"
username: "<YourUsernameHere>"
password: "<YourPasswordHere>"
jwt_bearer_flow:
enabled: false
client.id: "<YourClientIdHere>"
client.username: "<YourClientUsernameHere>"
client.key_path: "<YourClientKeyPathHere>"
url: "https://login.salesforce.com"

var.url: "https://instance_id.my.salesforce.com"

var.event_log_file: true
var.elf_interval: 1h
var.log_file_interval: "Hourly"

login:
enabled: false
var.initial_interval: 1d
var.api_version: 56

var.authentication:
user_password_flow:
enabled: true
client.id: "<YourClientIdHere>"
client.secret: "client-secret"
token_url: "<YourTokenURLHere>"
username: "<YourUsernameHere>"
password: "<YourPasswordHere>"
jwt_bearer_flow:
enabled: false
client.id: "<YourClientIdHere>"
client.username: "<YourClientUsernameHere>"
client.key_path: "<YourClientKeyPathHere>"
url: "https://login.salesforce.com"

var.url: "https://instance_id.my.salesforce.com"

var.event_log_file: true
var.elf_interval: 1h
var.log_file_interval: "Hourly"

var.real_time: true
var.real_time_interval: 5m

logout:
enabled: false
var.initial_interval: 1d
var.api_version: 56

var.authentication:
user_password_flow:
enabled: true
client.id: "<YourClientIdHere>"
client.secret: "client-secret"
token_url: "<YourTokenURLHere>"
username: "<YourUsernameHere>"
password: "<YourPasswordHere>"
jwt_bearer_flow:
enabled: false
client.id: "<YourClientIdHere>"
client.username: "<YourClientUsernameHere>"
client.key_path: "<YourClientKeyPathHere>"
url: "https://login.salesforce.com"

var.url: "https://instance_id.my.salesforce.com"

var.event_log_file: true
var.elf_interval: 1h
var.log_file_interval: "Hourly"

var.real_time: true
var.real_time_interval: 5m

setupaudittrail:
enabled: false
var.initial_interval: 1d
var.api_version: 56

var.authentication:
user_password_flow:
enabled: true
client.id: "<YourClientIdHere>"
client.secret: "client-secret"
token_url: "<YourTokenURLHere>"
username: "<YourUsernameHere>"
password: "<YourPasswordHere>"
jwt_bearer_flow:
enabled: false
client.id: "<YourClientIdHere>"
client.username: "<YourClientUsernameHere>"
client.key_path: "<YourClientKeyPathHere>"
url: "https://login.salesforce.com"

var.url: "https://instance_id.my.salesforce.com"

var.real_time: true
var.real_time_interval: 5m
#----------------------------- Google Santa Module -----------------------------
- module: santa
Expand Down Expand Up @@ -4608,9 +4608,6 @@ setup.kibana:
# Beats and contains module or input metrics.
#logging.metrics.namespaces: [stats]

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:

# Logging to rotating files. Set logging.to_files to false to disable logging to
# files.
logging.to_files: true
Expand Down Expand Up @@ -4692,6 +4689,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Filebeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
2 changes: 2 additions & 0 deletions x-pack/heartbeat/heartbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@ logging.files:
# file. Defaults to false.
# rotateonstartup: false

# A map of key-value pair appended to beat process logs for additional context.
#logging.with_fields:
# ============================= X-Pack Monitoring ==============================
# Heartbeat can export internal metrics to a central Elasticsearch monitoring
# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The
Expand Down
Loading

0 comments on commit 589f641

Please sign in to comment.