Logs are an essential part of observing any service; without them you'll have significant blind spots. But collecting and analyzing them can be a real challenge -- especially at scale. Not only do you need to solve the basic task of collecting your logs, but you must do it in a reliable, performant, and robust manner. Nothing is more frustrating than having your logs pipeline fall on it's face during an outage, or even worse, cause the outage!
Fear not! In this guide we'll build an observability pipeline that will send logs from Kafka to New Relic logs.
Background
What is Kafka?
Apache Kafka is an open-source project for a distributed publish-subscribe messaging system rethought as a distributed commit log. Kafka stores messages in topics that are partitioned and replicated across multiple brokers in a cluster. Producers send messages to topics from which consumers read. These features make it an excellent candidate for durably storing logs and metrics data.
What is New Relic logs?
New Relic is a San Francisco, California-based technology company which develops cloud-based software to help website and application owners track the performances of their services.
Strategy
How This Guide Works
We'll be using Vector to accomplish this task. Vector is a popular open-source observability data platform. It's written in Rust, making it lightweight, ultra-fast and highly reliable. And we'll be deploying Vector as a agent.
What We'll Accomplish
We'll build an observability data platform that:
All in just a few minutes!
Tutorial
Install Vector
curl --proto '=https' --tlsv1.2 -sSf https://sh.vector.dev | shConfigure Vector
cat <<-'VECTORCFG' > ./vector.toml[sources.kafka]type = "kafka"bootstrap_servers = "10.14.22.123:9092,10.14.23.332:9092"group_id = "consumer-group-name"topics = [ "^(prefix1|prefix2)-.+", "topic-1", "topic-2" ][sinks.out]type = "new_relic_logs"inputs = [ "kafka" ]VECTORCFGStart Vector
vector --config ./vector.tomlObserve Vector
vector topexplain this command
Next Steps
Vector is powerful tool and we're just scratching the surface in this guide. Here are a few pages we recommend that demonstrate the power and flexibility of Vector: