u/Economy_Passenger296

Anyone else struggling with production error detection despite having tons of observability data?

So this is probably a basic question but I am stuck on it. We have got prometheus, datadog, custom metrics, logs going everywhere. Our stack is monitored to death but when something breaks in production we still find out from customers before alerts catch it.

I have been digging through dashboards and our alert thresholds look reasonable on paper, but clearly they are not working. Either they are too noisy so people ignore them or they are too quiet and miss actual issues.

Has anyone dealt with this situation where the tooling is there but detection still does not work well? Trying to understand if this is a setup problem or something else.

What actually helped you get from lots of data to alerts that catch real problems before your customers do?

reddit.com
u/Economy_Passenger296 — 3 days ago
▲ 8 r/agile

How to keep remote team members engaged in hybrid workshops

Running workshops for hybrid teams where half are in office and half remote. Office people dominate the conversation every time, remote ones go silent or just lurk on camera. Tried breakout rooms but they end up awkward with nobody talking.

We have online whiteboard stuff and visual collaboration tools with infinite canvas which seem perfect but keeping remote brainstorming flowing is hard. 

Tried jira integrations to prep but still nobody participates equally. Smart meetings sound good in theory. Remote brainstorming just dies.

How do you make this work?

reddit.com
u/Economy_Passenger296 — 3 days ago
▲ 0 r/travel

Cant find unique experiences like helicopter tours or private digs

I've been trying to book something super unique for a client, things like a private helicopter tour or even an archaeological dig. But every time i search, i hit a wall. Either its sold out or not even listed anywhere 😫. Its frustrating because i know these kinds of experiences exist, but theyre just so hard to find.

How do you guys secure these rare activities? Im really stuck and could use any advice.

reddit.com
u/Economy_Passenger296 — 4 days ago

My skin looks dull and lifeless in my 30s. How to improve it?

Turned 32 last month and apparently my face got the memo that its time to look like I haven't slept since 2018. Its dull as hell, uneven tone, those little KP bumps on my cheeks that make everything look rough, and just straight up lifeless even though no acne or oil in sight. Oh also i have sensitive skin

Tried the usual stuff. Gentle hydration cleansers but they leave me flakier. Moisturisers that sit there but don't actually do anything. Been layering acne treatments that do nothing since there is no acne. Sunscreen daily because apparently that's necessary.

Current lineup, cerave hydrating cleanser morning and night, some hyaluronic serum that evaporates on contact, cerave pm moisturiser which is fine but not saving me, and a basic spf. Once a week i slather on a thicker cream thinking maybe dehydration but nope, still looks bad.

At this point i am wondering if its the KP creeping up or if my skin just hates me personally. Someone with clear nice skin, spill your secrets before i start googling vampire transformations.

reddit.com
u/Economy_Passenger296 — 7 days ago

Gentle Ways people are managing keratosis pilaris.

As a skincare brand, we see a lot of people struggling with keratosis pilaris because it’s hard to find products that help with the bumps without making the skin feel irritated or overly dry afterward. A lot of people end up over exfoliating or using really harsh scrubs, which can sometimes make the redness and texture look even worse.

From what we’ve seen, keeping the routine simple usually works best gentle exfoliation a couple times a week combined with consistent hydration. Ingredients like lactic acid, glycolic acid, and urea tend to help with rough, bumpy skin while still supporting the skin barrier when used properly.

Products like AmLactin and First Aid Beauty’s KP Bump Eraser get mentioned a lot by people looking for something effective that still feels gentle on sensitive skin and also focusing on science backed skincare solutions that are effective, but still comfortable for everyday use, and a lot of the feedback we hear is that consistency makes the biggest difference over time.

reddit.com
u/Economy_Passenger296 — 8 days ago

Sensitive skin hydration without irritation. What works for you?

My skin is super sensitive and I cant find anything that hydrates without making it worse. Tried a few thick moisturisers but they either sting or make my kp bumps flare up. Ive got these small kp bumps on my arms and legs that get worse if I use the wrong stuff, and my face is always tight no matter what skin hydration cleanser I pick. Even acne treatments that say gentle for sensitive skin leave it red and irritated. Anyone got recs for cleansers or thick moisturisers that actually work without causing issues?

reddit.com
u/Economy_Passenger296 — 8 days ago

What should I know before building financial data quality validation pipelines?

about a month ago I built a new aggregation pipeline for a financial dashboard. it pulls from a few sources, normalizes the data, and calculates daily revenue totals.

everything looked fine in dev. when moving to prod I copied what I thought was the final query, but it still had a debug multiplier in it from earlier testing.

the pipeline runs nightly, and those numbers fed directly into the main dashboard.

no one caught it for weeks. the numbers looked consistent, just scaled up. decisions were made based on those reports, including budget allocation and planning.

I only noticed it while building a separate validation check and comparing results against actual financial data. the mismatch was obvious once I looked for it.

we fixed the pipeline and corrected the data, but it exposed a gap in how we validate critical metrics. now I’m trying to understand how teams catch this kind of issue earlier, especially when everything looks internally consistent.

also how other teams handled similar situations after a mistake like this!

reddit.com
u/Economy_Passenger296 — 9 days ago

Best exfoliant for sensitive skin?

I have been noticing a lot of mixed opinions lately on exfoliants for sensitive skin, especially chemical ones like BHAs and stronger AHAs. I tried Paula’s Choice 2% BHA last year because of how widely recommended it is, but it honestly didn’t work out for me. My skin was fairly calm before that just the occasional hormonal breakout but after using it, I ended up with persistent texture that I didn’t have before. Even though I introduced it slowly and followed all the “sensitive skin” guidelines, my skin barrier just never felt the same again. Now I’m left with small bumps and congestion mainly around my cheeks, forehead, and jawline.

At this point I know exfoliation is probably still needed, but I’m trying to be much more careful and understand what actually works for reactive skin instead of just following trends. I’ve been looking into gentler chemical exfoliants like lactic acid and mandelic acid, and I’ve also seen Sunday Riley Good Genes mentioned often but I’m not sure if stronger AHAs are really the right direction for sensitive skin.

I have also read a lot about how some brands focus specifically on formulating for barrier support and gentler exfoliation like First Aid Beauty’s approach, so I’m curious what actually works long-term for people here.For those with sensitive or reactive skin what exfoliants have genuinely helped you without causing setbacks?

reddit.com
u/Economy_Passenger296 — 10 days ago
▲ 2 r/webdev

Enterprise automation failure happens even when workflows are correctly implemented

Most teams start automation with a simple goal. They want to remove repetitive work and make operations more efficient. At the beginning it usually works well. Small workflows get automated, simple tasks disappear, and everything feels like it is moving in the right direction.But once automation reaches real production usage, the same pattern starts showing up everywhere.

Things break, not because the idea is wrong, but because the environment is not stable. Most business workflows still depend on browser based systems that were never designed for automation. Because of that, automation keeps hitting unpredictable limits in real usage. Here is what usually causes the problems:

  • many tools do not offer full APIs so teams are forced to rely on the UI
  • authentication systems like SSO, MFA, and OTP interrupt automated flows
  • sessions expire during execution and reset the workflow
  • UI updates silently break automation logic and selectors
  • important actions exist only inside dashboards and cannot be accessed directly
  • bot detection systems flag consistent automated behavior even when it is normal usage

What makes this worse is that failures often feel random. One workflow works today and breaks tomorrow for no obvious reason. In reality it is not randomness. It is the fact that automation is running on top of systems that are constantly changing and not designed for stable machine execution.

So teams end up stuck in a loop. They build automation, it works for a while, then it breaks, then they fix it, and then it breaks again later. Why does automation always seem to work perfectly in testing but start breaking constantly once it goes live in real company workflows?

reddit.com
u/Economy_Passenger296 — 11 days ago

How to fix the gap between design and prototype

Just wrapped up a full wireframing session with my team and everything felt good at the moment. but the second i opened the prototype file today, it all just scattered. components arent labeled the same way, screens are all over the place, and half the ideas from our sticky notes just dont translate at all.
it ends up taking me 4 or 5 hours just to clean it up before i can pass it to devs

is there a better way to go from wireframes to prototypes without killing the creative vibe?

reddit.com
u/Economy_Passenger296 — 11 days ago

I am running into the same issue with automatic root cause analysis tools. They flag problems, but it is mostly surface level stuff.

High CPU, memory pressure, slow response times. All useful, but that's already what dashboards show. It doesn't get me closer to understanding what actually caused it.

What I am missing is the next step. If there's a memory issue, I want to know which part of the service or which path is responsible. If queries are slow, I need something that points toward the actual cause, not just the symptom.

We have tried a few of these tools and they all seem to stop at highlighting metrics. Once you need to go deeper, it's back to manual digging through logs, traces, and code.

At that point it feels like the root cause part isn't really there, just better alerting.

Anyone has found an approach that actually connects symptoms to cause in practice, or if this is still mostly a manual workflow.

reddit.com
u/Economy_Passenger296 — 15 days ago

So real talk I'm running a DTC brand and honestly the logistics side is becoming the hidden profit killer. We do decently on product margins but the delivery experience is such a mess right now that it's eating into everything.

Here's what's happening. Our customers want next day delivery or at least predictable shipping timelines but our current setup is just not cutting it. We're stuck between paying for premium courier networks that are insanely expensive or using slower options that piss people off. Either way the customer experience takes a hit and they remember that more than the product itself.

I've been looking at some newer platforms and fulfillment setups but honestly it all feels cobbled together. Like there's no real solution that handles everything well. The tracking is inconsistent, delivery scheduling is rigid, and whenever something goes wrong the customer service nightmare is real.

I'm curious what other people shipping physical products are actually doing about this. Are you building your own logistics operations or outsourcing it? Using specific platforms that actually work? How much of your margin are you allocating to shipping and delivery?

It feels like this is the unsexy part of ecommerce that nobody talks about until it's destroying your unit economics. What's your setup and what actually moved the needle for you?

reddit.com
u/Economy_Passenger296 — 15 days ago
▲ 0 r/sre

Our prod observability setup looks fine on dashboards. Logs are clean, metrics steady. Then something breaks and we are scrambling.

Spent last week digging through traces after an outage. Everything looked normal until it didn't. No alerts fired, nothing obvious beforehand. Feels like we are just reacting, not preventing.

How do you actually use observability to spot issues before they hit users? What signals or patterns have worked for you.

reddit.com
u/Economy_Passenger296 — 16 days ago

we have ~200 dbt tests running across staging and prod models. it worked fine at first, but now slack is constantly flooded with failures that are either minor schema changes or transient data glitches that resolve on their own.

people started muting the channel, so even real issues get ignored.

we tried grouping tests by severity, but generic tests still generate a lot of noise and it’s hard to separate what actually matters.

at this point it feels like the monitoring itself is the problem.

how are you managing this at scale so signals stay actionable? 

do you change how often tests run, route alerts differently???

reddit.com
u/Economy_Passenger296 — 16 days ago
▲ 2 r/agile

We are at that stage again where I need to map out the full user flow across all screens before handing off to engineering. Last time we skipped a detailed map and it turned into chaos with devs asking what goes where every day and designers reskinning things mid sprint. 
Preferably something quick to set up since leadership wants this done yesterday.

reddit.com
u/Economy_Passenger296 — 25 days ago