Home / Companies / OpenObserve / Blog / July 2023

July 2023 Summaries

2 posts from OpenObserve

Filter
Month: Year:
Post Summaries Back to Blog
Fluent Bit is an open-source log forwarder that efficiently collects and sends logs from various sources to multiple destinations and is particularly compatible with Docker, Kubernetes, bare metal, and virtual machines. This guide provides a step-by-step process to set up Fluent Bit on Ubuntu, including adding the server GPG key, configuring the APT sources list for the specific Ubuntu release, installing Fluent Bit via the apt-get package manager, and enabling the service with systemd for automatic startup. Once installed, users can configure Fluent Bit to forward logs to OpenObserve by editing the configuration file, specifying input and output parameters, and utilizing the OpenObserve UI to monitor the logs. The guide emphasizes the ease of checking service status and troubleshooting using systemctl and journalctl commands, ensuring a seamless integration of log management with Ubuntu environments.
Jul 24, 2023 662 words in the original blog post.
The blog post explores the interplay between Rust programming and Kubernetes resource management by examining a Rust code snippet designed to monitor CPU and memory usage on both the host and within a container. The code utilizes the sys_info crate to gather resource data from the host and reads cgroup v2 attributes to assess container resource allocations, highlighting the CPU and memory settings specified in a Kubernetes configuration. Two different Kubernetes configurations are presented, demonstrating how resource limits and requests influence container resource usage, with the Rust code providing key insights into these dynamics. The post underscores the importance of resource isolation in Kubernetes to prevent any single container from monopolizing system resources, illustrating how the Rust code can help ensure applications receive adequate resources and provide alerts as usage nears set limits.
Jul 13, 2023 689 words in the original blog post.