Hello,
I'm getting problem in sending logs from winlogbeat-6.3.2-windows-x86_64 to kibana(version - 4.5.4), from windows 10.
After installing and start running the winlogbeat service successfully as given below :-
PS C:\Program Files\ELK_Beats\winlogbeat-6.3.2-windows-x86_64> .\install-service-winlogbeat.ps1
Status Name DisplayName
------ ---- -----------
Stopped winlogbeat winlogbeat
PS C:\Program Files\ELK_Beats\winlogbeat-6.3.2-windows-x86_64> Start-Service winlogbeat
but still i'm unable to see the logs on kibana server, i made some changes in winlogbeat.yml which are given below:-
#-------------------------- Elasticsearch output ------------------------------
output.elasticsearch:
# Array of hosts to connect to.
hosts: ["localhost:9200"]
# Optional protocol and basic auth credentials.
#protocol: "https"
#username: "elastic"
#password: "changeme"
#----------------------------- Logstash output --------------------------------
output.logstash:
# The Logstash hosts
hosts: ["server_ip:port"]
index: winlogbeat
# Optional SSL. By default is off.
# List of root certificates for HTTPS server verifications
#ssl.certificate_authorities: ["/etc/pki/root/ca.pem"]
# Certificate for SSL client authentication
#ssl.certificate: "/etc/pki/client/cert.pem"
# Client Certificate Key
#ssl.key: "/etc/pki/client/cert.key"
Thanks