erwin
erwin
It is a big issue because it corrupts my code at the totally wrong place How can I diasble it? function addRow(tabelId) -- | { | var email="est |
Did you check he IBM docs?
I found a lot for my own Prometheus exporter in: https://www.ibm.com/docs/en/ibm-mq/9.1?topic=java-mqconstants Is has a lot, and it is not the most easy to work with. I think it is the...
What you also could do is to grab a metric of the number of messages sent or received. The moment that the line is flat you know that this was...
Any reaction on the reqeust?
Well, it is more that I also found some things in the HTTP handler that can be improved. There is very little control of what is accepted by the HTTP...
I also found this workaround: ``` for line := range tailfile.Lines { pos, _ := tailfile.Tell() if pos != line.SeekInfo.Offset { continue } sendNewLogLine(line.Text) } ``` It works a little,...
What also Could be done is to add an extra field in the config struct: `ToEndAfterTruncate bool // Go to the end of a file after a truncation to prevent...