logspout icon indicating copy to clipboard operation
logspout copied to clipboard

Log routing for Docker container logs

Results 111 logspout issues
Sort by recently updated
recently updated
newest added
trafficstars

First, thanks for the great software :-) I'm seeing a panic when accessing /logs via a websocket. Here's the stack trace: ``` # logspout v3.2.5 by gliderlabs # adapters: raw...

type: bug

If I start logspout-logstash using this docker-compose the cpu usage spikes to 100% and stays there... ``` logspout: image: bekt/logspout-logstash mem_limit: 256m restart: on-failure depends_on: - logstash environment: ROUTE_URIS: logstash://logstash:5000...

status: needs more info

Other than unnecessarily losing timestamp accuracy, this breaks for syslog daemons that expect sub-second accuracy (like `fluentd`).

## Background The `github.com/gliderlabs/logspout` uses [Go modules](https://github.com/golang/go/wiki/Modules) and the current release version is `v3`. And it’s module path is `"github.com/gliderlabs/logspout"`, instead of `"github.com/gliderlabs/logspout/v3"`. It must comply with the specification of...

bc-break

When parsing the route URL [here](https://github.com/gliderlabs/logspout/blob/master/router/routes.go#L95) the path is not kept while it could be useful for some adapters. For instance, we've developed https://github.com/kalisio/logspout-slack and we need to provide the...

type: enhancement

the docker template tags for swarm and compose are fairly different. it took my quite a while to figure out. the source documentation is here - https://docs.docker.com/engine/reference/commandline/service_create/#create-services-using-templates a working, reasonable...

Fix [#475](https://github.com/gliderlabs/logspout/issues/475)

I am trying to route my logs to Amplitude. The Amplitude API requires a JSON string sent, so I have tried formatting the RAW_FORMAT env variable to the appropriate string....

Hi, I am running logspout (2 instances)+logstash (1 instance) in docker swarm environment. When my logstash and logspout services are started I see nice logs in logstash: ``` rta_logstash.1.mv47vj6kv936@backend-03 |...

Hi! I'm looking to use this tool, along with the logspout-fluentd plugin, to collect & forward logs from our docker swarm nodes to a central fluentd server, as an (arguably...