gitextract_lw0vpfqr/ ├── .gitignore ├── .travis.yml ├── Dockerfile ├── Godeps/ │ ├── Godeps.json │ └── Readme ├── LICENCE ├── README.md ├── apps/ │ ├── phosphor/ │ │ └── main.go │ └── phosphord/ │ └── main.go ├── dist.sh ├── internal/ │ ├── util/ │ │ └── stringarray.go │ └── version/ │ └── version.go ├── phosphor/ │ ├── README.md │ ├── context.go │ ├── domain.go │ ├── handler.go │ ├── ingester.go │ ├── marshaling.go │ ├── memorystore.go │ ├── options.go │ ├── phosphor.go │ └── store.go ├── phosphord/ │ ├── README.md │ ├── forwarder.go │ ├── options.go │ ├── phosphord.go │ ├── test/ │ │ └── test.go │ └── transport/ │ ├── nsq.go │ └── transport.go ├── proto/ │ ├── trace.pb.go │ └── trace.proto ├── script/ │ └── buildprotobufs.sh └── vendor/ ├── code.google.com/ │ └── p/ │ └── snappy-go/ │ └── snappy/ │ ├── decode.go │ ├── encode.go │ ├── snappy.go │ └── snappy_test.go ├── github.com/ │ ├── bitly/ │ │ └── go-nsq/ │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── api_request.go │ │ ├── command.go │ │ ├── command_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── conn.go │ │ ├── consumer.go │ │ ├── consumer_test.go │ │ ├── delegates.go │ │ ├── errors.go │ │ ├── message.go │ │ ├── mock_test.go │ │ ├── producer.go │ │ ├── producer_test.go │ │ ├── protocol.go │ │ ├── states.go │ │ ├── test/ │ │ │ ├── ca.pem │ │ │ ├── server.key │ │ │ └── server.pem │ │ ├── test.sh │ │ └── version.go │ ├── cihub/ │ │ └── seelog/ │ │ ├── LICENSE.txt │ │ ├── README.markdown │ │ ├── behavior_adaptive_test.go │ │ ├── behavior_adaptivelogger.go │ │ ├── behavior_asynclogger.go │ │ ├── behavior_asyncloop_test.go │ │ ├── behavior_asynclooplogger.go │ │ ├── behavior_asynctimer_test.go │ │ ├── behavior_asynctimerlogger.go │ │ ├── behavior_synclogger.go │ │ ├── behavior_synclogger_test.go │ │ ├── cfg_config.go │ │ ├── cfg_errors.go │ │ ├── cfg_logconfig.go │ │ ├── cfg_logconfig_test.go │ │ ├── cfg_parser.go │ │ ├── cfg_parser_test.go │ │ ├── common_closer.go │ │ ├── common_constraints.go │ │ ├── common_constraints_test.go │ │ ├── common_context.go │ │ ├── common_context_test.go │ │ ├── common_exception.go │ │ ├── common_exception_test.go │ │ ├── common_flusher.go │ │ ├── common_loglevel.go │ │ ├── dispatch_custom.go │ │ ├── dispatch_customdispatcher_test.go │ │ ├── dispatch_dispatcher.go │ │ ├── dispatch_filterdispatcher.go │ │ ├── dispatch_filterdispatcher_test.go │ │ ├── dispatch_splitdispatcher.go │ │ ├── dispatch_splitdispatcher_test.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── internals_baseerror.go │ │ ├── internals_byteverifiers_test.go │ │ ├── internals_fsutils.go │ │ ├── internals_xmlnode.go │ │ ├── internals_xmlnode_test.go │ │ ├── log.go │ │ ├── logger.go │ │ ├── writers_bufferedwriter.go │ │ ├── writers_bufferedwriter_test.go │ │ ├── writers_connwriter.go │ │ ├── writers_consolewriter.go │ │ ├── writers_filewriter.go │ │ ├── writers_filewriter_test.go │ │ ├── writers_formattedwriter.go │ │ ├── writers_formattedwriter_test.go │ │ ├── writers_rollingfilewriter.go │ │ ├── writers_rollingfilewriter_test.go │ │ └── writers_smtpwriter.go │ ├── golang/ │ │ └── protobuf/ │ │ └── proto/ │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── equal_test.go │ │ ├── extensions.go │ │ ├── extensions_test.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── message_set_test.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── proto3_proto/ │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── proto3_test.go │ │ ├── size2_test.go │ │ ├── size_test.go │ │ ├── text.go │ │ ├── text_parser.go │ │ ├── text_parser_test.go │ │ └── text_test.go │ └── mreiferson/ │ ├── go-options/ │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example_test.go │ │ └── options.go │ └── go-snappystream/ │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── fixturedata_test.go │ ├── reader.go │ ├── reader_test.go │ ├── readwrite_test.go │ ├── snappystream.go │ ├── writer.go │ └── writer_test.go └── golang.org/ └── x/ └── net/ └── context/ ├── context.go ├── context_test.go ├── ctxhttp/ │ ├── cancelreq.go │ ├── cancelreq_go14.go │ ├── ctxhttp.go │ └── ctxhttp_test.go └── withtimeout_test.go