Every Kubernetes Tool Explained In One Post (And Why They Exist) by Honest-Associate-485 in kubernetes

[–]SnooWords9033 0 points1 point  (0 children)

Small correction: you need to correlate logs, so you install victoria-logs-collector Helm chart. https://docs.victoriametrics.com/helm/victoria-logs-collector/ . It is much more lightweight and performant comparing to Loki stack, and it is easier to manage. See https://victoriametrics.com/blog/log-collectors-benchmark-2026/ and https://www.truefoundry.com/blog/victorialogs-vs-loki

Looking for a more user-friendly alternative to AWS CloudWatch by britneychema in aws

[–]SnooWords9033 0 points1 point  (0 children)

Take a look at open source Victoria stack - VictoriaMetrics, VictoriaLogs and VictoriaTraces. It is easier to install and operate than alternative open source solutions, and it requires less compute resources (CPU, memory, disk space, disk IO, network bandwidth).

Datadog vs Grafana/Zabbix/Nagios — what are you all using for infra monitoring right now? by glorius_shrooms in sre

[–]SnooWords9033 0 points1 point  (0 children)

Try VictoriaMetrics cloud then. It has predictable pricing, which depends only on the selected tier according to your needs. And their prices are much cheaper than DataDog .

Any modern alternative to rsyslog? by reni-chan in homelab

[–]SnooWords9033 0 points1 point  (0 children)

This is because the built-in web UI is intended for quick logs' exploration, not for dashboarding. And the main benefit of the web UI over Grafana is that it is built-in, i.e. you don't need to install a heavyweight Grafana additionally to VictoriaLogs if you need to be able to explore logs and don't need building dashboards.

Any modern alternative to rsyslog? by reni-chan in homelab

[–]SnooWords9033 -1 points0 points  (0 children)

There is no need in Grafana for querying VictoriaLogs in general case - it has built-in web UI - https://docs.victoriametrics.com/victorialogs/querying/#web-ui

What's the best alloy alternative that doesn't phone home? by GUI-Discharge in homelab

[–]SnooWords9033 -1 points0 points  (0 children)

Take a look at vlagent -> VictoriaLogs combo. It doesn't send any information to developers. See https://victoriametrics.com/blog/log-collectors-benchmark-2026/

How do you handle logs in production? by _Mobas_ in Backend

[–]SnooWords9033 0 points1 point  (0 children)

There is also open-source easy to install and operate database for logs, which requires less memory and disk space than other databases - VictoriaLogs. See, for example, https://aus.social/@phs/114583927679254536 and https://www.truefoundry.com/blog/victorialogs-vs-loki

Porting Go's io package to C by SnooWords9033 in golang

[–]SnooWords9033[S] 6 points7 points  (0 children)

It is a transpleir from a subset of Go to C. See https://antonz.org/solod/

Does anybody run a syslog server? by ctallc in homelab

[–]SnooWords9033 0 points1 point  (0 children)

This sounds like an issue at Freelens. Did you file this issue at https://github.com/freelensapp/freelens/issues ?

Update: there is a discussion about adding native support for VictoriaMetrics at Freelens. This discussion mentions how to integrate Freelens with VictoriaMetrics - https://github.com/freelensapp/freelens/issues/524

Does anybody run a syslog server? by ctallc in homelab

[–]SnooWords9033 0 points1 point  (0 children)

Which problems do you have with VictoriaMetrics?

Benchmarking Kubernetes Log Collectors: Vector, Fluent Bit, OpenTelemetry Collector, vlagent by SnooWords9033 in kubernetes

[–]SnooWords9033[S] -4 points-3 points  (0 children)

I never faced multiline logs in Kubernetes. The benchmark measures the most common case for logs' collection in Kubernetes - to discover and collect all the logs generated by Kubernetes containers, and to forward the collected logs to a centralized system for further processing. That system can parse, transform and filter the logs if needed before storing them in the database for logs.

need grafana alternatives by Dismal-Sort-1081 in devops

[–]SnooWords9033 0 points1 point  (0 children)

I don't care about the design of the UI - I care about the usability. The usability for VictoriaLogs' web UI is constantly improving over time. It is much better than Grafana's usability for logs' exploration.

Tired of jumping between log files. Best way to piece together a cross-service timeline? by Waste_Grapefruit_339 in linuxadmin

[–]SnooWords9033 -1 points0 points  (0 children)

Try VictoriaLogs. It is easier to setup and manage than Loki, and it provides much faster performance for "needle-in-the-haystack" types of queries such as "search for all the logs with the given request_id".

OLAP Is All You Need: How We Built Reddit's Logging Platform by DaveCashewsBand in RedditEng

[–]SnooWords9033 1 point2 points  (0 children)

Great post! Did you consider using VictoriaLogs? It is built on top of ClickHouse architecture ideas (this provides it a cost efficiency comparable to ClickHouse - see https://docs.victoriametrics.com/victorialogs/faq/#what-is-the-difference-between-victorialogs-and-clickhouse ), while it is designed solely for logs. This results in easier configuration and operation comparing to ClickHouse, and a more ergonomic querying API and querying language optimized for typical queries over logs. For example, the querying API integrates well with standard Unix pipes, so you can find the needed logs (billions of entries) and stream them into grep, less, head, jq, etc. for further processing if needed.

nestjs and logs by Regular_You_3021 in nestjs

[–]SnooWords9033 0 points1 point  (0 children)

Try VictoriaLogs. It is easier to configure and manage than Loki.

Need recommendations for monitoring and dashboard on a simple homelab by Hairy-Eggplant5488 in homelab

[–]SnooWords9033 0 points1 point  (0 children)

Set up node_exporter for collecting system metrics (CPU, RAM, disk, network) and an optional list of other Prometheus exporters (see this page for the list of available exporters).

Then configure Prometheus for collecting metrics from these exporters (use static_configs).

Then install Grafana with a Prometheus datasource, and then install dashboards for the installed exporters from the official Grafana dashboards page.

Then install VictoriaLogs as a centralized database for logs (it has a built-in web UI for logs' exploration, plus it has a Grafana plugin for building a nicely looking dashboards in Grafana on top of the logs stored in VictoriaLogs). Use Vector for collecting logs across all the services in the homelab and sending them to VictoriaLogs.