Como coletar 로그는 Filebeat와 함께 NGINX를 수행합니다.
아니면 NGINX?
O NGINX는 부하 분산 장치 HTTP, 전자 메일 프록시(IMAP, POP3 및 SMTP) 및 프록시 역방향 프록시를 사용하여 웹 오픈 소스를 사용할 수 있습니다.
Para conhecer mais sobre o projeto, acesse a sua página official aqui .
NGINX를 수행하는 Filebeat para coletar os 로그 활용
NGINX 모듈은 Filebeat você가 콜레타 및 분석 os 로그에 오류 및 액세스를 허용하므로 NGINX에 대한 비판을 받을 수 있습니다.
Para saber mais sobre esse modulo, acesse a documentaçãoaqui
Filebeat 설치 및 구성
윈도우:
PowerShell.exe -ExecutionPolicy UnRestricted -File .\install-service-filebeat.ps1
리눅스: sudo rpm -vi filebeat-7.10.1-x86_64.rpm
윈도우:
C:\Program Files\Filebeat\filebeat.yml
리눅스: /etc/filebeat/filebeat.yml
Elasticsearch와 Kibana의 연결 정보로 Insira nele:
output.elasticsearch:
hosts: ["url_do_elasticsearch:9200"]
setup.kibana:
host: ["url_do_kibana:5601"]
윈도우:
.\filebeat.exe modules enable nginx
리눅스: sudo filebeat modules enable nginx
윈도우:
.\filebeat.exe modules enable nginx
리눅스: sudo filebeat modules enable nginx
윈도우:
modules.d/nginx.yml
리눅스: /etc/filebeat/modules.d/nginx.yml
Por padrão, o arquivo vem com as seguintes informações e é aqui que você especifica o caminho para o seu diretório de logs:
# Module: nginx
# Docs: https://www.elastic.co/guide/en/beats/filebeat/7.10/filebeat-module-nginx.html
- module: nginx
# Access logs
access:
enabled: true
# Set custom paths for the log files. If left empty,
# Filebeat will choose the paths depending on your OS.
#var.paths: ["/diretório/do/log/nginx/access.log*"]
# Error logs
error:
enabled: true
# Set custom paths for the log files. If left empty,
# Filebeat will choose the paths depending on your OS.
#var.paths: ["/diretório/do/log/nginx/error.log*"]
# Ingress-nginx controller logs. This is disabled by default. It could be used in Kubernetes environments to parse ingress-nginx logs
ingress_controller:
enabled: false
# Set custom paths for the log files. If left empty,
# Filebeat will choose the paths depending on your OS.
#var.paths: ["/diretório/do/log/nginx/ingress.log"]
Windows:
.\filebeat.exe setup
리눅스: sudo filebeat setup
윈도우:
Start-Service filebeat
리눅스: sudo service filebeat start
Depois disso, você conseguirá ver os logs do seu ambiente no discover, além de ter dashboards com informações e métricas do seu NGINX.
Reference
이 문제에 관하여(Como coletar 로그는 Filebeat와 함께 NGINX를 수행합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sysadminas/como-coletar-logs-do-nginx-com-o-filebeat-2jgg텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)