Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/maruel/circular

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/maruel/circular

  • v0.0.0-20200815005550-36e533b830e9
  • Source
  • Go
  • Socket score

Version published
Created
Source

circular

Package circular implements an efficient thread-safe circular byte buffer to keep in-memory logs. It implements both io.Writer and io.WriterTo.

GoDoc Build Status Coverage Status

Features

  • No allocation during Write.
  • Full concurrent streaming (reading) support via multiple readers.
  • Automatic lock-less flushes for readers supporting http.Flusher.
  • Full test coverage.

Example

  • Safely writes log to disk synchronously in addition to keeping a circular buffer.
  • Serves the circular log buffer over HTTP asychronously.
  • Writes log to stderr asynchronously.

This permits keeping all the output in case of a panic() on disk. Note that panic() output itself is only written to stderr since it uses print() builtin.

import (
  "log"
  "net/http"
  "sync"

  "github.com/maruel/circular"
)

func main() {
  logBuffer := circular.New(10 * 1024 * 1024)
  defer func() {
    // Flush ensures all readers have caught up.
    logBuffer.Flush()
    // Close gracefully closes the readers.
    logBuffer.Close()
  }()
  f, err := os.OpenFile("app.log", os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0666)
  if err != nil {
      panic(err)
  }
  defer f.Close()

  // Send to both circular buffer and file.
  log.SetOutput(io.MultiWriter(logBuffer, f))

  // Asynchronously write to stderr.
  go logBuffer.WriteTo(os.Stderr)

  log.Printf("This line is served over HTTP; file and stderr")

  http.HandleFunc("/",
      func(w http.ResponseWriter, r *http.Request) {
          w.Header().Set("Content-Type", "text/plain; charset=utf-8")
          // Streams the log buffer over HTTP until Close() is called.
          // AutoFlush ensures the log is not buffered locally indefinitely.
          logBuffer.WriteTo(circular.AutoFlush(w, time.Second))
      })
  http.ListenAndServe(":6060", nil)
}

FAQs

Package last updated on 15 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc