golang-github-mwitkow-go-conntrack 0.0~git20190716.2f06839-3 source package in Ubuntu

Changelog

golang-github-mwitkow-go-conntrack (0.0~git20190716.2f06839-3) unstable; urgency=medium

  * Team upload.
  * Skip flaky TestMonitoringNormalConns.
    The sleep hack in previous patch doesn't work always.
  * Update Standards-Version to 4.6.2 (no changes)

 -- Shengjing Zhu <email address hidden>  Tue, 07 Feb 2023 01:48:51 +0800

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-mwitkow-go-conntrack_0.0~git20190716.2f06839-3.dsc 1.9 KiB cb0398abb629d75ec4b123c5c90e0573620c0bb89383d6d6bb7f5804578dce23
golang-github-mwitkow-go-conntrack_0.0~git20190716.2f06839.orig.tar.gz 16.8 KiB 9f15e3fb984c0eeb8baa82e03cdb10f2a63d420fc1d72fb1a53b5df4e5e646d5
golang-github-mwitkow-go-conntrack_0.0~git20190716.2f06839-3.debian.tar.xz 3.2 KiB 0ec2fc8e68c8b2719b1dbcb2e8a0ca87337de512f6e484d41442b2495069fe4b

No changes file available.

Binary packages built by this source

golang-github-mwitkow-go-conntrack-dev: Go middleware for net.Conn tracking

 Prometheus (https://prometheus.io/) monitoring and x/net/trace
 (https://godoc.org/golang.org/x/net/trace#EventLog) tracing wrappers for
 net.Conn, both inbound (net.Listener) and outbound (net.Dialer).
 .
 Go standard library does a great job of doing "the right" things with
 your connections: http.Transport pools outbound ones, and http.Server
 sets good Keep Alive defaults. However, it is still easy to get it
 wrong.
 .
 That's why you should be able to monitor (using Prometheus) how many
 connections your Go frontend servers have inbound, and how big are the
 connection pools to your backends. You should also be able to inspect
 your connection without ssh and netstat.