0Pricing
System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) · 강의

Beats: 경량 데이터 전송 도구

로그와 메트릭을 ELK 스택으로 전송하는 Beats 제품군을 알아보세요. Filebeat와 Metricbeat 중 언제 무엇을 사용할지, Beats가 Logstash와 어떻게 함께 작동하는지 배웁니다.

Beats: 경량 데이터 전송 도구은(는) CoddyKit의 무료 System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) 강의입니다. 이것은 4개 중 4번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) 강의에는 총 4개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

What Are Beats?

Beats are lightweight, single-purpose agents installed on your servers to collect data and ship it to Elasticsearch or Logstash. They use few resources, ideal for edge collection.

The Beats Family

Each Beat targets one data type.

  • Filebeat for log files
  • Metricbeat for system and service metrics
  • Packetbeat for network data
  • Heartbeat for uptime checks

Where Beats Fit

Beats sit at the source. They can ship directly to Elasticsearch, or to Logstash first when you need heavier parsing and enrichment.

app server -> Filebeat -> Logstash -> Elasticsearch -> Kibana

Filebeat Basics

Filebeat tails log files and forwards new lines. It tracks read position so it resumes after restarts without duplicating data.

filebeat.inputs:
  - type: log
    paths:
      - /var/log/app/*.log

Sending to Elasticsearch

For simple pipelines, point Filebeat straight at Elasticsearch.

output.elasticsearch:
  hosts: ["http://localhost:9200"]

Sending to Logstash

When you need grok parsing or enrichment, send to Logstash instead.

output.logstash:
  hosts: ["localhost:5044"]

Metricbeat

Metricbeat collects metrics from the OS and from services through modules.

metricbeat.modules:
  - module: system
    metricsets: [cpu, memory, network]
    period: 10s

Modules and Dashboards

Beats ship with prebuilt modules that include parsing rules and ready-made Kibana dashboards, so you get visualizations without manual setup.

filebeat modules enable nginx
filebeat setup --dashboards

Back Pressure Handling

If the output is slow or down, Beats apply back pressure and buffer locally, slowing reads instead of dropping data.

Beats vs Logstash

Beats are light shippers; Logstash is a heavy processor. Use Beats at the edge for collection and Logstash centrally for transformation.

  • Beats: low footprint, on every host
  • Logstash: more CPU, fewer central nodes

A Typical Setup

Filebeat on each app server forwards logs to a Logstash pipeline that parses and enriches them before indexing in Elasticsearch for Kibana.

Quick Check

Choose the right Beat.

Recap

You learned that Beats are lightweight per-purpose shippers, that Filebeat handles logs and Metricbeat handles metrics, and that Beats can send directly to Elasticsearch or through Logstash for heavier parsing. Beats sit at the edge with a small footprint, complementing central Logstash processing.

자주 묻는 질문

“Beats: 경량 데이터 전송 도구” 강의는 무료인가요?

네 — “Beats: 경량 데이터 전송 도구” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) 강의 전체를 잠금 해제할 수 있습니다. System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) 강의에는 총 4개의 강의가 포함되어 있습니다.

“Beats: 경량 데이터 전송 도구”에서 뭘 배우나요?

로그와 메트릭을 ELK 스택으로 전송하는 Beats 제품군을 알아보세요. Filebeat와 Metricbeat 중 언제 무엇을 사용할지, Beats가 Logstash와 어떻게 함께 작동하는지 배웁니다. 브라우저에서 직접 실행하는 실습 코드로 System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 4번째 강의입니다.

“Beats: 경량 데이터 전송 도구” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. Elasticsearch: 인덱싱과 검색
  2. Logstash: 데이터 수집과 처리
  3. Kibana: 시각화와 대시보드
  4. Beats: 경량 데이터 전송 도구
← System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)(으)로 돌아가기