-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update installation tasks and remove persistent install steps (#22290) (
#22504) * Update installation tasks and remove persistent install steps * Fix bugs in widget code * Add fixes from review and add to-do items
- Loading branch information
1 parent
c3cc3e9
commit f3e77b9
Showing
28 changed files
with
1,191 additions
and
1,171 deletions.
There are no files selected for viewing
12 changes: 0 additions & 12 deletions
12
x-pack/elastic-agent/docs/elastic-agent-configuration-example.asciidoc
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
202 changes: 202 additions & 0 deletions
202
x-pack/elastic-agent/docs/elastic-agent-reference-yaml.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
###################################### | ||
# Fleet configuration | ||
###################################### | ||
outputs: | ||
default: | ||
type: elasticsearch | ||
hosts: [127.0.0.1:9200] | ||
username: elastic | ||
password: changeme | ||
|
||
inputs: | ||
- type: system/metrics | ||
|
||
# The only two requirement are that it has only characters allowed in an Elasticsearch index name | ||
# Index names must meet the following criteria: | ||
# Lowercase only | ||
# Cannot include \, /, *, ?, ", <, >, |, ` ` (space character), ,, # | ||
# Cannot start with -, _, + | ||
# Cannot be . or .. | ||
data_stream.namespace: default | ||
use_output: default | ||
streams: | ||
- metricset: cpu | ||
# The only two requirement are that it has only characters allowed in an Elasticsearch index name | ||
# Index names must meet the following criteria: | ||
# Lowercase only | ||
# Cannot include \, /, *, ?, ", <, >, |, ` ` (space character), ,, # | ||
# Cannot start with -, _, + | ||
# Cannot be . or .. | ||
data_stream.dataset: system.cpu | ||
- metricset: memory | ||
data_stream.dataset: system.memory | ||
- metricset: network | ||
data_stream.dataset: system.network | ||
- metricset: filesystem | ||
data_stream.dataset: system.filesystem | ||
|
||
# management: | ||
# # Mode of management, the Elastic Agent support two modes of operation: | ||
# # | ||
# # local: The Elastic Agent will expect to find the inputs configuration in the local file. | ||
# # | ||
# # Default is local. | ||
# mode: "local" | ||
|
||
# fleet: | ||
# access_api_key: "" | ||
# kibana: | ||
# # kibana minimal configuration | ||
# hosts: ["localhost:5601"] | ||
# ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] | ||
|
||
# # optional values | ||
# #protocol: "https" | ||
# #username: "elastic" | ||
# #password: "changeme" | ||
# #path: "" | ||
# #ssl.verification_mode: full | ||
# #ssl.supported_protocols: [TLSv1.0, TLSv1.1, TLSv1.2] | ||
# #ssl.cipher_suites: [] | ||
# #ssl.curve_types: [] | ||
# reporting: | ||
# # Reporting threshold indicates how many events should be kept in-memory before reporting them to fleet. | ||
# #reporting_threshold: 10000 | ||
# # Frequency used to check the queue of events to be sent out to fleet. | ||
# #reporting_check_frequency_sec: 30 | ||
|
||
# agent.download: | ||
# # source of the artifacts, requires elastic like structure and naming of the binaries | ||
# # e.g /windows-x86.zip | ||
# sourceURI: "https://artifacts.elastic.co/downloads/beats/" | ||
# # path to the directory containing downloaded packages | ||
# target_directory: "${path.data}/downloads" | ||
# # timeout for downloading package | ||
# timeout: 30s | ||
# # file path to a public key used for verifying downloaded artifacts | ||
# # if not file is present agent will try to load public key from elastic.co website. | ||
# pgpfile: "${path.data}/elastic.pgp" | ||
# # install_path describes the location of installed packages/programs. It is also used | ||
# # for reading program specifications. | ||
# install_path: "${path.data}/install" | ||
|
||
# agent.process: | ||
# # timeout for creating new processes. when process is not successfully created by this timeout | ||
# # start operation is considered a failure | ||
# spawn_timeout: 30s | ||
# # timeout for stopping processes. when process is not stopped by this timeout then the process. | ||
# # is force killed | ||
# stop_timeout: 30s | ||
|
||
# agent.grpc: | ||
# # listen address for the GRPC server that spawned processes connect back to. | ||
# address: localhost | ||
# # port for the GRPC server that spawned processes connect back to. | ||
# port: 6789 | ||
|
||
# agent.retry: | ||
# # Enabled determines whether retry is possible. Default is false. | ||
# enabled: true | ||
# # RetriesCount specifies number of retries. Default is 3. | ||
# # Retry count of 1 means it will be retried one time after one failure. | ||
# retriesCount: 3 | ||
# # Delay specifies delay in ms between retries. Default is 30s | ||
# delay: 30s | ||
# # MaxDelay specifies maximum delay in ms between retries. Default is 300s | ||
# maxDelay: 5m | ||
# # Exponential determines whether delay is treated as exponential. | ||
# # With 30s delay and 3 retries: 30, 60, 120s | ||
# # Default is false | ||
# exponential: false | ||
|
||
# agent.monitoring: | ||
# # enabled turns on monitoring of running processes | ||
# enabled: false | ||
# # enables log monitoring | ||
# logs: false | ||
# # enables metrics monitoring | ||
# metrics: false | ||
|
||
# # Allow fleet to reload his configuration locally on disk. | ||
# # Notes: Only specific process configuration will be reloaded. | ||
# agent.reload: | ||
# # enabled configure the Elastic Agent to reload or not the local configuration. | ||
# # | ||
# # Default is true | ||
# enabled: true | ||
|
||
# # period define how frequent we should look for changes in the configuration. | ||
# period: 10s | ||
|
||
# Logging | ||
|
||
# There are four options for the log output: file, stderr, syslog, eventlog | ||
# The file output is the default. | ||
|
||
# Sets log level. The default log level is info. | ||
# Available log levels are: error, warning, info, debug | ||
#agent.logging.level: info | ||
|
||
# Enable debug output for selected components. To enable all selectors use ["*"] | ||
# Other available selectors are "beat", "publish", "service" | ||
# Multiple selectors can be chained. | ||
#agent.logging.selectors: [ ] | ||
|
||
# Send all logging output to stderr. The default is false. | ||
agent.logging.to_stderr: true | ||
|
||
# Send all logging output to syslog. The default is false. | ||
#agent.logging.to_syslog: false | ||
|
||
# Send all logging output to Windows Event Logs. The default is false. | ||
#agent.logging.to_eventlog: false | ||
|
||
# If enabled, Elastic-Agent periodically logs its internal metrics that have changed | ||
# in the last period. For each metric that changed, the delta from the value at | ||
# the beginning of the period is logged. Also, the total values for | ||
# all non-zero internal metrics are logged on shutdown. The default is true. | ||
#agent.logging.metrics.enabled: true | ||
|
||
# The period after which to log the internal metrics. The default is 30s. | ||
#agent.logging.metrics.period: 30s | ||
|
||
# Logging to rotating files. Set logging.to_files to false to disable logging to | ||
# files. | ||
#agent.logging.to_files: true | ||
#agent.logging.files: | ||
# Configure the path where the logs are written. The default is the logs directory | ||
# under the home path (the binary location). | ||
#path: /var/log/elastic-agent | ||
|
||
# The name of the files where the logs are written to. | ||
#name: elastic-agent | ||
|
||
# Configure log file size limit. If limit is reached, log file will be | ||
# automatically rotated | ||
#rotateeverybytes: 10485760 # = 10MB | ||
|
||
# Number of rotated log files to keep. Oldest files will be deleted first. | ||
#keepfiles: 7 | ||
|
||
# The permissions mask to apply when rotating log files. The default value is 0600. | ||
# Must be a valid Unix-style file permissions mask expressed in octal notation. | ||
#permissions: 0600 | ||
|
||
# Enable log file rotation on time intervals in addition to size-based rotation. | ||
# Intervals must be at least 1s. Values of 1m, 1h, 24h, 7*24h, 30*24h, and 365*24h | ||
# are boundary-aligned with minutes, hours, days, weeks, months, and years as | ||
# reported by the local system clock. All other intervals are calculated from the | ||
# Unix epoch. Defaults to disabled. | ||
#interval: 0 | ||
|
||
# Rotate existing logs on startup rather than appending to the existing | ||
# file. Defaults to true. | ||
# rotateonstartup: true | ||
|
||
# Set to true to log messages in JSON format. | ||
#agent.logging.json: false | ||
|
||
# Set to true, to log messages with minimal required Elastic Common Schema (ECS) | ||
# information. Recommended to use in combination with `logging.json=true` | ||
# Defaults to false. | ||
#agent.logging.ecs: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.