Remove logs
article thumbnail

Use CloudWatch LogGroups for EC2 logging

Xebia

You can protect yourself from losing logs on Amazon EC2 by using CloudWatch Logs. Configure the CloudWatch Agent to stream your logs to a LogGroup. This protects you from losing logs. You are also protected against tampering of the logs. An attacker who has gained access to your system can remove the logs.

AWS 130
article thumbnail

Bluesky finally lets users look at posts without logging in

TechCrunch

Decentralized social network and Twitter rival Bluesky is finally letting users look at posts on its platform without logging in. People still need an invite to create an account and start posting but can read posts through a link. This move will also let publishers link to or embed Bluesky posts in blogs. All rights reserved.

Social 325
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

Good Logging

Henrik Warne

But as the system grows, you also need logging to help you understand what is happening. Good log messages are crucial when troubleshooting problems. However, many developers don’t log enough information in the right places. I look at logs when I troubleshoot a problem. Not Too Little. Add Dynamic Information.

article thumbnail

Replicated Log: synchronize multiple nodes with a write-ahead log

Martin Fowler

The core approach to handle with is a replicated log : using the write-ahead log pattern over the cluster. One of the core challenges in a distributed system is keeping the state synchronized across all the nodes, especially when neither the nodes, or the connections between them, are reliable.

System 262
article thumbnail

Monetizing Analytics Features: Why Data Visualizations Will Never Be Enough

Think your customers will pay more for data visualizations in your application? Five years ago they may have. But today, dashboards and visualizations have become table stakes. Discover which features will differentiate your application and maximize the ROI of your embedded analytics. Brought to you by Logi Analytics.

article thumbnail

Distributed Systems Pattern: Segmented Log

Martin Fowler

A single log file can grow and become a performance bottleneck while its read at the startup. Older logs are cleaned up periodically and doing cleanup operations on a single huge file is difficult to implement. A Segmented Log splits the logfile into smaller files.

System 289
article thumbnail

Distributed Systems Pattern: Write-Ahead Log

Martin Fowler

A write-ahead log first saves and replicates the data for expected update in an append-only log, so if a failure occurs, we can recover the correct state. In the latest part of his collection of Patterns of Distributed Systems, Unmesh faces the problem of a server failing in the middle of a complex update.

System 294