Jesse Orr

Results 4 comments of Jesse Orr

Depending on how the proxy is set up, you may have to add extra XFF headers in Icecast. For example: - If XFF is defined as the IP of the...

```diff --git a/gauth.go b/gauth.go index 59df65f..526016b 100644 --- a/gauth.go +++ b/gauth.go @@ -6,6 +6,7 @@ import ( "crypto/cipher" "crypto/sha256" "encoding/csv" + "flag" "fmt" "io/ioutil" "log" @@ -21,6 +22,9 @@ import...

It would be nice if this file sink syntax: ```toml [sinks.my_sink_id] type = "file" inputs = [ "my-source-or-transform-id" ] path = "/tmp/vector-%Y-%m-%d.log" ``` Would work to apply a date string...