I'm trying to configure a stand alone elastic agent. I get a success response during installation but i'm not sure which index in elasticsearch the data get sent to? This is my elastic-agent.yml
file:
outputs:
default:
type: elasticsearch
hosts: ["elastic.example.net:9200"]
username: "elastic"
password: "HELLO9999"
inputs:
- type: system/metrics
id: unique-system-metrics-input
data_stream.namespace: default
use_output: default
streams:
- metricset: cpu
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
agent.logging.to_stderr: true
Then I typed ./elastic-agent.exe install
. I said no
to the fleet server. After a few seconds, I get the message Elastic Agent has been successfully installed
. So which index do I look in to see my data?