Containerized applications-ებს სჭირდებათ centralized logging და monitoring, რადგან containers-ები ephemeral-ი და მრავალრიცხოვანი — logs-ები და metrics-ები უნდა შეგროვდეს გარედან, რომ ისინი გადაჭიმონ container-ის წაშლის შემდეგაც და მოგვცენ visibility მთელ სისტემაზე. ეს არის essential observability production containers-ისთვის.
Logging: log stdout/stderr-ში, aggregate centrally
BEST PRACTICE: containers should log to STDOUT/STDERR (not to files inside the container):
→ Docker captures these (`docker logs`); a logging DRIVER forwards them elsewhere
→ WHY: containers are EPHEMERAL — logs in a removed container are LOST. Centralize them.
