search
HomeBackend DevelopmentGolangHow to get container logs using Golang? (mistake)

如何使用 Golang 获取容器日志? (错误)

php editor Xigua brings you a practical guide on how to use Golang to obtain container logs. In containerized application development, logs are very important, as they can help us quickly locate and solve problems. This article will introduce how to use Golang to write code, obtain the log information of the container through the Docker API, and handle common errors. Whether you are a newbie or an experienced developer, this article will provide you with useful tips and sample code to help you better utilize Golang to obtain container logs. Let’s get started!

Question content


I am trying to use golang to write docker monitoring software.

My code looks like this:

package main

import (
    "bytes"
    "context"
    "fmt"
    "time"

    "github.com/docker/docker/api/types"
    "github.com/docker/docker/client"
)

func main() {
    ctx := context.background()

    cli, err := client.newclientwithopts(client.fromenv)
    if err != nil {
        panic(err)
    }

    containers, err := cli.containerlist(ctx, types.containerlistoptions{})
    if err != nil {
        panic(err)
    }

    for _, container := range containers {
        out, err := cli.containerlogs(ctx, container.id, types.containerlogsoptions{
            showstderr: true,
            showstdout: true,
            timestamps: false,
            follow:     true,
            tail:       "40"})

        if err != nil {
            panic(err)
        }

        fmt.println("the \"" + container.image + "\" container, with the id \"" + container.id + "\" logged: ")
        fmt.println()

        buf := new(bytes.buffer)

        fmt.println(buf.readfrom(out))

        fmt.println(buf.string())
    }
    time.sleep(time.second * 3)
}

The problem is that the execution of the above code stops at the fmt.println(buf.readfrom(out)) statement. The code used to work, but suddenly it doesn't work anymore. It either stops without error or returns an empty string.

The client I am trying to collect logs is also written by myself and looks like this:

package main

import (
    "log"
    "time"
)

func main() {
    for i := 0; i > -1; i++ {
        log.Output(1, "Hello World logged!")
        time.Sleep(time.Minute)
    }
}

I've tried debugging and inspecting variables, but I just can't find the source of the problem.


Solution


I'm really not sure as I don't have any error logs to confirm my assumption. However, when containerlogs returns a stream (io.readcloser), is it possible that the stream itself has not been closed?

If possible, could you do a trial run first to test this theory by adding a timeout and logging it after each small duration?

One possible approach is

select {
case <-time.After(5 * time.Second):
    fmt.Println("Timeout exceeded while reading container logs")
case <-ctx.Done():
    fmt.Println("Context cancelled while reading container logs")
case b := <-out:
    if b != nil {
        buf.Write(b)
    }
}

The above is the detailed content of How to get container logs using Golang? (mistake). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:stackoverflow. If there is any infringement, please contact admin@php.cn delete
如何在Debian 12上安装Snap如何在Debian 12上安装SnapMar 20, 2024 pm 08:51 PM

Snap是一个针对Linux系统设计的外部包管理器,它为您提供了安装容器化应用程序的便捷途径。通过Snap,您可以轻松地下载和安装软件包,无需担心安装额外的依赖项。该管理器会自动解决软件包所需的依赖项,确保软件包能够在您的系统上顺利运行。Snap与本地的apt包管理器相辅相成,为您提供了另一种在系统中安装和运行应用程序的选择。在本指南中,您将找到有关如何在Debian12上安装Snap的完整指南。提纲:如何在Debian12上安装Snap如何在Snap上查找包可用性如何在Snap上查找有关包的信

如何调试docker-compose?配置路径在哪里设置?如何调试docker-compose?配置路径在哪里设置?Feb 10, 2024 pm 12:48 PM

我正在尝试调试docker-compose,即这个Go文件,以解决某些问题(这个)。为此,我设置了一个GoLang调试器gorunmain.go-f/.../project_root/docker-compose.yml-f/.../project_root/folder1/docker-compose.ymlconfig的输出符合预期,合并的配置文件.由于某种原因,我找不到代码中设置的配置文件,尽管它们必须设置在某个地方,因为输出是正确合并的配置文件。我怀疑它们一定就设置

五个精选的Go语言开源项目,带你探索技术世界五个精选的Go语言开源项目,带你探索技术世界Jan 30, 2024 am 09:08 AM

在当今科技快速发展的时代,编程语言也如雨后春笋般涌现出来。其中一门备受瞩目的语言就是Go语言,它以其简洁、高效、并发安全等特性受到了许多开发者的喜爱。Go语言以其强大的生态系统而著称,其中有许多优秀的开源项目。本文将介绍五个精选的Go语言开源项目,带领读者一起探索Go语言开源项目的世界。KubernetesKubernetes是一个开源的容器编排引擎,用于自

使用 Kubernetes、Helm 和 Jenkins 轻松实现 CI/CD 管道自动化使用 Kubernetes、Helm 和 Jenkins 轻松实现 CI/CD 管道自动化Apr 02, 2024 pm 04:12 PM

在快节奏的软件开发环境中,快速发布版本至关重要。CI/CD(持续集成和持续部署)管道可以自动化部署过程,简化代码从开发到生产的转移。本文重点介绍如何在 Kubernetes 环境中使用 Jenkins、Helm 和 Kubernetes 设置完全自动化的 CI/CD 管道,包括:环境设置、自动化管道构建和部署到开发、登台和生产环境的步骤。通过实施这一自动化流程,开发人员可以专注于代码开发,同时将复杂的基础设施管理留给自动化,从而提高部署效率和可靠性。

适合网络工程师的 6 个最佳 Linux 发行版适合网络工程师的 6 个最佳 Linux 发行版Feb 05, 2024 pm 05:20 PM

作为一个网络工程师,在考虑为工作安装Linux时,你可能会面临一个问题:在成千上万个可用的Linux发行版中,应该选择哪一个呢?不用担心,你并不是孤单的。Linux作为网络工程师的常见首选操作系统,有很多发行版适合与网络相关的任务。如果你是一名网络工程师,你可能会想要知道哪些发行版在工作中提供了最佳的功能。以下是六个被网络工程师广泛推荐的优秀Linux发行版:1、Fedora在众多Linux发行版中,Fedora是网络工程师中最受推崇的之一,原因很简单。Fedora是一个开源发行版,相当于红帽企

2023 年十佳 Linux 服务器发行版2023 年十佳 Linux 服务器发行版Feb 12, 2024 am 11:12 AM

由于具备多种优势,Linux操作系统是各类服务器中的热门选择。首先,它是免费(少数商业发行版除外,如RHEL和SLES)和开源的。它的开源性意味着开发者可以查看其源代码并进行修改,而且可以根据规定的许可条款重新发布。其次,通常Linux被认为是稳定、通用的,且比Windows更为安全。最后,Linux可以轻松地部署在各类平台,如裸机、虚拟机和云环境。在这篇文章中,我们重点介绍了十佳Linux服务器发行版。1、红帽企业Linux(RHEL)红帽企业Linux?www.redhat.com(R

Linux在云计算领域的广泛应用Linux在云计算领域的广泛应用Mar 20, 2024 pm 04:51 PM

Linux在云计算领域的广泛应用随着云计算技术的不断发展和普及,Linux作为一种开源操作系统在云计算领域中发挥着重要作用。由于其稳定性、安全性和灵活性,Linux系统被广泛应用于各种云计算平台和服务中,为云计算技术的发展提供了坚实的基础。本文将介绍Linux在云计算领域的广泛应用,并给出具体的代码示例。一、Linux在云计算平台中的应用虚拟化技术虚拟化技术

Go语言开发的应用领域有哪些?Go语言开发的应用领域有哪些?Apr 03, 2024 am 11:33 AM

Go语言应用于以下领域:后端开发(微服务、分布式系统)云计算(云原生应用程序、容器化应用)数据处理(数据分析、大数据引擎)网络和分布式系统(代理服务器、分布式缓存)系统工具(操作系统、实用程序)

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version