this post was submitted on 02 Aug 2023
1437 points (97.2% liked)

Programmer Humor

25801 readers
2962 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] thelastknowngod@lemm.ee 15 points 2 years ago (11 children)

I think I really only use GUIs if I am learning something new and trying to understand the process/concepts or if I'm doing something I know is too small to automate. Generally once I understand a problem/tool at a deeper level, GUIs start to feel restrictive.

Notable exceptions are mostly focused around observability (Grafana, new relic, DataDog, etc) or just in github. I've used gh-dash before but the web ui is just more practical for day to day use.

For context, I'm in SRE. I feel like +90% of my day is spent in kubernetes, terraform, or ci/cd pipelines. My coworkers tend to use Lens but I'm almost exclusively in kubectl or the occasional k9s.

[–] JackbyDev@programming.dev 4 points 2 years ago (8 children)

Searching a log file? I want less. Searching all log files? I want log aggregation lol.

[–] docAvid@midwest.social 2 points 2 years ago (2 children)

One log file, or all, I want grep or awk, maybe with find in front, possibly throw some jq on top if something is logging big json blobs.

[–] thelastknowngod@lemm.ee 2 points 2 years ago

That's a lot slower at scale than something like Loki.

[–] JackbyDev@programming.dev 2 points 2 years ago

I feel you. The problem with a lot of Elastic style document search engines is that they don't ever let you search by very explicit terms because of how the index is built. I believe the pros outweigh the cons but I often wish I could "drop into" grep, less, and others from within the log aggregation tool.

load more comments (5 replies)
load more comments (7 replies)