TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What is an Environment?

1 pointsby ossmasterover 8 years ago
Internally we have are having a discussion around what actually is an environment? What are the classifications of an environment? Should all environments be monitored? Is there really a difference between a dev, ref, qa, prod environment from an operations perspective.<p>It seems that the operational people care about all environments and want to make sure they are up. This is because if one of them goes down, then most likely they are responsible for getting it back up.<p>The developers only care about prod. They do not want to notified if their development environment is having issues.<p>I was wondering how others handle these problems internally or if we are the only ones who are having this discussion?

1 comment

dozzieover 8 years ago
&gt; Should all environments be monitored?<p>Yes. If you don&#x27;t collect data about the environment, you can&#x27;t tell whether the current behaviour is normal or abnormal. Though not every environment should send all alerts possible.<p>&gt; I was wondering how others handle these problems internally or if we are the only ones who are having this discussion?<p>Monitoring is a tough topic -- still, after more than twenty years of development in this field. The problem is that we <i>still</i> treat monitoring systems as monolithic applications with hardcoded data collection and alerting logic, instead of making them what they are: event stream processing engines, with some publish-subscribe capabilities to allow attaching some external logic.<p>I&#x27;m working on a toolbox that helps in building such a system (<a href="http:&#x2F;&#x2F;seismometer.net&#x2F;" rel="nofollow">http:&#x2F;&#x2F;seismometer.net&#x2F;</a>), though it&#x27;s still lacks tools and its website is more of a sketch than a project homepage.<p>In the meantime, you should think about how to allow different people to <i>select</i> or <i>filter out</i> different notifications, possibly in such a manner that they can process those notifications programmatically.