├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── TODO ├── _third_party └── github.com │ ├── Dieterbe │ └── go-metrics │ │ ├── LICENSE │ │ ├── README.md │ │ ├── counter.go │ │ ├── counter_test.go │ │ ├── debug.go │ │ ├── debug_test.go │ │ ├── ewma.go │ │ ├── ewma_test.go │ │ ├── exp │ │ └── exp.go │ │ ├── gauge.go │ │ ├── gauge_float64.go │ │ ├── gauge_float64_test.go │ │ ├── gauge_test.go │ │ ├── graphite.go │ │ ├── graphite_test.go │ │ ├── healthcheck.go │ │ ├── histogram.go │ │ ├── histogram_test.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── log.go │ │ ├── memory.md │ │ ├── meter.go │ │ ├── meter_test.go │ │ ├── metrics.go │ │ ├── metrics_test.go │ │ ├── opentsdb.go │ │ ├── opentsdb_test.go │ │ ├── patch.diff │ │ ├── registry.go │ │ ├── registry_test.go │ │ ├── runtime.go │ │ ├── runtime_cgo.go │ │ ├── runtime_no_cgo.go │ │ ├── runtime_test.go │ │ ├── sample.go │ │ ├── sample_test.go │ │ ├── syslog.go │ │ ├── timer.go │ │ ├── timer_test.go │ │ ├── writer.go │ │ └── writer_test.go │ ├── araddon │ └── gou │ │ ├── README.md │ │ ├── events.go │ │ ├── events_test.go │ │ ├── jsonhelper.go │ │ ├── jsonhelper_test.go │ │ ├── log.go │ │ ├── testutil.go │ │ ├── uid.go │ │ └── uid_test.go │ ├── bitly │ └── go-hostpool │ │ ├── README.md │ │ ├── epsilon_greedy.go │ │ ├── epsilon_value_calculators.go │ │ ├── example_test.go │ │ ├── host_entry.go │ │ ├── hostpool.go │ │ └── hostpool_test.go │ ├── mattbaird │ └── elastigo │ │ └── lib │ │ ├── baserequest.go │ │ ├── baseresponse.go │ │ ├── clusterhealth.go │ │ ├── clusterhealthresponses.go │ │ ├── clusternodeshotthreads.go │ │ ├── clusternodesinfo.go │ │ ├── clusternodesinfo_test.go │ │ ├── clusternodesshutdown.go │ │ ├── clusternodesstats.go │ │ ├── clusterreroute.go │ │ ├── clusterstate.go │ │ ├── clusterstatresponses.go │ │ ├── clusterupdatesettings.go │ │ ├── connection.go │ │ ├── corebulk.go │ │ ├── corebulk_test.go │ │ ├── corebulkudp.go │ │ ├── corecount.go │ │ ├── coredelete.go │ │ ├── coredeletebyquery.go │ │ ├── coreexample_test.go │ │ ├── coreexplain.go │ │ ├── coreget.go │ │ ├── coreindex.go │ │ ├── coremget.go │ │ ├── coremorelikethis.go │ │ ├── coremsearch.go │ │ ├── corepercolate.go │ │ ├── coresearch.go │ │ ├── coresearch_test.go │ │ ├── coretest_test.go │ │ ├── coreupdate.go │ │ ├── corevalidate.go │ │ ├── error.go │ │ ├── indicesaliases.go │ │ ├── indicesanalyze.go │ │ ├── indicesclearcache.go │ │ ├── indicescreateindex.go │ │ ├── indicesdeleteindex.go │ │ ├── indicesdeletemapping.go │ │ ├── indicesdeletemapping_test.go │ │ ├── indicesdoc.go │ │ ├── indicesflush.go │ │ ├── indicesgetsettings.go │ │ ├── indicesindicesexists.go │ │ ├── indicesopencloseindex.go │ │ ├── indicesoptimize.go │ │ ├── indicesputmapping.go │ │ ├── indicesputmapping_test.go │ │ ├── indicesputsettings.go │ │ ├── indicesrefresh.go │ │ ├── indicessegments.go │ │ ├── indicessnapshot.go │ │ ├── indicesstats.go │ │ ├── indicesstatus.go │ │ ├── indicestemplates.go │ │ ├── indicesupdatesettings.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── searchaggregate.go │ │ ├── searchaggregate_test.go │ │ ├── searchdsl.go │ │ ├── searchfacet.go │ │ ├── searchfacet_test.go │ │ ├── searchfilter.go │ │ ├── searchfilter_test.go │ │ ├── searchquery.go │ │ ├── searchreadme │ │ ├── searchsearch.go │ │ ├── searchsearch_test.go │ │ ├── searchsort.go │ │ ├── shared.go │ │ └── shared_test.go │ ├── metrics20 │ └── go-metrics20 │ │ ├── README.md │ │ ├── metrics2.go │ │ ├── metrics2_test.go │ │ └── version.go │ ├── pelletier │ └── go-toml │ │ ├── README.md │ │ ├── example.toml │ │ ├── lexer.go │ │ ├── lexer_test.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── toml.go │ │ └── toml_test.go │ └── stvp │ └── go-toml-config │ ├── README.md │ ├── config.go │ └── config_test.go ├── carbon-tagger.conf ├── carbon-tagger.go ├── recreate_index.sh └── stat.go /.gitignore: -------------------------------------------------------------------------------- 1 | carbon-tagger 2 | tags 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | carbon-tagger, Copyright(c) 2014 Vimeo, LLC 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/TODO -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/LICENSE -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/README.md -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/counter.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/counter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/counter_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/debug.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/debug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/debug_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/ewma.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/ewma_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/ewma_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/exp/exp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/exp/exp.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/gauge.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/gauge_float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/gauge_float64.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/gauge_float64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/gauge_float64_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/gauge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/gauge_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/graphite.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/graphite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/graphite_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/healthcheck.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/histogram.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/histogram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/histogram_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/json.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/json_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/log.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/memory.md -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/meter.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/meter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/meter_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/metrics.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/metrics_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/opentsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/opentsdb.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/opentsdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/opentsdb_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/patch.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/patch.diff -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/registry.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/registry_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/runtime.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/runtime_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/runtime_cgo.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/runtime_no_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/runtime_no_cgo.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/runtime_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/sample.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/sample_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/sample_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/syslog.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/timer.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/timer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/timer_test.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/writer.go -------------------------------------------------------------------------------- /_third_party/github.com/Dieterbe/go-metrics/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/Dieterbe/go-metrics/writer_test.go -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/araddon/gou/README.md -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/araddon/gou/events.go -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/events_test.go: -------------------------------------------------------------------------------- 1 | package gou 2 | -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/jsonhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/araddon/gou/jsonhelper.go -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/jsonhelper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/araddon/gou/jsonhelper_test.go -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/araddon/gou/log.go -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/araddon/gou/testutil.go -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/araddon/gou/uid.go -------------------------------------------------------------------------------- /_third_party/github.com/araddon/gou/uid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/araddon/gou/uid_test.go -------------------------------------------------------------------------------- /_third_party/github.com/bitly/go-hostpool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/bitly/go-hostpool/README.md -------------------------------------------------------------------------------- /_third_party/github.com/bitly/go-hostpool/epsilon_greedy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/bitly/go-hostpool/epsilon_greedy.go -------------------------------------------------------------------------------- /_third_party/github.com/bitly/go-hostpool/epsilon_value_calculators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/bitly/go-hostpool/epsilon_value_calculators.go -------------------------------------------------------------------------------- /_third_party/github.com/bitly/go-hostpool/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/bitly/go-hostpool/example_test.go -------------------------------------------------------------------------------- /_third_party/github.com/bitly/go-hostpool/host_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/bitly/go-hostpool/host_entry.go -------------------------------------------------------------------------------- /_third_party/github.com/bitly/go-hostpool/hostpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/bitly/go-hostpool/hostpool.go -------------------------------------------------------------------------------- /_third_party/github.com/bitly/go-hostpool/hostpool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/bitly/go-hostpool/hostpool_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/baserequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/baserequest.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/baseresponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/baseresponse.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusterhealth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusterhealth.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusterhealthresponses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusterhealthresponses.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusternodeshotthreads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusternodeshotthreads.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusternodesinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusternodesinfo.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusternodesinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusternodesinfo_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusternodesshutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusternodesshutdown.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusternodesstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusternodesstats.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusterreroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusterreroute.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusterstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusterstate.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusterstatresponses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusterstatresponses.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/clusterupdatesettings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/clusterupdatesettings.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/connection.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/corebulk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/corebulk.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/corebulk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/corebulk_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/corebulkudp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/corebulkudp.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/corecount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/corecount.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coredelete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coredelete.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coredeletebyquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coredeletebyquery.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coreexample_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coreexample_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coreexplain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coreexplain.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coreget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coreget.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coreindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coreindex.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coremget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coremget.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coremorelikethis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coremorelikethis.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coremsearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coremsearch.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/corepercolate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/corepercolate.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coresearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coresearch.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coresearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coresearch_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coretest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coretest_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/coreupdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/coreupdate.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/corevalidate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/corevalidate.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/error.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesaliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesaliases.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesanalyze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesanalyze.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesclearcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesclearcache.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicescreateindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicescreateindex.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesdeleteindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesdeleteindex.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesdeletemapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesdeletemapping.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesdeletemapping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesdeletemapping_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesdoc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesdoc.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesflush.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesflush.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesgetsettings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesgetsettings.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesindicesexists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesindicesexists.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesopencloseindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesopencloseindex.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesoptimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesoptimize.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesputmapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesputmapping.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesputmapping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesputmapping_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesputsettings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesputsettings.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesrefresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesrefresh.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicessegments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicessegments.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicessnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicessnapshot.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesstats.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesstatus.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicestemplates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicestemplates.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/indicesupdatesettings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/indicesupdatesettings.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/request.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/request_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchaggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchaggregate.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchaggregate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchaggregate_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchdsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchdsl.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchfacet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchfacet.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchfacet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchfacet_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchfilter.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchfilter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchfilter_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchquery.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchreadme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchreadme -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchsearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchsearch.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchsearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchsearch_test.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/searchsort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/searchsort.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/shared.go -------------------------------------------------------------------------------- /_third_party/github.com/mattbaird/elastigo/lib/shared_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/mattbaird/elastigo/lib/shared_test.go -------------------------------------------------------------------------------- /_third_party/github.com/metrics20/go-metrics20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/metrics20/go-metrics20/README.md -------------------------------------------------------------------------------- /_third_party/github.com/metrics20/go-metrics20/metrics2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/metrics20/go-metrics20/metrics2.go -------------------------------------------------------------------------------- /_third_party/github.com/metrics20/go-metrics20/metrics2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/metrics20/go-metrics20/metrics2_test.go -------------------------------------------------------------------------------- /_third_party/github.com/metrics20/go-metrics20/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/metrics20/go-metrics20/version.go -------------------------------------------------------------------------------- /_third_party/github.com/pelletier/go-toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/pelletier/go-toml/README.md -------------------------------------------------------------------------------- /_third_party/github.com/pelletier/go-toml/example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/pelletier/go-toml/example.toml -------------------------------------------------------------------------------- /_third_party/github.com/pelletier/go-toml/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/pelletier/go-toml/lexer.go -------------------------------------------------------------------------------- /_third_party/github.com/pelletier/go-toml/lexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/pelletier/go-toml/lexer_test.go -------------------------------------------------------------------------------- /_third_party/github.com/pelletier/go-toml/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/pelletier/go-toml/parser.go -------------------------------------------------------------------------------- /_third_party/github.com/pelletier/go-toml/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/pelletier/go-toml/parser_test.go -------------------------------------------------------------------------------- /_third_party/github.com/pelletier/go-toml/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/pelletier/go-toml/toml.go -------------------------------------------------------------------------------- /_third_party/github.com/pelletier/go-toml/toml_test.go: -------------------------------------------------------------------------------- 1 | package toml 2 | -------------------------------------------------------------------------------- /_third_party/github.com/stvp/go-toml-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/stvp/go-toml-config/README.md -------------------------------------------------------------------------------- /_third_party/github.com/stvp/go-toml-config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/stvp/go-toml-config/config.go -------------------------------------------------------------------------------- /_third_party/github.com/stvp/go-toml-config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/_third_party/github.com/stvp/go-toml-config/config_test.go -------------------------------------------------------------------------------- /carbon-tagger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/carbon-tagger.conf -------------------------------------------------------------------------------- /carbon-tagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/carbon-tagger.go -------------------------------------------------------------------------------- /recreate_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/recreate_index.sh -------------------------------------------------------------------------------- /stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimeo/carbon-tagger/HEAD/stat.go --------------------------------------------------------------------------------