🚀 New #Golang Project: Building a Custom #AWS #ALB Logs Collector for #VictoriaLogs

@setevoy has published this article diving into a hands-on Golang project: creating a custom log collector that pulls AWS Application Load Balancer logs from #S3 and sends them directly to VictoriaLogs.

If you want to deepen your understanding of log ingestion, AWS services, or building collectors in Go, this article is a great place to start.
Learn More 👇
https://bit.ly/4cU3EaR

Golang: writing an AWS Load Balancer logs collector for VictoriaLogs

Creating a Golang logs collector to get AWS ALB Access Logs from AWS S3 via SQS and write to VictoriaLogs via the VictoriaLogs JSON stream API

RTFM: Linux, DevOps, and system administration | DevOps-engineering, and system administration. Cases from practice.
[AWS] EC2とApplication Load Balancer(ALB)を作成する方法 (Part 1) - Qiita

How to create Load Balancer in AWS (Application Load Balancer) (Part 1) 1. はじめに こんにちは。 今回は AWS の Load Balancer について、簡単なハンズオンを紹介したいと思います...

Qiita

Kombi aus #MeerMittwoch und #FotoVorschlag "Dinge die mit J beginnen":

#Jurameer 🤓

Ein Abteil meiner #Sammlung von #Fossilien ist dem #Jura und besonders dem Jurameer gewidmet 😁 Vor 150 Millionen Jahren, zur Zeit von #Dinos wie #Brachiosaurus 🦕, entstand die #Schwäbische und die #Fränkische #Alb als ein großes #Schwamm- und #Korallenriff 🪸 - ähnlich wie das Great Barrier Reef in #Australien zwischen dem damaligen europäischen #Festland und dem offenen #Tethysmeer 🌊

#WipWednesday

Спробував користуватись #Athena в #AWS - це сервіс пошуку даних на #S3. Знав про нього раніше, але думав він тільки для аналізу або каталогізації файлів, які потрапляють на бакет.
Справа у тому, що #ALB може писати логі тільки на бакет, тому шукати там потрібні запити вручне не зручно. А ось за допомогою #Athena можна просто створити табличку, та сказати, що дані находяться в різних каталогах на бакеті, розділені по назвам оточень. Після цього можна робити звичайні #SQL запити, які будуть шукати дані на бакеті в #CSV файлах, які стиснуті gz (!!!). Це дуже зручно та швидко.
Приклад запиту
```
SELECT
date_parse(time, '%Y-%m-%dT%H:%i:%s.%fZ') AS request_time,
request_verb AS method,
request_url AS url,
elb_status_code AS http_code,
sent_bytes AS response_size_bytes,
user_agent
FROM alb_access_logs
WHERE app_name = 'k8s-production'
AND year = '2026'
AND month = '03'
AND day = '01'
AND domain_name = 'www.domain.tld'
AND type IS NOT NULL
ORDER BY request_time DESC
LIMIT 500;
```
Додали #WAF на #ALB для фронт додатків та виявилось, що третина трафіку просто паразитна
#AWS #Security
Liebe CDU, warum tut ihr das?

PeerTube

Der Alte Leipziger Bahnhof muss Gedenkort werden

https://video.dresden.network/w/49LxL1suAhejvHJ3pXqqJ7

Der Alte Leipziger Bahnhof muss Gedenkort werden

PeerTube

Barça head to Alba in the Copa, clear favorites to win; Alba seek a shock, while a draw would keep the drama alive. Kickoff 21:00 CET (UTC+1).

Albacete Balompié 10.5%
Draw 21.4%
FC Barcelona 68.1%

#Football #Soccer #CopadelRey #ALB #BAR #ALBBAR

Aviation weather for Albany International airport (USA) is “KALB 291451Z 00000KT 10SM FEW025 FEW060 FEW250 M12/M18 A3006 RMK AO2 SLP186 T11171178 51010” : See what it means on https://www.bigorre.org/aero/meteo/kalb/en #albanyinternationalairport #airport #albany #usa #kalb #alb #metar #aviation #aviationweather #avgeek vl
Albany International airport (United State) aviation weather and informations KALB ALB

Aviation weather with TAF and METAR, Maps, hotels and aeronautical information for Albany International airport (United State)

Bigorre.org

Recording rules for #AWS Load Balancer logs by RTFM.
Arseniy Zinchenko has published a deep dive on AWS Application Load Balancer logs, collecting #ALB #logs with a custom #Golang collector and storing them in #VictoriaLogs.
This time, the focus shifts to the next step: turning raw logs into meaningful, actionable metrics.

Learn More 👇
https://rtfm.co.ua/en/victoriametrics-recording-rules-for-aws-load-balancer-logs/

VictoriaMetrics: Recording rules for AWS Load Balancer logs

Creating Recording Rules for VictoriaMetrics metrics from AWS Load Balancer logs in VictoriaLogs using pipes, filters, and solve some non-obvious nuances of ALB

RTFM: Linux, DevOps, and system administration | DevOps-engineering, and system administration. Cases from practice.