I see lots of lines like this in my graphite logs:
01/10/2014 21:07:12 :: [listener] invalid line received from client HOST:PORT, ignoring
It would greatly help if I could see the invalid line. Some documentation and tutorials suggest graphite would print the offending line directly after the invalid warning, but for me it doesn't. How can I enable this property?
Thanks.
So my attempt to troubleshoot this was a total hack but it worked for me.
Steps
/opt/graphite/lib/carbon/protocols.py
on line 75 and add an additional log linerestart daemon in debug mode
/usr/bin/python /opt/graphite/bin/carbon-cache.py --pid /opt/graphite/storage/carbon-cache-a.pid --debug start
protocol.py
By doing this I was able to see exactly which metric was causing me grief and address it.
Hope that helps!