├── .circleci └── config.yml ├── .codelingoignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── GOVERNANCE.md ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── NOTICE ├── README.md ├── WORKFLOW.md ├── api ├── api.go ├── ccache.go ├── ccache_test.go ├── cluster.go ├── config.go ├── dataprocessor.go ├── dataprocessor_test.go ├── graphite.go ├── graphite_proxy.go ├── graphite_req.go ├── graphite_test.go ├── init.go ├── middleware │ ├── capturebody.go │ ├── cluster.go │ ├── logger.go │ ├── middleware.go │ ├── stats.go │ └── tracer.go ├── models │ ├── ccache.go │ ├── cluster.go │ ├── cluster_gen.go │ ├── cluster_gen_test.go │ ├── cluster_test.go │ ├── graphite.go │ ├── graphite_gen.go │ ├── graphite_gen_test.go │ ├── graphite_render_meta.go │ ├── graphite_test.go │ ├── init_test.go │ ├── meta_records.go │ ├── node.go │ ├── pointslicepool.go │ ├── request.go │ ├── request_gen.go │ ├── request_gen_test.go │ ├── series.go │ ├── series_gen.go │ ├── series_gen_test.go │ ├── series_msgp_manual.go │ ├── series_msgp_manual_test.go │ ├── series_test.go │ ├── storagestats.go │ ├── storagestats_gen.go │ └── storagestats_gen_test.go ├── pprof.go ├── query_engine.go ├── query_engine_helpers_test.go ├── query_engine_test.go ├── response │ ├── csv.go │ ├── csv_test.go │ ├── error.go │ ├── fast_json.go │ ├── fast_json_test.go │ ├── init_test.go │ ├── json.go │ ├── json_test.go │ ├── msgp.go │ ├── msgp_test.go │ ├── msgpack.go │ ├── msgpack_test.go │ ├── pickle.go │ ├── pickle_test.go │ ├── response.go │ └── response_test.go ├── routes.go ├── seriescycle │ └── seriescycle.go └── tz │ └── tz.go ├── archives ├── archives.go └── index.go ├── batch ├── LICENSE.TXT └── aggregator.go ├── benchmarks ├── cluster-queries │ ├── README.md │ ├── alerting-input │ ├── run-alerting.sh │ ├── run-exploration.sh │ └── run.sh ├── ingest-backfill-speed.sh ├── ingest-mdm-v1-vs-v2.sh ├── realistic-workload-single-tenant.sh └── simulate-lock-congestion │ ├── README.md │ ├── gnuplot.sh │ └── run.sh ├── bigtable └── util.go ├── cassandra ├── cassandra_session.go ├── metrics.go └── util.go ├── clock ├── clock.go ├── clock_test.go └── randomticker.go ├── cluster ├── cluster.go ├── cluster_test.go ├── config.go ├── if.go ├── manager.go ├── mock.go ├── node.go ├── nodemode_string.go ├── nodestate_string.go ├── partitioner │ └── partitioner.go └── traceable.go ├── cmd-dev └── mt-simulate-memory-idx-lock-contention │ ├── README.md │ ├── main.go │ └── runner │ ├── stat.go │ └── test_runner.go ├── cmd ├── metrictank │ └── metrictank.go ├── mt-aggs-explain │ └── main.go ├── mt-backfill │ └── main.go ├── mt-control-server │ ├── cassandra.go │ ├── config.sample.ini │ ├── controlmodels │ │ └── index.go │ ├── handlers.go │ ├── main.go │ ├── producer.go │ └── server.go ├── mt-explain │ └── main.go ├── mt-fakemetrics │ ├── LICENSE │ ├── README.md │ ├── cmd │ │ ├── agents.go │ │ ├── agginput.go │ │ ├── backfill.go │ │ ├── bad.go │ │ ├── containers.go │ │ ├── datafeed.go │ │ ├── feed.go │ │ ├── getbuilder.go │ │ ├── rand.go │ │ ├── resolutionchange.go │ │ ├── root.go │ │ ├── schemasbackfill.go │ │ ├── stats.go │ │ ├── storageconf.go │ │ ├── util.go │ │ └── version.go │ ├── main.go │ ├── metricbuilder │ │ └── builder.go │ ├── out │ │ ├── carbon │ │ │ └── carbon.go │ │ ├── fanout.go │ │ ├── gnet │ │ │ └── gnet.go │ │ ├── kafkamdm │ │ │ ├── kafkamdm.go │ │ │ └── keycache │ │ │ │ ├── cache.go │ │ │ │ ├── keycache.go │ │ │ │ ├── shard.go │ │ │ │ ├── shard_test.go │ │ │ │ └── time.go │ │ ├── offsetfilter.go │ │ ├── out.go │ │ ├── periodfilter.go │ │ ├── saramahelper.go │ │ └── stdout │ │ │ └── stdout.go │ └── policy │ │ └── policy.go ├── mt-gateway │ ├── api.go │ ├── api_test.go │ ├── ingest │ │ ├── metrics.go │ │ └── metrics_response.go │ ├── main.go │ └── stats.go ├── mt-index-cat │ ├── main.go │ └── out │ │ ├── out.go │ │ ├── template_functions.go │ │ └── tpl_pattern_custom.go ├── mt-index-deleter │ ├── btclient.go │ ├── main.go │ └── worker.go ├── mt-index-migrate │ └── main.go ├── mt-index-prune │ └── main.go ├── mt-indexdump-rules-analyzer │ └── main.go ├── mt-kafka-mdm-sniff-out-of-order │ └── main.go ├── mt-kafka-mdm-sniff │ └── main.go ├── mt-kafka-persist-sniff │ ├── handler.go │ └── main.go ├── mt-keygen │ └── main.go ├── mt-parrot │ ├── generate.go │ ├── main.go │ └── monitor.go ├── mt-schemas-explain │ └── main.go ├── mt-split-metrics-by-ttl │ ├── cross_cluster_tool.py │ └── main.go ├── mt-store-cat │ ├── chunk.go │ ├── chunk_by_ttl.go │ ├── main.go │ ├── match_test.go │ ├── metrics.go │ ├── series.go │ ├── tables.go │ └── time.go ├── mt-store-cp-experimental │ └── main.go ├── mt-update-ttl │ ├── main.go │ └── main_test.go ├── mt-view-boundaries │ └── main.go ├── mt-whisper-importer-reader │ ├── main.go │ ├── pos_tracker.go │ └── pos_tracker_test.go ├── mt-whisper-importer-writer │ ├── main.go │ └── verify.py └── mt-write-delay-schema-explain │ └── main.go ├── codelingo.yaml ├── community ├── ALUMNI.md └── CALL.md ├── conf ├── aggregations.go ├── aggregations_test.go ├── indexrules.go ├── indexrules_test.go ├── init.go ├── method.go ├── retention.go ├── retention_test.go ├── schemas.go ├── schemas_test.go └── schemas_test_files │ ├── bad_pattern.schemas │ ├── bad_retention.schemas │ ├── empty.schemas │ ├── multiple.schemas │ ├── no_pattern.schemas │ ├── reorder_buffer.schemas │ ├── reorder_buffer_allow_update.schemas │ └── simple.schemas ├── consolidation ├── LICENSE.TXT ├── consolidate.go ├── consolidate_test.go ├── consolidation.go ├── consolidation_gen.go └── consolidation_gen_test.go ├── dashboards ├── dockprom │ ├── LICENSE │ ├── docker_containers.json │ ├── docker_host.json │ ├── monitor_services.json │ └── nginx_container.json ├── extra │ ├── carbon-relay-ng.json │ ├── collectd-disk-io.json │ ├── dashboard-render-requests-proxying.json │ ├── fake-metrics-data.json │ ├── fake-metrics-storage-conf.json │ ├── fake-metrics.json │ ├── fakemetrics-discarded-samples.json │ ├── graphite.json │ ├── metrictank-clustering.json │ ├── metrictank-http-api.json │ ├── monitoring-stack.json │ ├── mt-gateway.json │ ├── rollups-tester.json │ └── tsdb-gw.json └── main │ └── metrictank.json ├── devdocs ├── chaos-tools.md ├── chunk-format.md ├── expr.md ├── render-request-handling.md └── tracing.md ├── docker ├── cfg │ ├── grafana-dashboards-main-extra-dockprom │ │ └── config.yaml │ ├── grafana-dashboards-main-extra │ │ └── config.yaml │ ├── grafana-dashboards-main │ │ └── config.yaml │ └── statsdaemon.ini ├── docker-chaos │ ├── carbon.conf │ ├── docker-compose.yml │ ├── grafana-datasources │ │ ├── graphite.yaml │ │ ├── metrictank.yaml │ │ └── monitoring.yaml │ ├── metrictank.ini │ ├── statsdaemon.ini │ └── storage-schemas.conf ├── docker-cluster-query │ ├── caddy │ │ └── Caddyfile │ ├── carbon.conf │ ├── docker-compose.yml │ ├── grafana-datasources │ │ ├── graphite.yaml │ │ ├── metrictank.yaml │ │ └── monitoring.yaml │ ├── graphite-storage-schemas.conf │ ├── metrictank.ini │ ├── prometheus │ │ └── prometheus.yml │ ├── statsdaemon.ini │ ├── storage-aggregation.conf │ └── storage-schemas.conf ├── docker-cluster │ ├── caddy │ │ └── Caddyfile │ ├── carbon.conf │ ├── docker-compose.yml │ ├── grafana-datasources │ │ ├── graphite.yaml │ │ ├── metrictank.yaml │ │ └── monitoring.yaml │ ├── graphite-storage-schemas.conf │ ├── metrictank.ini │ ├── prometheus │ │ └── prometheus.yml │ ├── statsdaemon.ini │ ├── storage-aggregation.conf │ └── storage-schemas.conf ├── docker-cosmosdb │ ├── docker-compose.yml │ ├── storage-aggregation.conf │ └── storage-schemas.conf ├── docker-dev-bigtable │ ├── docker-compose.yml │ ├── grafana-datasources │ │ ├── graphite.yaml │ │ └── metrictank.yaml │ └── prometheus │ │ └── prometheus.yml ├── docker-dev-custom-cfg-kafka │ ├── caddy │ │ └── Caddyfile │ ├── docker-compose.yml │ ├── grafana-datasources │ │ ├── graphite.yaml │ │ ├── metrictank.yaml │ │ └── monitoring.yaml │ ├── gw │ │ ├── auth.ini │ │ ├── mt-gateway.ini │ │ └── tsdb-gw.ini │ ├── metrictank.ini │ ├── prometheus │ │ └── prometheus.yml │ ├── storage-aggregation.conf │ └── storage-schemas.conf ├── docker-dev-debug │ ├── docker-compose.yml │ └── grafana-datasources │ │ ├── graphite.yaml │ │ └── metrictank.yaml ├── docker-dev-scylla │ ├── docker-compose.yml │ └── grafana-datasources │ │ ├── graphite.yaml │ │ └── metrictank.yaml ├── docker-dev │ ├── bench.sh │ ├── docker-compose.yml │ ├── grafana-datasources │ │ ├── graphite.yaml │ │ ├── metrictank.yaml │ │ └── monitoring.yaml │ ├── grafana.ini │ └── prometheus │ │ └── prometheus.yml └── docker-standard │ ├── docker-compose.yml │ └── grafana-datasources │ ├── graphite.yaml │ └── metrictank.yaml ├── docs ├── CONTRIBUTING.md ├── assets │ ├── dashboard-bottom.png │ ├── dashboard-screenshot.png │ ├── dashboard-top.png │ ├── metrictank-highlevel.png │ ├── metrictank-highlevel.xml │ └── metrictank-logo.png ├── cassandra.md ├── clustering.md ├── community.md ├── compression-tips.md ├── config.md ├── consolidation.md ├── data-importing.md ├── docker.md ├── faq.md ├── graphite.md ├── http-api.md ├── inputs.md ├── installation-deb.md ├── installation-rpm.md ├── installation-source.md ├── installation.md ├── kafka.md ├── memory-server.md ├── metadata.md ├── metrics.md ├── multi-tenancy.md ├── operations.md ├── overview.md ├── quick-start-docker-cluster.md ├── quick-start-docker.md ├── render-path.md ├── roadmap.md ├── startup.md ├── tags.md └── tools.md ├── errors └── errors.go ├── expr ├── LICENSE ├── cowcycler.go ├── data_test.go ├── datamap.go ├── expr.go ├── exprtype_string.go ├── func_absolute.go ├── func_absolute_test.go ├── func_aggregate.go ├── func_aggregate_test.go ├── func_aggregatewithwildcards.go ├── func_aggregatewithwildcards_test.go ├── func_alias.go ├── func_alias_test.go ├── func_aliasbymetric.go ├── func_aliasbymetric_test.go ├── func_aliasbynode.go ├── func_aliasbynode_test.go ├── func_aliassub.go ├── func_aliassub_test.go ├── func_aspercent.go ├── func_aspercent_test.go ├── func_consolidateby.go ├── func_consolidateby_test.go ├── func_constantline.go ├── func_constantline_test.go ├── func_countseries.go ├── func_countseries_test.go ├── func_derivative.go ├── func_derivative_test.go ├── func_divideseries.go ├── func_divideseries_test.go ├── func_divideserieslists.go ├── func_divideserieslists_test.go ├── func_fallbackSeries.go ├── func_fallbackseries_test.go ├── func_filterseries.go ├── func_filterseries_test.go ├── func_get.go ├── func_grep.go ├── func_grep_test.go ├── func_group.go ├── func_group_test.go ├── func_groupbynodes.go ├── func_groupbynodes_test.go ├── func_groupbytags.go ├── func_groupbytags_test.go ├── func_highestlowest.go ├── func_highestlowest_test.go ├── func_integral.go ├── func_integral_test.go ├── func_invert.go ├── func_invert_test.go ├── func_isnonnull.go ├── func_isnonnull_test.go ├── func_keeplastvalue.go ├── func_keeplastvalue_test.go ├── func_linearregression.go ├── func_linearregression_test.go ├── func_log.go ├── func_log_test.go ├── func_minmax.go ├── func_minmax_test.go ├── func_mock_test.go ├── func_movingwindow.go ├── func_movingwindow_test.go ├── func_nonnegativederivative.go ├── func_nonnegativederivative_test.go ├── func_offset.go ├── func_offset_test.go ├── func_offsettozero.go ├── func_offsettozero_test.go ├── func_persecond.go ├── func_persecond_test.go ├── func_removeabovebelowpercentile.go ├── func_removeabovebelowpercentile_test.go ├── func_removeabovebelowvalue.go ├── func_removeabovebelowvalue_test.go ├── func_removeemptyseries.go ├── func_removeemptyseries_test.go ├── func_removezeroseries.go ├── func_removezeroseries_test.go ├── func_round.go ├── func_round_test.go ├── func_scale.go ├── func_scale_test.go ├── func_scaletoseconds.go ├── func_scaletoseconds_test.go ├── func_smartsummarize.go ├── func_sortby.go ├── func_sortby_test.go ├── func_sortbyname.go ├── func_sortbyname_test.go ├── func_substr.go ├── func_substr_test.go ├── func_summarize.go ├── func_summarize_test.go ├── func_timeshift.go ├── func_timeshift_test.go ├── func_transformnull.go ├── func_transformnull_test.go ├── func_unique.go ├── func_unique_test.go ├── funcs.go ├── init_test.go ├── normalize.go ├── normalize_test.go ├── parse.go ├── parse_test.go ├── plan.go ├── plan_test.go ├── pool.go ├── seriesaggregator_test.go ├── seriesaggregators.go ├── tagquery │ ├── expression.go │ ├── expression_common.go │ ├── expression_equal.go │ ├── expression_has_tag.go │ ├── expression_match.go │ ├── expression_match_all.go │ ├── expression_match_none.go │ ├── expression_match_tag.go │ ├── expression_not_equal.go │ ├── expression_not_has_tag.go │ ├── expression_not_match.go │ ├── expression_prefix.go │ ├── expression_prefix_tag.go │ ├── expression_test.go │ ├── meta_tag_record.go │ ├── meta_tag_record_test.go │ ├── query.go │ ├── query_test.go │ ├── tag.go │ ├── tag_gen.go │ ├── tag_gen_test.go │ ├── tag_test.go │ └── utils.go ├── test.go ├── types.go ├── validator.go └── xfilesfactor.go ├── idx ├── bigtable │ ├── bigtable.go │ ├── config.go │ └── schema.go ├── cassandra │ ├── cassandra.go │ ├── cassandra_test.go │ └── config.go ├── idx.go ├── idx_gen.go ├── idx_gen_test.go ├── memory │ ├── find_cache.go │ ├── find_cache_test.go │ ├── memory.go │ ├── memory_find_test.go │ ├── memory_test.go │ ├── meta_tags.go │ ├── meta_tags_query_test.go │ ├── meta_tags_test.go │ ├── partitioned_idx.go │ ├── priority_lock.go │ ├── stats.go │ ├── tag_query.go │ ├── tag_query_id_filter.go │ ├── tag_query_id_filter_test.go │ ├── tag_query_id_selector.go │ ├── tag_query_id_selector_test.go │ ├── tag_query_test.go │ ├── time_limit.go │ ├── time_limit_test.go │ ├── write_queue.go │ └── write_queue_test.go └── metatags │ ├── bigtable │ ├── config.go │ └── meta_record_idx.go │ ├── cassandra │ ├── config.go │ └── meta_record_idx.go │ ├── meta_record_status.go │ └── meta_record_status_test.go ├── input ├── carbon │ ├── carbon.go │ └── intervalgetter.go ├── input.go ├── input_test.go ├── kafkamdm │ ├── kafkamdm.go │ ├── lag_monitor.go │ └── lag_monitor_test.go └── plugin.go ├── jaeger └── jaeger.go ├── kafka ├── cfg.go ├── partitions.go └── scram.go ├── logger └── logger.go ├── mdata ├── aggmetric.go ├── aggmetric_test.go ├── aggmetrics.go ├── aggmetrics_test.go ├── aggregation.go ├── aggregator.go ├── aggregator_test.go ├── cache │ ├── accnt │ │ ├── flat_accnt.go │ │ ├── flat_accnt_test.go │ │ ├── if.go │ │ ├── lru.go │ │ ├── lru_test.go │ │ ├── sort_uint32.go │ │ └── stats.go │ ├── cache_mock.go │ ├── ccache.go │ ├── ccache_chunk.go │ ├── ccache_metric.go │ ├── ccache_metric_test.go │ ├── ccache_test.go │ ├── if.go │ └── resulttype_string.go ├── chunk │ ├── archive │ │ ├── archive.go │ │ ├── archive_gen.go │ │ └── archive_gen_test.go │ ├── chunk.go │ ├── chunk_test.go │ ├── encode.go │ ├── format.go │ ├── format_string.go │ ├── itergen.go │ ├── itergen_gen.go │ ├── itergen_gen_test.go │ ├── spans.go │ └── tsz │ │ ├── LICENSE │ │ ├── bstream.go │ │ ├── finish.go │ │ ├── fuzz.go │ │ ├── iter.go │ │ ├── series_test.go │ │ ├── testdata │ │ └── data.go │ │ ├── tsz.go │ │ ├── tsz_test.go │ │ └── tszlong.go ├── cwr.go ├── cwr_gen.go ├── cwr_gen_test.go ├── errors │ └── errors.go ├── helper.go ├── ifaces.go ├── importer │ ├── archive_request.go │ ├── archive_request_gen.go │ ├── archive_request_gen_test.go │ ├── chunk_encoder.go │ ├── chunk_encoder_test.go │ ├── converter.go │ ├── converter_test.go │ ├── cwr.go │ ├── cwr_gen.go │ └── cwr_gen_test.go ├── init.go ├── notifier.go ├── notifierKafka │ ├── cfg.go │ ├── notifierKafka.go │ └── scram.go ├── reorder_buffer.go ├── reorder_buffer_test.go ├── result.go ├── schema.go └── store_mock.go ├── metrictank-sample.ini ├── pointslicepool └── pointslicepool.go ├── publish ├── kafka │ ├── keycache │ │ ├── cache.go │ │ ├── keycache.go │ │ └── shard.go │ ├── publish.go │ └── publish_test.go └── publish.go ├── schema ├── LICENSE ├── archive.go ├── archive_gen.go ├── archive_gen_test.go ├── archive_test.go ├── control.go ├── control_gen.go ├── control_gen_test.go ├── key.go ├── key_gen.go ├── key_gen_test.go ├── key_test.go ├── method_string.go ├── metric.go ├── metric_gen.go ├── metric_gen_test.go ├── metric_serialization_gob_test.go ├── metric_serialization_json_test.go ├── metric_serialization_metricpoint_test.go ├── metric_serialization_metricpoint_withoutorg_test.go ├── metric_serialization_msgp_test.go ├── metric_serialization_test.go ├── metric_test.go ├── metricpoint.go ├── metricpoint_test.go ├── metricpoint_withoutorg_test.go ├── msg │ ├── format.go │ ├── format_string.go │ ├── msg.go │ └── msg_test.go ├── operation_string.go ├── partition.go ├── partition_test.go ├── point.go ├── point_gen.go ├── point_gen_test.go ├── reslice.go └── reslice_test.go ├── scripts ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── build.sh ├── build_docker.sh ├── build_packages.sh ├── config │ ├── index-rules.conf │ ├── metrictank-docker-dev.ini │ ├── metrictank-docker.ini │ ├── metrictank-package.ini │ ├── mt-gateway.ini │ ├── schema-idx-cassandra.toml │ ├── schema-idx-scylladb.toml │ ├── schema-store-cassandra.toml │ ├── schema-store-scylladb.toml │ ├── storage-aggregation.conf │ ├── storage-schemas.conf │ ├── systemd │ │ └── metrictank.service │ ├── sysvinit │ │ ├── default │ │ │ └── metrictank │ │ └── init.d │ │ │ └── metrictank │ ├── upstart-0.6.5 │ │ └── metrictank.conf │ └── upstart │ │ └── metrictank ├── depends.sh ├── dev │ ├── config-to-doc.sh │ ├── format-stackdump.sh │ ├── store-cassandra-generate-window-size-comment-table.py │ ├── sync-configs.sh │ └── tools-to-doc.sh ├── dlv │ └── Dockerfile ├── k8s │ ├── Dockerfile │ ├── entrypoint.sh │ └── getOffset.py ├── k8s_dlv │ ├── Dockerfile │ ├── entrypoint_debug.sh │ └── getOffset.py ├── push │ ├── dockerhub.sh │ ├── extra-qa.sh │ ├── gcr.sh │ └── packagecloud.sh ├── qa-subjective │ ├── cyclo.sh │ ├── errcheck.sh │ ├── golint.sh │ └── vet.sh ├── qa │ ├── docs.sh │ ├── gitignore.sh │ ├── go-generate.sh │ ├── gofmt.sh │ ├── ineffassign.sh │ ├── misspell.sh │ ├── unused.sh │ ├── vendor.sh │ └── vet-high-confidence.sh ├── util │ ├── wait_for_endpoint.sh │ └── wait_for_endpoint_debug.sh └── version-tag.sh ├── stacktest ├── README.md ├── docker │ └── docker.go ├── fakemetrics │ └── fakemetrics.go ├── grafana │ └── grafana.go ├── graphite │ ├── comparator.go │ ├── graphite.go │ ├── response.go │ └── validate.go ├── tests │ ├── chaos_cluster │ │ ├── README.md │ │ ├── analyze-mt4-out.sh │ │ ├── chaos_cluster_test.go │ │ └── notes │ ├── end2end_carbon │ │ ├── end2end_carbon_test.go │ │ └── notes │ ├── end2end_carbon_bigtable │ │ ├── end2end_carbon_test.go │ │ └── notes │ └── predictable-tag-query-render-workload │ │ ├── README.md │ │ └── main.go └── track │ └── tracker.go ├── stats ├── bool.go ├── config │ └── init.go ├── counter32.go ├── counter64.go ├── counterrate32.go ├── gauge32.go ├── gauge64.go ├── init.go ├── kafka.go ├── latencyhistogram12h32.go ├── latencyhistogram15s32.go ├── memory_reporter.go ├── meter32.go ├── out_devnull.go ├── out_graphite.go ├── process_reporter.go ├── range32.go ├── registry.go ├── timediff_reporter.go └── write.go ├── store ├── bigtable │ ├── bigtable.go │ └── config.go ├── cassandra │ ├── cassandra.go │ ├── cassandra_test.go │ ├── config.go │ └── table.go └── store_devnull.go ├── test ├── key.go ├── path.go ├── points.go └── tracer.go ├── tracing └── tracing.go ├── util ├── align │ ├── align.go │ └── align_test.go ├── atomic.go ├── buffer_pool.go ├── combinations.go ├── combinations_test.go ├── compression.go ├── flag_parsers.go ├── flag_parsers_test.go ├── flags.go ├── flags_test.go ├── fnv32a.go ├── fnv64a.go ├── helper.go ├── limiter.go ├── limiter_test.go ├── naturalsort.go ├── naturalsort_test.go ├── template.go ├── timeout.go ├── timeout_test.go ├── util.go └── util_test.go └── vendor ├── cloud.google.com └── go │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── bigtable │ ├── admin.go │ ├── bigtable.go │ ├── doc.go │ ├── filter.go │ ├── gc.go │ ├── go18.go │ ├── internal │ │ ├── gax │ │ │ ├── call_option.go │ │ │ └── invoke.go │ │ └── option │ │ │ └── option.go │ ├── not_go18.go │ └── reader.go │ ├── compute │ └── metadata │ │ └── metadata.go │ ├── iam │ └── iam.go │ ├── internal │ ├── optional │ │ └── optional.go │ └── version │ │ └── version.go │ └── longrunning │ ├── autogen │ ├── doc.go │ ├── from_conn.go │ └── operations_client.go │ └── longrunning.go ├── github.com ├── DataDog │ └── datadog-go │ │ ├── LICENSE.txt │ │ └── statsd │ │ └── statsd.go ├── Dieterbe │ ├── artisanalhistogram │ │ ├── LICENSE │ │ ├── hist12h │ │ │ └── hist12h.go │ │ └── hist15s │ │ │ └── hist15s.go │ └── profiletrigger │ │ ├── heap │ │ └── heap.go │ │ └── procfs │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── fs.go │ │ ├── proc.go │ │ ├── proc_stat.go │ │ └── stat.go ├── Microsoft │ └── go-winio │ │ ├── LICENSE │ │ ├── archive │ │ └── tar │ │ │ └── LICENSE │ │ ├── backup.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── pipe.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ └── zsyscall_windows.go ├── Shopify │ └── sarama │ │ ├── LICENSE │ │ ├── acl_bindings.go │ │ ├── acl_create_request.go │ │ ├── acl_create_response.go │ │ ├── acl_delete_request.go │ │ ├── acl_delete_response.go │ │ ├── acl_describe_request.go │ │ ├── acl_describe_response.go │ │ ├── acl_filter.go │ │ ├── acl_types.go │ │ ├── add_offsets_to_txn_request.go │ │ ├── add_offsets_to_txn_response.go │ │ ├── add_partitions_to_txn_request.go │ │ ├── add_partitions_to_txn_response.go │ │ ├── admin.go │ │ ├── alter_configs_request.go │ │ ├── alter_configs_response.go │ │ ├── api_versions_request.go │ │ ├── api_versions_response.go │ │ ├── async_producer.go │ │ ├── balance_strategy.go │ │ ├── broker.go │ │ ├── client.go │ │ ├── compress.go │ │ ├── config.go │ │ ├── config_resource_type.go │ │ ├── consumer.go │ │ ├── consumer_group.go │ │ ├── consumer_group_members.go │ │ ├── consumer_metadata_request.go │ │ ├── consumer_metadata_response.go │ │ ├── control_record.go │ │ ├── crc32_field.go │ │ ├── create_partitions_request.go │ │ ├── create_partitions_response.go │ │ ├── create_topics_request.go │ │ ├── create_topics_response.go │ │ ├── decompress.go │ │ ├── delete_groups_request.go │ │ ├── delete_groups_response.go │ │ ├── delete_records_request.go │ │ ├── delete_records_response.go │ │ ├── delete_topics_request.go │ │ ├── delete_topics_response.go │ │ ├── describe_configs_request.go │ │ ├── describe_configs_response.go │ │ ├── describe_groups_request.go │ │ ├── describe_groups_response.go │ │ ├── describe_log_dirs_request.go │ │ ├── describe_log_dirs_response.go │ │ ├── encoder_decoder.go │ │ ├── end_txn_request.go │ │ ├── end_txn_response.go │ │ ├── errors.go │ │ ├── fetch_request.go │ │ ├── fetch_response.go │ │ ├── find_coordinator_request.go │ │ ├── find_coordinator_response.go │ │ ├── gssapi_kerberos.go │ │ ├── heartbeat_request.go │ │ ├── heartbeat_response.go │ │ ├── init_producer_id_request.go │ │ ├── init_producer_id_response.go │ │ ├── join_group_request.go │ │ ├── join_group_response.go │ │ ├── kerberos_client.go │ │ ├── leave_group_request.go │ │ ├── leave_group_response.go │ │ ├── length_field.go │ │ ├── list_groups_request.go │ │ ├── list_groups_response.go │ │ ├── message.go │ │ ├── message_set.go │ │ ├── metadata_request.go │ │ ├── metadata_response.go │ │ ├── metrics.go │ │ ├── mockbroker.go │ │ ├── mockkerberos.go │ │ ├── mockresponses.go │ │ ├── mocks │ │ ├── async_producer.go │ │ ├── consumer.go │ │ ├── mocks.go │ │ └── sync_producer.go │ │ ├── offset_commit_request.go │ │ ├── offset_commit_response.go │ │ ├── offset_fetch_request.go │ │ ├── offset_fetch_response.go │ │ ├── offset_manager.go │ │ ├── offset_request.go │ │ ├── offset_response.go │ │ ├── packet_decoder.go │ │ ├── packet_encoder.go │ │ ├── partitioner.go │ │ ├── prep_encoder.go │ │ ├── produce_request.go │ │ ├── produce_response.go │ │ ├── produce_set.go │ │ ├── real_decoder.go │ │ ├── real_encoder.go │ │ ├── record.go │ │ ├── record_batch.go │ │ ├── records.go │ │ ├── request.go │ │ ├── response_header.go │ │ ├── sarama.go │ │ ├── sasl_authenticate_request.go │ │ ├── sasl_authenticate_response.go │ │ ├── sasl_handshake_request.go │ │ ├── sasl_handshake_response.go │ │ ├── sticky_assignor_user_data.go │ │ ├── sync_group_request.go │ │ ├── sync_group_response.go │ │ ├── sync_producer.go │ │ ├── timestamp.go │ │ ├── tools │ │ └── tls │ │ │ └── config.go │ │ ├── txn_offset_commit_request.go │ │ ├── txn_offset_commit_response.go │ │ ├── utils.go │ │ └── zstd.go ├── alyu │ └── configparser │ │ ├── LICENSE │ │ └── configparser.go ├── armon │ └── go-metrics │ │ ├── LICENSE │ │ ├── const_unix.go │ │ ├── const_windows.go │ │ ├── inmem.go │ │ ├── inmem_signal.go │ │ ├── metrics.go │ │ ├── sink.go │ │ ├── start.go │ │ ├── statsd.go │ │ └── statsite.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ └── stream.go ├── cespare │ └── xxhash │ │ ├── LICENSE.txt │ │ ├── xxhash.go │ │ ├── xxhash_amd64.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dgryski │ ├── go-jump │ │ ├── LICENSE │ │ └── jump.go │ └── go-linlog │ │ ├── LICENSE │ │ ├── hist.go │ │ └── linlog.go ├── docker │ ├── distribution │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── digest │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── verifiers.go │ │ └── reference │ │ │ ├── reference.go │ │ │ └── regexp.go │ ├── docker │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── api │ │ │ └── types │ │ │ │ ├── auth.go │ │ │ │ ├── blkiodev │ │ │ │ └── blkio.go │ │ │ │ ├── client.go │ │ │ │ ├── configs.go │ │ │ │ ├── container │ │ │ │ ├── config.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── host_config.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ └── hostconfig_windows.go │ │ │ │ ├── error_response.go │ │ │ │ ├── events │ │ │ │ └── events.go │ │ │ │ ├── filters │ │ │ │ └── parse.go │ │ │ │ ├── id_response.go │ │ │ │ ├── image_summary.go │ │ │ │ ├── mount │ │ │ │ └── mount.go │ │ │ │ ├── network │ │ │ │ └── network.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_device.go │ │ │ │ ├── plugin_env.go │ │ │ │ ├── plugin_interface_type.go │ │ │ │ ├── plugin_mount.go │ │ │ │ ├── plugin_responses.go │ │ │ │ ├── port.go │ │ │ │ ├── reference │ │ │ │ └── image_reference.go │ │ │ │ ├── registry │ │ │ │ ├── authenticate.go │ │ │ │ └── registry.go │ │ │ │ ├── seccomp.go │ │ │ │ ├── service_update_response.go │ │ │ │ ├── stats.go │ │ │ │ ├── strslice │ │ │ │ └── strslice.go │ │ │ │ ├── swarm │ │ │ │ ├── common.go │ │ │ │ ├── container.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── swarm.go │ │ │ │ └── task.go │ │ │ │ ├── time │ │ │ │ ├── duration_convert.go │ │ │ │ └── timestamp.go │ │ │ │ ├── types.go │ │ │ │ ├── versions │ │ │ │ └── compare.go │ │ │ │ ├── volume.go │ │ │ │ └── volume │ │ │ │ ├── volumes_create.go │ │ │ │ └── volumes_list.go │ │ ├── client │ │ │ ├── checkpoint_create.go │ │ │ ├── checkpoint_delete.go │ │ │ ├── checkpoint_list.go │ │ │ ├── client.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── container_attach.go │ │ │ ├── container_commit.go │ │ │ ├── container_copy.go │ │ │ ├── container_create.go │ │ │ ├── container_diff.go │ │ │ ├── container_exec.go │ │ │ ├── container_export.go │ │ │ ├── container_inspect.go │ │ │ ├── container_kill.go │ │ │ ├── container_list.go │ │ │ ├── container_logs.go │ │ │ ├── container_pause.go │ │ │ ├── container_prune.go │ │ │ ├── container_remove.go │ │ │ ├── container_rename.go │ │ │ ├── container_resize.go │ │ │ ├── container_restart.go │ │ │ ├── container_start.go │ │ │ ├── container_stats.go │ │ │ ├── container_stop.go │ │ │ ├── container_top.go │ │ │ ├── container_unpause.go │ │ │ ├── container_update.go │ │ │ ├── container_wait.go │ │ │ ├── disk_usage.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── hijack.go │ │ │ ├── image_build.go │ │ │ ├── image_create.go │ │ │ ├── image_history.go │ │ │ ├── image_import.go │ │ │ ├── image_inspect.go │ │ │ ├── image_list.go │ │ │ ├── image_load.go │ │ │ ├── image_prune.go │ │ │ ├── image_pull.go │ │ │ ├── image_push.go │ │ │ ├── image_remove.go │ │ │ ├── image_save.go │ │ │ ├── image_search.go │ │ │ ├── image_tag.go │ │ │ ├── info.go │ │ │ ├── interface.go │ │ │ ├── interface_experimental.go │ │ │ ├── interface_stable.go │ │ │ ├── login.go │ │ │ ├── network_connect.go │ │ │ ├── network_create.go │ │ │ ├── network_disconnect.go │ │ │ ├── network_inspect.go │ │ │ ├── network_list.go │ │ │ ├── network_prune.go │ │ │ ├── network_remove.go │ │ │ ├── node_inspect.go │ │ │ ├── node_list.go │ │ │ ├── node_remove.go │ │ │ ├── node_update.go │ │ │ ├── ping.go │ │ │ ├── plugin_create.go │ │ │ ├── plugin_disable.go │ │ │ ├── plugin_enable.go │ │ │ ├── plugin_inspect.go │ │ │ ├── plugin_install.go │ │ │ ├── plugin_list.go │ │ │ ├── plugin_push.go │ │ │ ├── plugin_remove.go │ │ │ ├── plugin_set.go │ │ │ ├── plugin_upgrade.go │ │ │ ├── request.go │ │ │ ├── secret_create.go │ │ │ ├── secret_inspect.go │ │ │ ├── secret_list.go │ │ │ ├── secret_remove.go │ │ │ ├── secret_update.go │ │ │ ├── service_create.go │ │ │ ├── service_inspect.go │ │ │ ├── service_list.go │ │ │ ├── service_logs.go │ │ │ ├── service_remove.go │ │ │ ├── service_update.go │ │ │ ├── swarm_get_unlock_key.go │ │ │ ├── swarm_init.go │ │ │ ├── swarm_inspect.go │ │ │ ├── swarm_join.go │ │ │ ├── swarm_leave.go │ │ │ ├── swarm_unlock.go │ │ │ ├── swarm_update.go │ │ │ ├── task_inspect.go │ │ │ ├── task_list.go │ │ │ ├── transport.go │ │ │ ├── utils.go │ │ │ ├── version.go │ │ │ ├── volume_create.go │ │ │ ├── volume_inspect.go │ │ │ ├── volume_list.go │ │ │ ├── volume_prune.go │ │ │ └── volume_remove.go │ │ ├── contrib │ │ │ ├── selinux-fedora-24 │ │ │ │ └── docker-engine-selinux │ │ │ │ │ └── LICENSE │ │ │ ├── selinux-oraclelinux-7 │ │ │ │ └── docker-engine-selinux │ │ │ │ │ └── LICENSE │ │ │ ├── selinux │ │ │ │ └── docker-engine-selinux │ │ │ │ │ └── LICENSE │ │ │ └── syntax │ │ │ │ └── vim │ │ │ │ └── LICENSE │ │ ├── docs │ │ │ └── static_files │ │ │ │ └── contributors.png │ │ ├── hack │ │ │ ├── generate-authors.sh │ │ │ └── make │ │ │ │ └── .build-deb │ │ │ │ ├── docker-engine.docker.default │ │ │ │ ├── docker-engine.docker.init │ │ │ │ ├── docker-engine.docker.upstart │ │ │ │ └── docker-engine.udev │ │ ├── pkg │ │ │ ├── symlink │ │ │ │ ├── LICENSE.APACHE │ │ │ │ └── LICENSE.BSD │ │ │ └── tlsconfig │ │ │ │ ├── tlsconfig_clone.go │ │ │ │ ├── tlsconfig_clone_go16.go │ │ │ │ └── tlsconfig_clone_go17.go │ │ └── project │ │ │ └── CONTRIBUTORS.md │ ├── go-connections │ │ ├── LICENSE │ │ ├── nat │ │ │ ├── nat.go │ │ │ ├── parse.go │ │ │ └── sort.go │ │ ├── sockets │ │ │ ├── inmem_socket.go │ │ │ ├── proxy.go │ │ │ ├── sockets.go │ │ │ ├── sockets_unix.go │ │ │ ├── sockets_windows.go │ │ │ ├── tcp_socket.go │ │ │ └── unix_socket.go │ │ └── tlsconfig │ │ │ ├── certpool_go17.go │ │ │ ├── certpool_other.go │ │ │ ├── config.go │ │ │ ├── config_client_ciphers.go │ │ │ └── config_legacy_client_ciphers.go │ └── go-units │ │ ├── LICENSE │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go ├── eapache │ ├── go-resiliency │ │ ├── LICENSE │ │ └── breaker │ │ │ └── breaker.go │ ├── go-xerial-snappy │ │ ├── LICENSE │ │ └── snappy.go │ └── queue │ │ ├── LICENSE │ │ └── queue.go ├── fsnotify │ └── fsnotify │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go ├── glacjay │ └── goini │ │ ├── LICENSE.txt │ │ └── ini.go ├── go-macaron │ ├── binding │ │ ├── LICENSE │ │ ├── binding.go │ │ └── errors.go │ └── inject │ │ ├── LICENSE │ │ └── inject.go ├── gocql │ └── gocql │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── address_translators.go │ │ ├── cluster.go │ │ ├── compressor.go │ │ ├── conn.go │ │ ├── connectionpool.go │ │ ├── control.go │ │ ├── cqltypes.go │ │ ├── debug_off.go │ │ ├── debug_on.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── events.go │ │ ├── filters.go │ │ ├── frame.go │ │ ├── fuzz.go │ │ ├── helpers.go │ │ ├── host_source.go │ │ ├── host_source_gen.go │ │ ├── internal │ │ ├── lru │ │ │ └── lru.go │ │ ├── murmur │ │ │ ├── murmur.go │ │ │ ├── murmur_appengine.go │ │ │ └── murmur_unsafe.go │ │ └── streams │ │ │ └── streams.go │ │ ├── logger.go │ │ ├── marshal.go │ │ ├── metadata.go │ │ ├── policies.go │ │ ├── prepared_cache.go │ │ ├── query_executor.go │ │ ├── ring.go │ │ ├── session.go │ │ ├── token.go │ │ ├── topology.go │ │ └── uuid.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── decode_gogo.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ └── timestamp_gogo.go ├── golang │ ├── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ ├── protoc-gen-go │ │ │ └── descriptor │ │ │ │ └── descriptor.pb.go │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ └── any.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ └── duration.pb.go │ │ │ ├── empty │ │ │ └── empty.pb.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ └── timestamp.pb.go │ │ │ └── wrappers │ │ │ └── wrappers.pb.go │ └── snappy │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── decode.go │ │ ├── decode_amd64.go │ │ ├── decode_amd64.s │ │ ├── decode_other.go │ │ ├── encode.go │ │ ├── encode_amd64.go │ │ ├── encode_amd64.s │ │ ├── encode_other.go │ │ └── snappy.go ├── google │ └── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ ├── compare.go │ │ ├── export_panic.go │ │ ├── export_unsafe.go │ │ ├── internal │ │ ├── diff │ │ │ ├── debug_disable.go │ │ │ ├── debug_enable.go │ │ │ └── diff.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ ├── toolchain_legacy.go │ │ │ └── toolchain_recent.go │ │ ├── function │ │ │ └── func.go │ │ └── value │ │ │ ├── pointer_purego.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── sort.go │ │ │ └── zero.go │ │ ├── options.go │ │ ├── path.go │ │ ├── report.go │ │ ├── report_compare.go │ │ ├── report_reflect.go │ │ ├── report_slices.go │ │ ├── report_text.go │ │ └── report_value.go ├── googleapis │ └── gax-go │ │ ├── LICENSE │ │ ├── call_option.go │ │ ├── gax.go │ │ ├── header.go │ │ └── invoke.go ├── gopherjs │ └── gopherjs │ │ ├── LICENSE │ │ └── js │ │ └── js.go ├── gosuri │ └── uilive │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── terminal_size.go │ │ ├── terminal_size_windows.go │ │ ├── writer.go │ │ ├── writer_posix.go │ │ └── writer_windows.go ├── grafana │ ├── configparser │ │ ├── LICENSE │ │ └── configparser.go │ └── globalconf │ │ └── globalconf.go ├── hailocab │ └── go-hostpool │ │ ├── LICENSE │ │ ├── epsilon_greedy.go │ │ ├── epsilon_value_calculators.go │ │ ├── host_entry.go │ │ └── hostpool.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ └── errwrap.go │ ├── go-msgpack │ │ ├── LICENSE │ │ └── codec │ │ │ ├── 0doc.go │ │ │ ├── binc.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── helper.go │ │ │ ├── helper_internal.go │ │ │ ├── msgpack.go │ │ │ ├── rpc.go │ │ │ ├── simple.go │ │ │ └── time.go │ ├── go-multierror │ │ ├── LICENSE │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── multierror.go │ │ └── prefix.go │ ├── go-sockaddr │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── ifaddr.go │ │ ├── ifaddrs.go │ │ ├── ifattr.go │ │ ├── ipaddr.go │ │ ├── ipaddrs.go │ │ ├── ipv4addr.go │ │ ├── ipv6addr.go │ │ ├── rfc.go │ │ ├── route_info.go │ │ ├── route_info_bsd.go │ │ ├── route_info_default.go │ │ ├── route_info_linux.go │ │ ├── route_info_solaris.go │ │ ├── route_info_windows.go │ │ ├── sockaddr.go │ │ ├── sockaddrs.go │ │ └── unixsock.go │ ├── go-uuid │ │ ├── LICENSE │ │ └── uuid.go │ ├── golang-lru │ │ ├── 2q.go │ │ ├── LICENSE │ │ ├── arc.go │ │ ├── doc.go │ │ ├── lru.go │ │ └── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ ├── hcl │ │ ├── LICENSE │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── walk.go │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ └── parser.go │ │ │ ├── printer │ │ │ │ ├── nodes.go │ │ │ │ └── printer.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ ├── strconv │ │ │ │ └── quote.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go │ └── memberlist │ │ ├── LICENSE │ │ ├── alive_delegate.go │ │ ├── awareness.go │ │ ├── broadcast.go │ │ ├── config.go │ │ ├── conflict_delegate.go │ │ ├── delegate.go │ │ ├── event_delegate.go │ │ ├── keyring.go │ │ ├── logging.go │ │ ├── memberlist.go │ │ ├── merge_delegate.go │ │ ├── mock_transport.go │ │ ├── net.go │ │ ├── net_transport.go │ │ ├── ping_delegate.go │ │ ├── queue.go │ │ ├── security.go │ │ ├── state.go │ │ ├── suspicion.go │ │ ├── transport.go │ │ └── util.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── jcmturner │ └── gofork │ │ ├── LICENSE │ │ ├── encoding │ │ └── asn1 │ │ │ ├── asn1.go │ │ │ ├── common.go │ │ │ └── marshal.go │ │ └── x │ │ └── crypto │ │ └── pbkdf2 │ │ └── pbkdf2.go ├── jpillora │ └── backoff │ │ ├── LICENSE │ │ └── backoff.go ├── jtolds │ └── gls │ │ ├── LICENSE │ │ ├── context.go │ │ ├── gen_sym.go │ │ ├── gid.go │ │ ├── id_pool.go │ │ ├── stack_tags.go │ │ ├── stack_tags_js.go │ │ └── stack_tags_main.go ├── kisielk │ ├── og-rek │ │ ├── LICENSE │ │ ├── encode.go │ │ ├── fuzz.go │ │ └── ogorek.go │ └── whisper-go │ │ ├── LICENSE │ │ └── whisper │ │ ├── util.go │ │ └── whisper.go ├── klauspost │ └── compress │ │ ├── LICENSE │ │ ├── flate │ │ ├── deflate.go │ │ ├── dict_decoder.go │ │ ├── fast_encoder.go │ │ ├── gen.go │ │ ├── gen_inflate.go │ │ ├── huffman_bit_writer.go │ │ ├── huffman_code.go │ │ ├── huffman_sortByFreq.go │ │ ├── huffman_sortByLiteral.go │ │ ├── inflate.go │ │ ├── inflate_gen.go │ │ ├── level1.go │ │ ├── level2.go │ │ ├── level3.go │ │ ├── level4.go │ │ ├── level5.go │ │ ├── level6.go │ │ ├── stateless.go │ │ └── token.go │ │ ├── fse │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── gzip │ │ ├── gunzip.go │ │ └── gzip.go │ │ ├── huff0 │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── huff0.go │ │ ├── s2 │ │ ├── LICENSE │ │ └── cmd │ │ │ └── internal │ │ │ └── readahead │ │ │ └── LICENSE │ │ ├── snappy │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── decode.go │ │ ├── decode_amd64.go │ │ ├── decode_amd64.s │ │ ├── decode_other.go │ │ ├── encode.go │ │ ├── encode_amd64.go │ │ ├── encode_amd64.s │ │ ├── encode_other.go │ │ └── snappy.go │ │ └── zstd │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── enc_params.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── seqdec.go │ │ ├── seqenc.go │ │ ├── snappy.go │ │ └── zstd.go ├── konsorten │ └── go-windows-terminal-sequences │ │ ├── LICENSE │ │ └── sequences.go ├── magiconair │ └── properties │ │ ├── LICENSE │ │ ├── decode.go │ │ ├── doc.go │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── mattn │ └── go-isatty │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go ├── metrics20 │ └── go-metrics20 │ │ └── carbon20 │ │ ├── manipulate.go │ │ ├── validate.go │ │ ├── validationlevellegacy_string.go │ │ ├── validationlevelm20_string.go │ │ └── version.go ├── miekg │ └── dns │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── client.go │ │ ├── clientconfig.go │ │ ├── defaults.go │ │ ├── dns.go │ │ ├── dnssec.go │ │ ├── dnssec_keygen.go │ │ ├── dnssec_keyscan.go │ │ ├── dnssec_privkey.go │ │ ├── doc.go │ │ ├── edns.go │ │ ├── format.go │ │ ├── generate.go │ │ ├── labels.go │ │ ├── msg.go │ │ ├── msg_generate.go │ │ ├── msg_helpers.go │ │ ├── nsecx.go │ │ ├── privaterr.go │ │ ├── rawmsg.go │ │ ├── reverse.go │ │ ├── sanitize.go │ │ ├── scan.go │ │ ├── scan_rr.go │ │ ├── scanner.go │ │ ├── server.go │ │ ├── sig0.go │ │ ├── singleinflight.go │ │ ├── tlsa.go │ │ ├── tsig.go │ │ ├── types.go │ │ ├── types_generate.go │ │ ├── udp.go │ │ ├── udp_linux.go │ │ ├── udp_other.go │ │ ├── udp_plan9.go │ │ ├── udp_windows.go │ │ ├── update.go │ │ ├── xfr.go │ │ ├── zmsg.go │ │ └── ztypes.go ├── mitchellh │ ├── go-homedir │ │ ├── LICENSE │ │ └── homedir.go │ └── mapstructure │ │ ├── LICENSE │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go ├── opentracing │ └── opentracing-go │ │ ├── LICENSE │ │ ├── ext │ │ └── tags.go │ │ ├── globaltracer.go │ │ ├── gocontext.go │ │ ├── log │ │ ├── field.go │ │ └── util.go │ │ ├── noop.go │ │ ├── propagation.go │ │ ├── span.go │ │ └── tracer.go ├── pelletier │ └── go-toml │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── fuzz.go │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── marshal.go │ │ ├── parser.go │ │ ├── position.go │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomltree_create.go │ │ └── tomltree_write.go ├── philhofer │ └── fwd │ │ ├── LICENSE.md │ │ ├── reader.go │ │ ├── writer.go │ │ ├── writer_appengine.go │ │ └── writer_unsafe.go ├── pierrec │ ├── lz4 │ │ ├── LICENSE │ │ ├── block.go │ │ ├── lz4.go │ │ ├── reader.go │ │ └── writer.go │ └── xxHash │ │ ├── LICENSE │ │ └── xxHash32 │ │ └── xxHash32.go ├── pkg │ └── errors │ │ ├── LICENSE │ │ ├── errors.go │ │ └── stack.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── go_collector.go │ │ │ ├── histogram.go │ │ │ ├── http.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── promauto │ │ │ └── auto.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── delegator_1_8.go │ │ │ ├── delegator_pre_1_8.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_client_1_8.go │ │ │ └── instrument_server.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ └── vec.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── go │ │ │ └── metrics.pb.go │ │ └── ruby │ │ │ └── LICENSE │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ └── autoneg.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ └── value.go │ └── procfs │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── buddyinfo.go │ │ ├── doc.go │ │ ├── fixtures │ │ ├── 26231 │ │ │ ├── exe │ │ │ ├── fd │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 10 │ │ │ └── ns │ │ │ │ ├── mnt │ │ │ │ └── net │ │ ├── 26232 │ │ │ └── fd │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 4 │ │ └── self │ │ ├── fs.go │ │ ├── internal │ │ └── util │ │ │ └── parse.go │ │ ├── ipvs.go │ │ ├── mdstat.go │ │ ├── mountstats.go │ │ ├── net_dev.go │ │ ├── nfs │ │ ├── nfs.go │ │ ├── parse.go │ │ ├── parse_nfs.go │ │ └── parse_nfsd.go │ │ ├── proc.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_ns.go │ │ ├── proc_stat.go │ │ ├── stat.go │ │ ├── xfrm.go │ │ └── xfs │ │ ├── parse.go │ │ └── xfs.go ├── raintank │ ├── dur │ │ ├── datetime.go │ │ └── duration.go │ ├── gziper │ │ ├── LICENSE │ │ └── gzip.go │ ├── met │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── dogstatsd │ │ │ ├── count.go │ │ │ ├── gauge.go │ │ │ ├── init.go │ │ │ ├── meter.go │ │ │ └── timer.go │ │ ├── helper │ │ │ └── helper.go │ │ ├── interfaces.go │ │ └── statsd │ │ │ ├── count.go │ │ │ ├── gauge.go │ │ │ ├── init.go │ │ │ ├── meter.go │ │ │ └── timer.go │ └── worldping-api │ │ ├── LICENSE.md │ │ └── pkg │ │ └── log │ │ ├── console.go │ │ ├── file.go │ │ ├── log.go │ │ └── syslog.go ├── rcrowley │ └── go-metrics │ │ ├── LICENSE │ │ ├── counter.go │ │ ├── debug.go │ │ ├── ewma.go │ │ ├── gauge.go │ │ ├── gauge_float64.go │ │ ├── graphite.go │ │ ├── healthcheck.go │ │ ├── histogram.go │ │ ├── json.go │ │ ├── log.go │ │ ├── meter.go │ │ ├── metrics.go │ │ ├── opentsdb.go │ │ ├── registry.go │ │ ├── runtime.go │ │ ├── runtime_cgo.go │ │ ├── runtime_gccpufraction.go │ │ ├── runtime_no_cgo.go │ │ ├── runtime_no_gccpufraction.go │ │ ├── sample.go │ │ ├── syslog.go │ │ ├── timer.go │ │ └── writer.go ├── rs │ ├── cors │ │ ├── LICENSE │ │ ├── cors.go │ │ └── utils.go │ └── xhandler │ │ ├── LICENSE │ │ ├── chain.go │ │ ├── middleware.go │ │ └── xhandler.go ├── sean- │ └── seed │ │ ├── LICENSE │ │ └── init.go ├── sergi │ └── go-diff │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── diffmatchpatch │ │ ├── diff.go │ │ ├── diffmatchpatch.go │ │ ├── match.go │ │ ├── mathutil.go │ │ ├── patch.go │ │ └── stringutil.go ├── sirupsen │ └── logrus │ │ ├── LICENSE │ │ ├── alt_exit.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_windows.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── smartystreets │ ├── assertions │ │ ├── LICENSE.md │ │ ├── collections.go │ │ ├── doc.go │ │ ├── equal_method.go │ │ ├── equality.go │ │ ├── filter.go │ │ ├── internal │ │ │ ├── go-render │ │ │ │ ├── LICENSE │ │ │ │ └── render │ │ │ │ │ ├── render.go │ │ │ │ │ └── render_time.go │ │ │ └── oglematchers │ │ │ │ ├── LICENSE │ │ │ │ ├── any_of.go │ │ │ │ ├── contains.go │ │ │ │ ├── deep_equals.go │ │ │ │ ├── equals.go │ │ │ │ ├── greater_or_equal.go │ │ │ │ ├── greater_than.go │ │ │ │ ├── less_or_equal.go │ │ │ │ ├── less_than.go │ │ │ │ ├── matcher.go │ │ │ │ ├── not.go │ │ │ │ └── transform_description.go │ │ ├── messages.go │ │ ├── panic.go │ │ ├── quantity.go │ │ ├── serializer.go │ │ ├── strings.go │ │ ├── time.go │ │ └── type.go │ └── goconvey │ │ ├── LICENSE.md │ │ ├── convey │ │ ├── assertions.go │ │ ├── context.go │ │ ├── discovery.go │ │ ├── doc.go │ │ ├── gotest │ │ │ └── utils.go │ │ ├── init.go │ │ ├── nilReporter.go │ │ └── reporting │ │ │ ├── console.go │ │ │ ├── doc.go │ │ │ ├── dot.go │ │ │ ├── gotest.go │ │ │ ├── init.go │ │ │ ├── json.go │ │ │ ├── printer.go │ │ │ ├── problems.go │ │ │ ├── reporter.go │ │ │ ├── reports.go │ │ │ ├── statistics.go │ │ │ └── story.go │ │ └── web │ │ └── client │ │ └── resources │ │ └── fonts │ │ └── Open_Sans │ │ └── LICENSE.txt ├── spenczar │ └── tdigest │ │ ├── LICENSE │ │ ├── fuzz.go │ │ ├── serde.go │ │ └── tdigest.go ├── spf13 │ ├── afero │ │ ├── LICENSE.txt │ │ ├── afero.go │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── LICENSE │ │ ├── cast.go │ │ └── caste.go │ ├── cobra │ │ ├── LICENSE.txt │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── cobra.go │ │ ├── cobra │ │ │ └── cmd │ │ │ │ └── testdata │ │ │ │ └── LICENSE.golden │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ ├── jwalterweatherman │ │ ├── LICENSE │ │ ├── default_notepad.go │ │ ├── log_counter.go │ │ └── notepad.go │ ├── pflag │ │ ├── LICENSE │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── LICENSE │ │ ├── flags.go │ │ ├── util.go │ │ └── viper.go ├── subosito │ └── gotenv │ │ ├── LICENSE │ │ └── gotenv.go ├── tinylib │ └── msgp │ │ ├── LICENSE │ │ └── msgp │ │ ├── advise_linux.go │ │ ├── advise_other.go │ │ ├── circular.go │ │ ├── defs.go │ │ ├── edit.go │ │ ├── elsize.go │ │ ├── errors.go │ │ ├── extension.go │ │ ├── file.go │ │ ├── file_port.go │ │ ├── integers.go │ │ ├── json.go │ │ ├── json_bytes.go │ │ ├── number.go │ │ ├── purego.go │ │ ├── read.go │ │ ├── read_bytes.go │ │ ├── size.go │ │ ├── unsafe.go │ │ ├── write.go │ │ └── write_bytes.go ├── uber │ ├── jaeger-client-go │ │ ├── LICENSE │ │ ├── baggage_setter.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_env.go │ │ │ └── options.go │ │ ├── constants.go │ │ ├── context.go │ │ ├── contrib_observer.go │ │ ├── doc.go │ │ ├── header.go │ │ ├── internal │ │ │ ├── baggage │ │ │ │ ├── remote │ │ │ │ │ ├── options.go │ │ │ │ │ └── restriction_manager.go │ │ │ │ └── restriction_manager.go │ │ │ ├── spanlog │ │ │ │ └── json.go │ │ │ └── throttler │ │ │ │ ├── remote │ │ │ │ ├── options.go │ │ │ │ └── throttler.go │ │ │ │ └── throttler.go │ │ ├── interop.go │ │ ├── jaeger_tag.go │ │ ├── jaeger_thrift_span.go │ │ ├── log │ │ │ └── logger.go │ │ ├── logger.go │ │ ├── metrics.go │ │ ├── observer.go │ │ ├── process.go │ │ ├── propagation.go │ │ ├── reference.go │ │ ├── reporter.go │ │ ├── reporter_options.go │ │ ├── rpcmetrics │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── metrics.go │ │ │ ├── normalizer.go │ │ │ └── observer.go │ │ ├── sampler.go │ │ ├── sampler_options.go │ │ ├── span.go │ │ ├── thrift-gen │ │ │ ├── agent │ │ │ │ ├── agent.go │ │ │ │ ├── constants.go │ │ │ │ └── ttypes.go │ │ │ ├── baggage │ │ │ │ ├── baggagerestrictionmanager.go │ │ │ │ ├── constants.go │ │ │ │ └── ttypes.go │ │ │ ├── jaeger │ │ │ │ ├── agent.go │ │ │ │ ├── constants.go │ │ │ │ └── ttypes.go │ │ │ ├── sampling │ │ │ │ ├── constants.go │ │ │ │ ├── samplingmanager.go │ │ │ │ └── ttypes.go │ │ │ └── zipkincore │ │ │ │ ├── constants.go │ │ │ │ ├── ttypes.go │ │ │ │ └── zipkincollector.go │ │ ├── thrift │ │ │ ├── application_exception.go │ │ │ ├── binary_protocol.go │ │ │ ├── compact_protocol.go │ │ │ ├── exception.go │ │ │ ├── memory_buffer.go │ │ │ ├── messagetype.go │ │ │ ├── numeric.go │ │ │ ├── processor.go │ │ │ ├── protocol.go │ │ │ ├── protocol_exception.go │ │ │ ├── protocol_factory.go │ │ │ ├── rich_transport.go │ │ │ ├── serializer.go │ │ │ ├── simple_json_protocol.go │ │ │ ├── transport.go │ │ │ ├── transport_exception.go │ │ │ ├── transport_factory.go │ │ │ └── type.go │ │ ├── tracer.go │ │ ├── tracer_options.go │ │ ├── transport.go │ │ ├── transport │ │ │ ├── doc.go │ │ │ └── http.go │ │ ├── transport_udp.go │ │ ├── utils │ │ │ ├── http_json.go │ │ │ ├── localip.go │ │ │ ├── rand.go │ │ │ ├── rate_limiter.go │ │ │ ├── udp_client.go │ │ │ └── utils.go │ │ ├── zipkin.go │ │ └── zipkin_thrift_span.go │ └── jaeger-lib │ │ ├── LICENSE │ │ └── metrics │ │ ├── counter.go │ │ ├── factory.go │ │ ├── gauge.go │ │ ├── histogram.go │ │ ├── keys.go │ │ ├── metrics.go │ │ ├── stopwatch.go │ │ └── timer.go ├── unknwon │ └── com │ │ ├── LICENSE │ │ ├── cmd.go │ │ ├── convert.go │ │ ├── dir.go │ │ ├── file.go │ │ ├── html.go │ │ ├── http.go │ │ ├── math.go │ │ ├── path.go │ │ ├── regex.go │ │ ├── slice.go │ │ ├── string.go │ │ ├── time.go │ │ └── url.go └── xdg │ ├── scram │ ├── LICENSE │ ├── client.go │ ├── client_conv.go │ ├── common.go │ ├── doc.go │ ├── parse.go │ ├── scram.go │ ├── server.go │ └── server_conv.go │ └── stringprep │ ├── LICENSE │ ├── bidi.go │ ├── doc.go │ ├── error.go │ ├── map.go │ ├── profile.go │ ├── saslprep.go │ ├── set.go │ └── tables.go ├── go.opencensus.io ├── AUTHORS ├── LICENSE ├── internal │ ├── internal.go │ ├── sanitize.go │ ├── tagencoding │ │ └── tagencoding.go │ └── traceinternals.go ├── opencensus.go ├── plugin │ ├── ocgrpc │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_stats_handler.go │ │ ├── doc.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_stats_handler.go │ │ ├── stats_common.go │ │ └── trace_common.go │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ └── b3 │ │ │ └── b3.go │ │ ├── route.go │ │ ├── server.go │ │ ├── span_annotating_client_trace.go │ │ ├── stats.go │ │ └── trace.go ├── stats │ ├── doc.go │ ├── internal │ │ ├── record.go │ │ └── validation.go │ ├── measure.go │ ├── measure_float64.go │ ├── measure_int64.go │ ├── record.go │ ├── units.go │ └── view │ │ ├── aggregation.go │ │ ├── aggregation_data.go │ │ ├── collector.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── view.go │ │ ├── worker.go │ │ └── worker_commands.go ├── tag │ ├── context.go │ ├── doc.go │ ├── key.go │ ├── map.go │ ├── map_codec.go │ ├── profile_19.go │ ├── profile_not19.go │ └── validate.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── propagation │ └── propagation.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── md4 │ │ ├── md4.go │ │ └── md4block.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ └── ssh │ │ └── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ ├── ctxhttp │ │ │ ├── ctxhttp.go │ │ │ └── ctxhttp_pre17.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── http2 │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_not18.go │ │ ├── go18.go │ │ ├── go19.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go16.go │ │ ├── not_go17.go │ │ ├── not_go18.go │ │ ├── not_go19.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ └── writesched_random.go │ ├── idna │ │ ├── idna.go │ │ ├── punycode.go │ │ ├── tables.go │ │ ├── trie.go │ │ └── trieval.go │ ├── internal │ │ └── timeseries │ │ │ └── timeseries.go │ ├── lex │ │ └── httplex │ │ │ └── httplex.go │ ├── proxy │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ ├── trace.go │ │ ├── trace_go16.go │ │ └── trace_go17.go │ ├── oauth2 │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── google │ │ ├── appengine.go │ │ ├── appengine_hook.go │ │ ├── appengineflex_hook.go │ │ ├── default.go │ │ ├── doc_go19.go │ │ ├── doc_not_go19.go │ │ ├── go19.go │ │ ├── google.go │ │ ├── jwt.go │ │ ├── not_go19.go │ │ └── sdk.go │ ├── internal │ │ ├── client_appengine.go │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── errgroup │ │ └── errgroup.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── unix │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkpost.go │ │ ├── openbsd_pledge.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── timestruct.go │ │ ├── types_aix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── aliases.go │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── asm_windows_arm.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ └── zsyscall_windows.go │ ├── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── collate │ │ ├── build │ │ │ ├── builder.go │ │ │ ├── colelem.go │ │ │ ├── contract.go │ │ │ ├── order.go │ │ │ ├── table.go │ │ │ └── trie.go │ │ ├── collate.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── sort.go │ │ └── tables.go │ ├── internal │ │ ├── colltab │ │ │ ├── collelem.go │ │ │ ├── colltab.go │ │ │ ├── contract.go │ │ │ ├── iter.go │ │ │ ├── numeric.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── weighter.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── tag │ │ │ └── tag.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ └── ucd │ │ │ └── ucd.go │ ├── language │ │ ├── common.go │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── index.go │ │ ├── language.go │ │ ├── lookup.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── gen.go │ │ ├── gen_ranges.go │ │ ├── gen_trieval.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ ├── cldr │ │ ├── base.go │ │ ├── cldr.go │ │ ├── collate.go │ │ ├── decode.go │ │ ├── makexml.go │ │ ├── resolve.go │ │ ├── slice.go │ │ └── xml.go │ │ ├── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── maketables.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trie.go │ │ └── triegen.go │ │ └── rangetable │ │ ├── gen.go │ │ ├── merge.go │ │ ├── rangetable.go │ │ ├── tables10.0.0.go │ │ └── tables9.0.0.go │ └── time │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── rate │ └── rate.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── cloudresourcemanager │ │ └── v1 │ │ │ └── cloudresourcemanager-gen.go │ ├── gensupport │ │ ├── backoff.go │ │ ├── buffer.go │ │ ├── doc.go │ │ ├── go18.go │ │ ├── header.go │ │ ├── json.go │ │ ├── jsonfloat.go │ │ ├── media.go │ │ ├── not_go18.go │ │ ├── params.go │ │ ├── resumable.go │ │ ├── retry.go │ │ └── send.go │ ├── googleapi │ │ ├── googleapi.go │ │ ├── internal │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── internal │ │ ├── creds.go │ │ ├── pool.go │ │ └── settings.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── credentials_go19.go │ │ ├── credentials_notgo19.go │ │ └── option.go │ └── transport │ │ ├── dial.go │ │ ├── go19.go │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_appengine.go │ │ ├── go18.go │ │ └── not_go18.go │ │ ├── http │ │ ├── dial.go │ │ ├── dial_appengine.go │ │ ├── go18.go │ │ ├── internal │ │ │ └── propagation │ │ │ │ └── http.go │ │ └── not_go18.go │ │ └── not_go19.go ├── appengine │ ├── LICENSE │ ├── appengine.go │ ├── appengine_vm.go │ ├── errors.go │ ├── identity.go │ ├── internal │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── api_pre17.go │ │ ├── app_id.go │ │ ├── app_identity │ │ │ └── app_identity_service.pb.go │ │ ├── base │ │ │ └── api_base.pb.go │ │ ├── datastore │ │ │ └── datastore_v3.pb.go │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_vm.go │ │ ├── internal.go │ │ ├── log │ │ │ └── log_service.pb.go │ │ ├── main.go │ │ ├── main_vm.go │ │ ├── metadata.go │ │ ├── modules │ │ │ └── modules_service.pb.go │ │ ├── net.go │ │ ├── remote_api │ │ │ └── remote_api.pb.go │ │ ├── socket │ │ │ └── socket_service.pb.go │ │ ├── transaction.go │ │ └── urlfetch │ │ │ └── urlfetch_service.pb.go │ ├── namespace.go │ ├── socket │ │ ├── doc.go │ │ ├── socket_classic.go │ │ └── socket_vm.go │ ├── timeout.go │ └── urlfetch │ │ └── urlfetch.go ├── genproto │ ├── LICENSE │ ├── googleapis │ │ ├── api │ │ │ └── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ └── http.pb.go │ │ ├── bigtable │ │ │ ├── admin │ │ │ │ └── v2 │ │ │ │ │ ├── bigtable_instance_admin.pb.go │ │ │ │ │ ├── bigtable_table_admin.pb.go │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ └── table.pb.go │ │ │ └── v2 │ │ │ │ ├── bigtable.pb.go │ │ │ │ └── data.pb.go │ │ ├── iam │ │ │ └── v1 │ │ │ │ ├── iam_policy.pb.go │ │ │ │ └── policy.pb.go │ │ ├── longrunning │ │ │ └── operations.pb.go │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ └── protobuf │ │ └── field_mask │ │ └── field_mask.pb.go └── grpc │ ├── AUTHORS │ ├── LICENSE │ ├── backoff.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ └── roundrobin │ │ └── roundrobin.go │ ├── balancer_conn_wrappers.go │ ├── balancer_v1_wrapper.go │ ├── call.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ ├── code_string.go │ └── codes.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── credentials.go │ ├── go16.go │ ├── go17.go │ ├── go18.go │ ├── go19.go │ └── oauth │ │ └── oauth.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ └── proto │ │ └── proto.go │ ├── go16.go │ ├── go17.go │ ├── grpclog │ ├── grpclog.go │ ├── logger.go │ └── loggerv2.go │ ├── interceptor.go │ ├── internal │ ├── backoff │ │ └── backoff.go │ ├── channelz │ │ ├── funcs.go │ │ ├── types.go │ │ ├── types_linux.go │ │ ├── types_nonlinux.go │ │ ├── util_linux_go19.go │ │ └── util_nonlinux_pre_go19.go │ ├── envconfig │ │ └── envconfig.go │ ├── grpcrand │ │ └── grpcrand.go │ ├── internal.go │ └── transport │ │ ├── bdp_estimator.go │ │ ├── controlbuf.go │ │ ├── defaults.go │ │ ├── flowcontrol.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── handler_server.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ ├── log.go │ │ └── transport.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ └── metadata.go │ ├── naming │ ├── dns_resolver.go │ ├── go17.go │ ├── go18.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── pickfirst.go │ ├── proxy.go │ ├── resolver │ ├── dns │ │ ├── dns_resolver.go │ │ ├── go17.go │ │ └── go18.go │ ├── passthrough │ │ └── passthrough.go │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── stats │ ├── handlers.go │ └── stats.go │ ├── status │ ├── go16.go │ ├── go17.go │ └── status.go │ ├── stream.go │ ├── tap │ └── tap.go │ ├── trace.go │ └── version.go └── gopkg.in ├── alexcesaro └── statsd.v1 │ ├── LICENSE │ ├── doc.go │ └── statsd.go ├── inf.v0 ├── LICENSE ├── dec.go └── rounder.go ├── ini.v1 ├── LICENSE ├── error.go ├── ini.go ├── key.go ├── parser.go ├── section.go └── struct.go ├── jcmturner ├── aescts.v1 │ ├── LICENSE │ └── aescts.go ├── dnsutils.v1 │ ├── LICENSE │ └── srv.go ├── gokrb5.v7 │ ├── LICENSE │ ├── asn1tools │ │ └── tools.go │ ├── client │ │ ├── ASExchange.go │ │ ├── TGSExchange.go │ │ ├── cache.go │ │ ├── client.go │ │ ├── network.go │ │ ├── passwd.go │ │ ├── session.go │ │ └── settings.go │ ├── config │ │ ├── error.go │ │ ├── hosts.go │ │ └── krb5conf.go │ ├── credentials │ │ ├── ccache.go │ │ └── credentials.go │ ├── crypto │ │ ├── aes128-cts-hmac-sha1-96.go │ │ ├── aes128-cts-hmac-sha256-128.go │ │ ├── aes256-cts-hmac-sha1-96.go │ │ ├── aes256-cts-hmac-sha384-192.go │ │ ├── common │ │ │ └── common.go │ │ ├── crypto.go │ │ ├── des3-cbc-sha1-kd.go │ │ ├── etype │ │ │ └── etype.go │ │ ├── rc4-hmac.go │ │ ├── rfc3961 │ │ │ ├── encryption.go │ │ │ ├── keyDerivation.go │ │ │ └── nfold.go │ │ ├── rfc3962 │ │ │ ├── encryption.go │ │ │ └── keyDerivation.go │ │ ├── rfc4757 │ │ │ ├── checksum.go │ │ │ ├── encryption.go │ │ │ ├── keyDerivation.go │ │ │ └── msgtype.go │ │ └── rfc8009 │ │ │ ├── encryption.go │ │ │ └── keyDerivation.go │ ├── gssapi │ │ ├── MICToken.go │ │ ├── contextFlags.go │ │ ├── gssapi.go │ │ └── wrapToken.go │ ├── iana │ │ ├── addrtype │ │ │ └── constants.go │ │ ├── adtype │ │ │ └── constants.go │ │ ├── asnAppTag │ │ │ └── constants.go │ │ ├── chksumtype │ │ │ └── constants.go │ │ ├── constants.go │ │ ├── errorcode │ │ │ └── constants.go │ │ ├── etypeID │ │ │ └── constants.go │ │ ├── flags │ │ │ └── constants.go │ │ ├── keyusage │ │ │ └── constants.go │ │ ├── msgtype │ │ │ └── constants.go │ │ ├── nametype │ │ │ └── constants.go │ │ └── patype │ │ │ └── constants.go │ ├── kadmin │ │ ├── changepasswddata.go │ │ ├── message.go │ │ └── passwd.go │ ├── keytab │ │ └── keytab.go │ ├── krberror │ │ └── error.go │ ├── messages │ │ ├── APRep.go │ │ ├── APReq.go │ │ ├── KDCRep.go │ │ ├── KDCReq.go │ │ ├── KRBCred.go │ │ ├── KRBError.go │ │ ├── KRBPriv.go │ │ ├── KRBSafe.go │ │ └── Ticket.go │ ├── pac │ │ ├── client_claims.go │ │ ├── client_info.go │ │ ├── credentials_info.go │ │ ├── device_claims.go │ │ ├── device_info.go │ │ ├── kerb_validation_info.go │ │ ├── pac_type.go │ │ ├── s4u_delegation_info.go │ │ ├── signature_data.go │ │ ├── supplemental_cred.go │ │ └── upn_dns_info.go │ └── types │ │ ├── Authenticator.go │ │ ├── AuthorizationData.go │ │ ├── Cryptosystem.go │ │ ├── HostAddress.go │ │ ├── KerberosFlags.go │ │ ├── PAData.go │ │ ├── PrincipalName.go │ │ └── TypedData.go └── rpc.v1 │ ├── LICENSE │ ├── mstypes │ ├── claims.go │ ├── common.go │ ├── filetime.go │ ├── group_membership.go │ ├── kerb_sid_and_attributes.go │ ├── reader.go │ ├── rpc_unicode_string.go │ ├── sid.go │ └── user_session_key.go │ └── ndr │ ├── arrays.go │ ├── decoder.go │ ├── error.go │ ├── header.go │ ├── pipe.go │ ├── primitives.go │ ├── rawbytes.go │ ├── strings.go │ ├── tags.go │ └── union.go ├── macaron.v1 ├── LICENSE ├── context.go ├── fixtures │ └── symlink ├── logger.go ├── macaron.go ├── recovery.go ├── render.go ├── response_writer.go ├── return_handler.go ├── router.go ├── static.go ├── tree.go ├── util_go17.go └── util_go18.go └── yaml.v2 ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── apic.go ├── decode.go ├── emitterc.go ├── encode.go ├── parserc.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codelingoignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/README.md -------------------------------------------------------------------------------- /WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/WORKFLOW.md -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/api.go -------------------------------------------------------------------------------- /api/ccache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/ccache.go -------------------------------------------------------------------------------- /api/ccache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/ccache_test.go -------------------------------------------------------------------------------- /api/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/cluster.go -------------------------------------------------------------------------------- /api/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/config.go -------------------------------------------------------------------------------- /api/dataprocessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/dataprocessor.go -------------------------------------------------------------------------------- /api/dataprocessor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/dataprocessor_test.go -------------------------------------------------------------------------------- /api/graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/graphite.go -------------------------------------------------------------------------------- /api/graphite_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/graphite_proxy.go -------------------------------------------------------------------------------- /api/graphite_req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/graphite_req.go -------------------------------------------------------------------------------- /api/graphite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/graphite_test.go -------------------------------------------------------------------------------- /api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/init.go -------------------------------------------------------------------------------- /api/middleware/capturebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/middleware/capturebody.go -------------------------------------------------------------------------------- /api/middleware/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/middleware/cluster.go -------------------------------------------------------------------------------- /api/middleware/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/middleware/logger.go -------------------------------------------------------------------------------- /api/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/middleware/middleware.go -------------------------------------------------------------------------------- /api/middleware/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/middleware/stats.go -------------------------------------------------------------------------------- /api/middleware/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/middleware/tracer.go -------------------------------------------------------------------------------- /api/models/ccache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/ccache.go -------------------------------------------------------------------------------- /api/models/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/cluster.go -------------------------------------------------------------------------------- /api/models/cluster_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/cluster_gen.go -------------------------------------------------------------------------------- /api/models/cluster_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/cluster_gen_test.go -------------------------------------------------------------------------------- /api/models/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/cluster_test.go -------------------------------------------------------------------------------- /api/models/graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/graphite.go -------------------------------------------------------------------------------- /api/models/graphite_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/graphite_gen.go -------------------------------------------------------------------------------- /api/models/graphite_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/graphite_gen_test.go -------------------------------------------------------------------------------- /api/models/graphite_render_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/graphite_render_meta.go -------------------------------------------------------------------------------- /api/models/graphite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/graphite_test.go -------------------------------------------------------------------------------- /api/models/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/init_test.go -------------------------------------------------------------------------------- /api/models/meta_records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/meta_records.go -------------------------------------------------------------------------------- /api/models/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/node.go -------------------------------------------------------------------------------- /api/models/pointslicepool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/pointslicepool.go -------------------------------------------------------------------------------- /api/models/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/request.go -------------------------------------------------------------------------------- /api/models/request_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/request_gen.go -------------------------------------------------------------------------------- /api/models/request_gen_test.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | // Code generated by github.com/tinylib/msgp DO NOT EDIT. 4 | -------------------------------------------------------------------------------- /api/models/series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/series.go -------------------------------------------------------------------------------- /api/models/series_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/series_gen.go -------------------------------------------------------------------------------- /api/models/series_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/series_gen_test.go -------------------------------------------------------------------------------- /api/models/series_msgp_manual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/series_msgp_manual.go -------------------------------------------------------------------------------- /api/models/series_msgp_manual_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/series_msgp_manual_test.go -------------------------------------------------------------------------------- /api/models/series_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/series_test.go -------------------------------------------------------------------------------- /api/models/storagestats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/storagestats.go -------------------------------------------------------------------------------- /api/models/storagestats_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/storagestats_gen.go -------------------------------------------------------------------------------- /api/models/storagestats_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/models/storagestats_gen_test.go -------------------------------------------------------------------------------- /api/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/pprof.go -------------------------------------------------------------------------------- /api/query_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/query_engine.go -------------------------------------------------------------------------------- /api/query_engine_helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/query_engine_helpers_test.go -------------------------------------------------------------------------------- /api/query_engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/query_engine_test.go -------------------------------------------------------------------------------- /api/response/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/csv.go -------------------------------------------------------------------------------- /api/response/csv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/csv_test.go -------------------------------------------------------------------------------- /api/response/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/error.go -------------------------------------------------------------------------------- /api/response/fast_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/fast_json.go -------------------------------------------------------------------------------- /api/response/fast_json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/fast_json_test.go -------------------------------------------------------------------------------- /api/response/init_test.go: -------------------------------------------------------------------------------- 1 | package response 2 | 3 | var size int 4 | -------------------------------------------------------------------------------- /api/response/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/json.go -------------------------------------------------------------------------------- /api/response/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/json_test.go -------------------------------------------------------------------------------- /api/response/msgp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/msgp.go -------------------------------------------------------------------------------- /api/response/msgp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/msgp_test.go -------------------------------------------------------------------------------- /api/response/msgpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/msgpack.go -------------------------------------------------------------------------------- /api/response/msgpack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/msgpack_test.go -------------------------------------------------------------------------------- /api/response/pickle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/pickle.go -------------------------------------------------------------------------------- /api/response/pickle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/pickle_test.go -------------------------------------------------------------------------------- /api/response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/response.go -------------------------------------------------------------------------------- /api/response/response_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/response/response_test.go -------------------------------------------------------------------------------- /api/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/routes.go -------------------------------------------------------------------------------- /api/seriescycle/seriescycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/seriescycle/seriescycle.go -------------------------------------------------------------------------------- /api/tz/tz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/api/tz/tz.go -------------------------------------------------------------------------------- /archives/archives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/archives/archives.go -------------------------------------------------------------------------------- /archives/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/archives/index.go -------------------------------------------------------------------------------- /batch/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/batch/LICENSE.TXT -------------------------------------------------------------------------------- /batch/aggregator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/batch/aggregator.go -------------------------------------------------------------------------------- /benchmarks/cluster-queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/benchmarks/cluster-queries/README.md -------------------------------------------------------------------------------- /benchmarks/cluster-queries/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/benchmarks/cluster-queries/run.sh -------------------------------------------------------------------------------- /benchmarks/ingest-backfill-speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/benchmarks/ingest-backfill-speed.sh -------------------------------------------------------------------------------- /benchmarks/ingest-mdm-v1-vs-v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/benchmarks/ingest-mdm-v1-vs-v2.sh -------------------------------------------------------------------------------- /bigtable/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/bigtable/util.go -------------------------------------------------------------------------------- /cassandra/cassandra_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cassandra/cassandra_session.go -------------------------------------------------------------------------------- /cassandra/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cassandra/metrics.go -------------------------------------------------------------------------------- /cassandra/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cassandra/util.go -------------------------------------------------------------------------------- /clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/clock/clock.go -------------------------------------------------------------------------------- /clock/clock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/clock/clock_test.go -------------------------------------------------------------------------------- /clock/randomticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/clock/randomticker.go -------------------------------------------------------------------------------- /cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/cluster.go -------------------------------------------------------------------------------- /cluster/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/cluster_test.go -------------------------------------------------------------------------------- /cluster/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/config.go -------------------------------------------------------------------------------- /cluster/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/if.go -------------------------------------------------------------------------------- /cluster/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/manager.go -------------------------------------------------------------------------------- /cluster/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/mock.go -------------------------------------------------------------------------------- /cluster/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/node.go -------------------------------------------------------------------------------- /cluster/nodemode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/nodemode_string.go -------------------------------------------------------------------------------- /cluster/nodestate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/nodestate_string.go -------------------------------------------------------------------------------- /cluster/partitioner/partitioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/partitioner/partitioner.go -------------------------------------------------------------------------------- /cluster/traceable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cluster/traceable.go -------------------------------------------------------------------------------- /cmd/metrictank/metrictank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/metrictank/metrictank.go -------------------------------------------------------------------------------- /cmd/mt-aggs-explain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-aggs-explain/main.go -------------------------------------------------------------------------------- /cmd/mt-backfill/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-backfill/main.go -------------------------------------------------------------------------------- /cmd/mt-control-server/cassandra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-control-server/cassandra.go -------------------------------------------------------------------------------- /cmd/mt-control-server/config.sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-control-server/config.sample.ini -------------------------------------------------------------------------------- /cmd/mt-control-server/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-control-server/handlers.go -------------------------------------------------------------------------------- /cmd/mt-control-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-control-server/main.go -------------------------------------------------------------------------------- /cmd/mt-control-server/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-control-server/producer.go -------------------------------------------------------------------------------- /cmd/mt-control-server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-control-server/server.go -------------------------------------------------------------------------------- /cmd/mt-explain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-explain/main.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/LICENSE -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/README.md -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/agents.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/agginput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/agginput.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/backfill.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/bad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/bad.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/containers.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/datafeed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/datafeed.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/feed.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/getbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/getbuilder.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/rand.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/root.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/stats.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/storageconf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/storageconf.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/util.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/cmd/version.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/main.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/out/carbon/carbon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/out/carbon/carbon.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/out/fanout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/out/fanout.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/out/gnet/gnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/out/gnet/gnet.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/out/offsetfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/out/offsetfilter.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/out/out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/out/out.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/out/periodfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/out/periodfilter.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/out/saramahelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/out/saramahelper.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/out/stdout/stdout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/out/stdout/stdout.go -------------------------------------------------------------------------------- /cmd/mt-fakemetrics/policy/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-fakemetrics/policy/policy.go -------------------------------------------------------------------------------- /cmd/mt-gateway/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-gateway/api.go -------------------------------------------------------------------------------- /cmd/mt-gateway/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-gateway/api_test.go -------------------------------------------------------------------------------- /cmd/mt-gateway/ingest/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-gateway/ingest/metrics.go -------------------------------------------------------------------------------- /cmd/mt-gateway/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-gateway/main.go -------------------------------------------------------------------------------- /cmd/mt-gateway/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-gateway/stats.go -------------------------------------------------------------------------------- /cmd/mt-index-cat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-index-cat/main.go -------------------------------------------------------------------------------- /cmd/mt-index-cat/out/out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-index-cat/out/out.go -------------------------------------------------------------------------------- /cmd/mt-index-deleter/btclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-index-deleter/btclient.go -------------------------------------------------------------------------------- /cmd/mt-index-deleter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-index-deleter/main.go -------------------------------------------------------------------------------- /cmd/mt-index-deleter/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-index-deleter/worker.go -------------------------------------------------------------------------------- /cmd/mt-index-migrate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-index-migrate/main.go -------------------------------------------------------------------------------- /cmd/mt-index-prune/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-index-prune/main.go -------------------------------------------------------------------------------- /cmd/mt-indexdump-rules-analyzer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-indexdump-rules-analyzer/main.go -------------------------------------------------------------------------------- /cmd/mt-kafka-mdm-sniff/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-kafka-mdm-sniff/main.go -------------------------------------------------------------------------------- /cmd/mt-kafka-persist-sniff/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-kafka-persist-sniff/handler.go -------------------------------------------------------------------------------- /cmd/mt-kafka-persist-sniff/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-kafka-persist-sniff/main.go -------------------------------------------------------------------------------- /cmd/mt-keygen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-keygen/main.go -------------------------------------------------------------------------------- /cmd/mt-parrot/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-parrot/generate.go -------------------------------------------------------------------------------- /cmd/mt-parrot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-parrot/main.go -------------------------------------------------------------------------------- /cmd/mt-parrot/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-parrot/monitor.go -------------------------------------------------------------------------------- /cmd/mt-schemas-explain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-schemas-explain/main.go -------------------------------------------------------------------------------- /cmd/mt-split-metrics-by-ttl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-split-metrics-by-ttl/main.go -------------------------------------------------------------------------------- /cmd/mt-store-cat/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cat/chunk.go -------------------------------------------------------------------------------- /cmd/mt-store-cat/chunk_by_ttl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cat/chunk_by_ttl.go -------------------------------------------------------------------------------- /cmd/mt-store-cat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cat/main.go -------------------------------------------------------------------------------- /cmd/mt-store-cat/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cat/match_test.go -------------------------------------------------------------------------------- /cmd/mt-store-cat/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cat/metrics.go -------------------------------------------------------------------------------- /cmd/mt-store-cat/series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cat/series.go -------------------------------------------------------------------------------- /cmd/mt-store-cat/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cat/tables.go -------------------------------------------------------------------------------- /cmd/mt-store-cat/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cat/time.go -------------------------------------------------------------------------------- /cmd/mt-store-cp-experimental/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-store-cp-experimental/main.go -------------------------------------------------------------------------------- /cmd/mt-update-ttl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-update-ttl/main.go -------------------------------------------------------------------------------- /cmd/mt-update-ttl/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-update-ttl/main_test.go -------------------------------------------------------------------------------- /cmd/mt-view-boundaries/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-view-boundaries/main.go -------------------------------------------------------------------------------- /cmd/mt-whisper-importer-reader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-whisper-importer-reader/main.go -------------------------------------------------------------------------------- /cmd/mt-whisper-importer-writer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/cmd/mt-whisper-importer-writer/main.go -------------------------------------------------------------------------------- /codelingo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/codelingo.yaml -------------------------------------------------------------------------------- /community/ALUMNI.md: -------------------------------------------------------------------------------- 1 | # Alumni 2 | -------------------------------------------------------------------------------- /community/CALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/community/CALL.md -------------------------------------------------------------------------------- /conf/aggregations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/aggregations.go -------------------------------------------------------------------------------- /conf/aggregations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/aggregations_test.go -------------------------------------------------------------------------------- /conf/indexrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/indexrules.go -------------------------------------------------------------------------------- /conf/indexrules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/indexrules_test.go -------------------------------------------------------------------------------- /conf/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/init.go -------------------------------------------------------------------------------- /conf/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/method.go -------------------------------------------------------------------------------- /conf/retention.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/retention.go -------------------------------------------------------------------------------- /conf/retention_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/retention_test.go -------------------------------------------------------------------------------- /conf/schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/schemas.go -------------------------------------------------------------------------------- /conf/schemas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/schemas_test.go -------------------------------------------------------------------------------- /conf/schemas_test_files/bad_retention.schemas: -------------------------------------------------------------------------------- 1 | [default] 2 | pattern = .* 3 | retentions = 1s::10min:2 -------------------------------------------------------------------------------- /conf/schemas_test_files/empty.schemas: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/schemas_test_files/simple.schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/conf/schemas_test_files/simple.schemas -------------------------------------------------------------------------------- /consolidation/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/consolidation/LICENSE.TXT -------------------------------------------------------------------------------- /consolidation/consolidate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/consolidation/consolidate.go -------------------------------------------------------------------------------- /consolidation/consolidate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/consolidation/consolidate_test.go -------------------------------------------------------------------------------- /consolidation/consolidation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/consolidation/consolidation.go -------------------------------------------------------------------------------- /consolidation/consolidation_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/consolidation/consolidation_gen.go -------------------------------------------------------------------------------- /consolidation/consolidation_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/consolidation/consolidation_gen_test.go -------------------------------------------------------------------------------- /dashboards/dockprom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/dockprom/LICENSE -------------------------------------------------------------------------------- /dashboards/dockprom/docker_host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/dockprom/docker_host.json -------------------------------------------------------------------------------- /dashboards/extra/carbon-relay-ng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/carbon-relay-ng.json -------------------------------------------------------------------------------- /dashboards/extra/collectd-disk-io.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/collectd-disk-io.json -------------------------------------------------------------------------------- /dashboards/extra/fake-metrics-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/fake-metrics-data.json -------------------------------------------------------------------------------- /dashboards/extra/fake-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/fake-metrics.json -------------------------------------------------------------------------------- /dashboards/extra/graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/graphite.json -------------------------------------------------------------------------------- /dashboards/extra/monitoring-stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/monitoring-stack.json -------------------------------------------------------------------------------- /dashboards/extra/mt-gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/mt-gateway.json -------------------------------------------------------------------------------- /dashboards/extra/rollups-tester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/rollups-tester.json -------------------------------------------------------------------------------- /dashboards/extra/tsdb-gw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/extra/tsdb-gw.json -------------------------------------------------------------------------------- /dashboards/main/metrictank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/dashboards/main/metrictank.json -------------------------------------------------------------------------------- /devdocs/chaos-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/devdocs/chaos-tools.md -------------------------------------------------------------------------------- /devdocs/chunk-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/devdocs/chunk-format.md -------------------------------------------------------------------------------- /devdocs/expr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/devdocs/expr.md -------------------------------------------------------------------------------- /devdocs/render-request-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/devdocs/render-request-handling.md -------------------------------------------------------------------------------- /devdocs/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/devdocs/tracing.md -------------------------------------------------------------------------------- /docker/cfg/statsdaemon.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/cfg/statsdaemon.ini -------------------------------------------------------------------------------- /docker/docker-chaos/carbon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-chaos/carbon.conf -------------------------------------------------------------------------------- /docker/docker-chaos/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-chaos/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-chaos/metrictank.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-chaos/metrictank.ini -------------------------------------------------------------------------------- /docker/docker-chaos/statsdaemon.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-chaos/statsdaemon.ini -------------------------------------------------------------------------------- /docker/docker-cluster-query/carbon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-cluster-query/carbon.conf -------------------------------------------------------------------------------- /docker/docker-cluster/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-cluster/caddy/Caddyfile -------------------------------------------------------------------------------- /docker/docker-cluster/carbon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-cluster/carbon.conf -------------------------------------------------------------------------------- /docker/docker-cluster/metrictank.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-cluster/metrictank.ini -------------------------------------------------------------------------------- /docker/docker-cluster/statsdaemon.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-cluster/statsdaemon.ini -------------------------------------------------------------------------------- /docker/docker-dev-custom-cfg-kafka/gw/auth.ini: -------------------------------------------------------------------------------- 1 | [deadbeef] 2 | orgId = 1 3 | isAdmin = false 4 | -------------------------------------------------------------------------------- /docker/docker-dev/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-dev/bench.sh -------------------------------------------------------------------------------- /docker/docker-dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-dev/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-dev/grafana.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docker/docker-dev/grafana.ini -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/assets/dashboard-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/assets/dashboard-bottom.png -------------------------------------------------------------------------------- /docs/assets/dashboard-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/assets/dashboard-screenshot.png -------------------------------------------------------------------------------- /docs/assets/dashboard-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/assets/dashboard-top.png -------------------------------------------------------------------------------- /docs/assets/metrictank-highlevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/assets/metrictank-highlevel.png -------------------------------------------------------------------------------- /docs/assets/metrictank-highlevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/assets/metrictank-highlevel.xml -------------------------------------------------------------------------------- /docs/assets/metrictank-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/assets/metrictank-logo.png -------------------------------------------------------------------------------- /docs/cassandra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/cassandra.md -------------------------------------------------------------------------------- /docs/clustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/clustering.md -------------------------------------------------------------------------------- /docs/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/community.md -------------------------------------------------------------------------------- /docs/compression-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/compression-tips.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/consolidation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/consolidation.md -------------------------------------------------------------------------------- /docs/data-importing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/data-importing.md -------------------------------------------------------------------------------- /docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/docker.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/graphite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/graphite.md -------------------------------------------------------------------------------- /docs/http-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/http-api.md -------------------------------------------------------------------------------- /docs/inputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/inputs.md -------------------------------------------------------------------------------- /docs/installation-deb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/installation-deb.md -------------------------------------------------------------------------------- /docs/installation-rpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/installation-rpm.md -------------------------------------------------------------------------------- /docs/installation-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/installation-source.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/kafka.md -------------------------------------------------------------------------------- /docs/memory-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/memory-server.md -------------------------------------------------------------------------------- /docs/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/metadata.md -------------------------------------------------------------------------------- /docs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/metrics.md -------------------------------------------------------------------------------- /docs/multi-tenancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/multi-tenancy.md -------------------------------------------------------------------------------- /docs/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/operations.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/quick-start-docker-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/quick-start-docker-cluster.md -------------------------------------------------------------------------------- /docs/quick-start-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/quick-start-docker.md -------------------------------------------------------------------------------- /docs/render-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/render-path.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/startup.md -------------------------------------------------------------------------------- /docs/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/tags.md -------------------------------------------------------------------------------- /docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/docs/tools.md -------------------------------------------------------------------------------- /errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/errors/errors.go -------------------------------------------------------------------------------- /expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/LICENSE -------------------------------------------------------------------------------- /expr/cowcycler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/cowcycler.go -------------------------------------------------------------------------------- /expr/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/data_test.go -------------------------------------------------------------------------------- /expr/datamap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/datamap.go -------------------------------------------------------------------------------- /expr/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/expr.go -------------------------------------------------------------------------------- /expr/exprtype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/exprtype_string.go -------------------------------------------------------------------------------- /expr/func_absolute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_absolute.go -------------------------------------------------------------------------------- /expr/func_absolute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_absolute_test.go -------------------------------------------------------------------------------- /expr/func_aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aggregate.go -------------------------------------------------------------------------------- /expr/func_aggregate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aggregate_test.go -------------------------------------------------------------------------------- /expr/func_aggregatewithwildcards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aggregatewithwildcards.go -------------------------------------------------------------------------------- /expr/func_alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_alias.go -------------------------------------------------------------------------------- /expr/func_alias_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_alias_test.go -------------------------------------------------------------------------------- /expr/func_aliasbymetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aliasbymetric.go -------------------------------------------------------------------------------- /expr/func_aliasbymetric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aliasbymetric_test.go -------------------------------------------------------------------------------- /expr/func_aliasbynode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aliasbynode.go -------------------------------------------------------------------------------- /expr/func_aliasbynode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aliasbynode_test.go -------------------------------------------------------------------------------- /expr/func_aliassub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aliassub.go -------------------------------------------------------------------------------- /expr/func_aliassub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aliassub_test.go -------------------------------------------------------------------------------- /expr/func_aspercent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aspercent.go -------------------------------------------------------------------------------- /expr/func_aspercent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_aspercent_test.go -------------------------------------------------------------------------------- /expr/func_consolidateby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_consolidateby.go -------------------------------------------------------------------------------- /expr/func_consolidateby_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_consolidateby_test.go -------------------------------------------------------------------------------- /expr/func_constantline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_constantline.go -------------------------------------------------------------------------------- /expr/func_constantline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_constantline_test.go -------------------------------------------------------------------------------- /expr/func_countseries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_countseries.go -------------------------------------------------------------------------------- /expr/func_countseries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_countseries_test.go -------------------------------------------------------------------------------- /expr/func_derivative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_derivative.go -------------------------------------------------------------------------------- /expr/func_derivative_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_derivative_test.go -------------------------------------------------------------------------------- /expr/func_divideseries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_divideseries.go -------------------------------------------------------------------------------- /expr/func_divideseries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_divideseries_test.go -------------------------------------------------------------------------------- /expr/func_divideserieslists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_divideserieslists.go -------------------------------------------------------------------------------- /expr/func_divideserieslists_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_divideserieslists_test.go -------------------------------------------------------------------------------- /expr/func_fallbackSeries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_fallbackSeries.go -------------------------------------------------------------------------------- /expr/func_fallbackseries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_fallbackseries_test.go -------------------------------------------------------------------------------- /expr/func_filterseries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_filterseries.go -------------------------------------------------------------------------------- /expr/func_filterseries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_filterseries_test.go -------------------------------------------------------------------------------- /expr/func_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_get.go -------------------------------------------------------------------------------- /expr/func_grep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_grep.go -------------------------------------------------------------------------------- /expr/func_grep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_grep_test.go -------------------------------------------------------------------------------- /expr/func_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_group.go -------------------------------------------------------------------------------- /expr/func_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_group_test.go -------------------------------------------------------------------------------- /expr/func_groupbynodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_groupbynodes.go -------------------------------------------------------------------------------- /expr/func_groupbynodes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_groupbynodes_test.go -------------------------------------------------------------------------------- /expr/func_groupbytags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_groupbytags.go -------------------------------------------------------------------------------- /expr/func_groupbytags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_groupbytags_test.go -------------------------------------------------------------------------------- /expr/func_highestlowest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_highestlowest.go -------------------------------------------------------------------------------- /expr/func_highestlowest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_highestlowest_test.go -------------------------------------------------------------------------------- /expr/func_integral.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_integral.go -------------------------------------------------------------------------------- /expr/func_integral_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_integral_test.go -------------------------------------------------------------------------------- /expr/func_invert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_invert.go -------------------------------------------------------------------------------- /expr/func_invert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_invert_test.go -------------------------------------------------------------------------------- /expr/func_isnonnull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_isnonnull.go -------------------------------------------------------------------------------- /expr/func_isnonnull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_isnonnull_test.go -------------------------------------------------------------------------------- /expr/func_keeplastvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_keeplastvalue.go -------------------------------------------------------------------------------- /expr/func_keeplastvalue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_keeplastvalue_test.go -------------------------------------------------------------------------------- /expr/func_linearregression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_linearregression.go -------------------------------------------------------------------------------- /expr/func_linearregression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_linearregression_test.go -------------------------------------------------------------------------------- /expr/func_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_log.go -------------------------------------------------------------------------------- /expr/func_log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_log_test.go -------------------------------------------------------------------------------- /expr/func_minmax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_minmax.go -------------------------------------------------------------------------------- /expr/func_minmax_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_minmax_test.go -------------------------------------------------------------------------------- /expr/func_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_mock_test.go -------------------------------------------------------------------------------- /expr/func_movingwindow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_movingwindow.go -------------------------------------------------------------------------------- /expr/func_movingwindow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_movingwindow_test.go -------------------------------------------------------------------------------- /expr/func_nonnegativederivative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_nonnegativederivative.go -------------------------------------------------------------------------------- /expr/func_nonnegativederivative_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_nonnegativederivative_test.go -------------------------------------------------------------------------------- /expr/func_offset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_offset.go -------------------------------------------------------------------------------- /expr/func_offset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_offset_test.go -------------------------------------------------------------------------------- /expr/func_offsettozero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_offsettozero.go -------------------------------------------------------------------------------- /expr/func_offsettozero_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_offsettozero_test.go -------------------------------------------------------------------------------- /expr/func_persecond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_persecond.go -------------------------------------------------------------------------------- /expr/func_persecond_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_persecond_test.go -------------------------------------------------------------------------------- /expr/func_removeabovebelowpercentile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_removeabovebelowpercentile.go -------------------------------------------------------------------------------- /expr/func_removeabovebelowvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_removeabovebelowvalue.go -------------------------------------------------------------------------------- /expr/func_removeabovebelowvalue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_removeabovebelowvalue_test.go -------------------------------------------------------------------------------- /expr/func_removeemptyseries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_removeemptyseries.go -------------------------------------------------------------------------------- /expr/func_removeemptyseries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_removeemptyseries_test.go -------------------------------------------------------------------------------- /expr/func_removezeroseries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_removezeroseries.go -------------------------------------------------------------------------------- /expr/func_removezeroseries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_removezeroseries_test.go -------------------------------------------------------------------------------- /expr/func_round.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_round.go -------------------------------------------------------------------------------- /expr/func_round_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_round_test.go -------------------------------------------------------------------------------- /expr/func_scale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_scale.go -------------------------------------------------------------------------------- /expr/func_scale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_scale_test.go -------------------------------------------------------------------------------- /expr/func_scaletoseconds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_scaletoseconds.go -------------------------------------------------------------------------------- /expr/func_scaletoseconds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_scaletoseconds_test.go -------------------------------------------------------------------------------- /expr/func_smartsummarize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_smartsummarize.go -------------------------------------------------------------------------------- /expr/func_sortby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_sortby.go -------------------------------------------------------------------------------- /expr/func_sortby_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_sortby_test.go -------------------------------------------------------------------------------- /expr/func_sortbyname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_sortbyname.go -------------------------------------------------------------------------------- /expr/func_sortbyname_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_sortbyname_test.go -------------------------------------------------------------------------------- /expr/func_substr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_substr.go -------------------------------------------------------------------------------- /expr/func_substr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_substr_test.go -------------------------------------------------------------------------------- /expr/func_summarize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_summarize.go -------------------------------------------------------------------------------- /expr/func_summarize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_summarize_test.go -------------------------------------------------------------------------------- /expr/func_timeshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_timeshift.go -------------------------------------------------------------------------------- /expr/func_timeshift_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_timeshift_test.go -------------------------------------------------------------------------------- /expr/func_transformnull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_transformnull.go -------------------------------------------------------------------------------- /expr/func_transformnull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_transformnull_test.go -------------------------------------------------------------------------------- /expr/func_unique.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_unique.go -------------------------------------------------------------------------------- /expr/func_unique_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/func_unique_test.go -------------------------------------------------------------------------------- /expr/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/funcs.go -------------------------------------------------------------------------------- /expr/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/init_test.go -------------------------------------------------------------------------------- /expr/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/normalize.go -------------------------------------------------------------------------------- /expr/normalize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/normalize_test.go -------------------------------------------------------------------------------- /expr/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/parse.go -------------------------------------------------------------------------------- /expr/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/parse_test.go -------------------------------------------------------------------------------- /expr/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/plan.go -------------------------------------------------------------------------------- /expr/plan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/plan_test.go -------------------------------------------------------------------------------- /expr/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/pool.go -------------------------------------------------------------------------------- /expr/seriesaggregator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/seriesaggregator_test.go -------------------------------------------------------------------------------- /expr/seriesaggregators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/seriesaggregators.go -------------------------------------------------------------------------------- /expr/tagquery/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression.go -------------------------------------------------------------------------------- /expr/tagquery/expression_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_common.go -------------------------------------------------------------------------------- /expr/tagquery/expression_equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_equal.go -------------------------------------------------------------------------------- /expr/tagquery/expression_has_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_has_tag.go -------------------------------------------------------------------------------- /expr/tagquery/expression_match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_match.go -------------------------------------------------------------------------------- /expr/tagquery/expression_match_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_match_all.go -------------------------------------------------------------------------------- /expr/tagquery/expression_match_none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_match_none.go -------------------------------------------------------------------------------- /expr/tagquery/expression_match_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_match_tag.go -------------------------------------------------------------------------------- /expr/tagquery/expression_not_equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_not_equal.go -------------------------------------------------------------------------------- /expr/tagquery/expression_not_has_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_not_has_tag.go -------------------------------------------------------------------------------- /expr/tagquery/expression_not_match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_not_match.go -------------------------------------------------------------------------------- /expr/tagquery/expression_prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_prefix.go -------------------------------------------------------------------------------- /expr/tagquery/expression_prefix_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_prefix_tag.go -------------------------------------------------------------------------------- /expr/tagquery/expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/expression_test.go -------------------------------------------------------------------------------- /expr/tagquery/meta_tag_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/meta_tag_record.go -------------------------------------------------------------------------------- /expr/tagquery/meta_tag_record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/meta_tag_record_test.go -------------------------------------------------------------------------------- /expr/tagquery/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/query.go -------------------------------------------------------------------------------- /expr/tagquery/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/query_test.go -------------------------------------------------------------------------------- /expr/tagquery/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/tag.go -------------------------------------------------------------------------------- /expr/tagquery/tag_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/tag_gen.go -------------------------------------------------------------------------------- /expr/tagquery/tag_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/tag_gen_test.go -------------------------------------------------------------------------------- /expr/tagquery/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/tag_test.go -------------------------------------------------------------------------------- /expr/tagquery/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/tagquery/utils.go -------------------------------------------------------------------------------- /expr/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/test.go -------------------------------------------------------------------------------- /expr/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/types.go -------------------------------------------------------------------------------- /expr/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/validator.go -------------------------------------------------------------------------------- /expr/xfilesfactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/expr/xfilesfactor.go -------------------------------------------------------------------------------- /idx/bigtable/bigtable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/bigtable/bigtable.go -------------------------------------------------------------------------------- /idx/bigtable/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/bigtable/config.go -------------------------------------------------------------------------------- /idx/bigtable/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/bigtable/schema.go -------------------------------------------------------------------------------- /idx/cassandra/cassandra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/cassandra/cassandra.go -------------------------------------------------------------------------------- /idx/cassandra/cassandra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/cassandra/cassandra_test.go -------------------------------------------------------------------------------- /idx/cassandra/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/cassandra/config.go -------------------------------------------------------------------------------- /idx/idx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/idx.go -------------------------------------------------------------------------------- /idx/idx_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/idx_gen.go -------------------------------------------------------------------------------- /idx/idx_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/idx_gen_test.go -------------------------------------------------------------------------------- /idx/memory/find_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/find_cache.go -------------------------------------------------------------------------------- /idx/memory/find_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/find_cache_test.go -------------------------------------------------------------------------------- /idx/memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/memory.go -------------------------------------------------------------------------------- /idx/memory/memory_find_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/memory_find_test.go -------------------------------------------------------------------------------- /idx/memory/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/memory_test.go -------------------------------------------------------------------------------- /idx/memory/meta_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/meta_tags.go -------------------------------------------------------------------------------- /idx/memory/meta_tags_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/meta_tags_query_test.go -------------------------------------------------------------------------------- /idx/memory/meta_tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/meta_tags_test.go -------------------------------------------------------------------------------- /idx/memory/partitioned_idx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/partitioned_idx.go -------------------------------------------------------------------------------- /idx/memory/priority_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/priority_lock.go -------------------------------------------------------------------------------- /idx/memory/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/stats.go -------------------------------------------------------------------------------- /idx/memory/tag_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/tag_query.go -------------------------------------------------------------------------------- /idx/memory/tag_query_id_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/tag_query_id_filter.go -------------------------------------------------------------------------------- /idx/memory/tag_query_id_filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/tag_query_id_filter_test.go -------------------------------------------------------------------------------- /idx/memory/tag_query_id_selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/tag_query_id_selector.go -------------------------------------------------------------------------------- /idx/memory/tag_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/tag_query_test.go -------------------------------------------------------------------------------- /idx/memory/time_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/time_limit.go -------------------------------------------------------------------------------- /idx/memory/time_limit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/time_limit_test.go -------------------------------------------------------------------------------- /idx/memory/write_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/write_queue.go -------------------------------------------------------------------------------- /idx/memory/write_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/memory/write_queue_test.go -------------------------------------------------------------------------------- /idx/metatags/bigtable/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/metatags/bigtable/config.go -------------------------------------------------------------------------------- /idx/metatags/cassandra/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/metatags/cassandra/config.go -------------------------------------------------------------------------------- /idx/metatags/meta_record_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/metatags/meta_record_status.go -------------------------------------------------------------------------------- /idx/metatags/meta_record_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/idx/metatags/meta_record_status_test.go -------------------------------------------------------------------------------- /input/carbon/carbon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/input/carbon/carbon.go -------------------------------------------------------------------------------- /input/carbon/intervalgetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/input/carbon/intervalgetter.go -------------------------------------------------------------------------------- /input/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/input/input.go -------------------------------------------------------------------------------- /input/input_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/input/input_test.go -------------------------------------------------------------------------------- /input/kafkamdm/kafkamdm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/input/kafkamdm/kafkamdm.go -------------------------------------------------------------------------------- /input/kafkamdm/lag_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/input/kafkamdm/lag_monitor.go -------------------------------------------------------------------------------- /input/kafkamdm/lag_monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/input/kafkamdm/lag_monitor_test.go -------------------------------------------------------------------------------- /input/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/input/plugin.go -------------------------------------------------------------------------------- /jaeger/jaeger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/jaeger/jaeger.go -------------------------------------------------------------------------------- /kafka/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/kafka/cfg.go -------------------------------------------------------------------------------- /kafka/partitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/kafka/partitions.go -------------------------------------------------------------------------------- /kafka/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/kafka/scram.go -------------------------------------------------------------------------------- /logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/logger/logger.go -------------------------------------------------------------------------------- /mdata/aggmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/aggmetric.go -------------------------------------------------------------------------------- /mdata/aggmetric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/aggmetric_test.go -------------------------------------------------------------------------------- /mdata/aggmetrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/aggmetrics.go -------------------------------------------------------------------------------- /mdata/aggmetrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/aggmetrics_test.go -------------------------------------------------------------------------------- /mdata/aggregation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/aggregation.go -------------------------------------------------------------------------------- /mdata/aggregator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/aggregator.go -------------------------------------------------------------------------------- /mdata/aggregator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/aggregator_test.go -------------------------------------------------------------------------------- /mdata/cache/accnt/flat_accnt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/accnt/flat_accnt.go -------------------------------------------------------------------------------- /mdata/cache/accnt/flat_accnt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/accnt/flat_accnt_test.go -------------------------------------------------------------------------------- /mdata/cache/accnt/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/accnt/if.go -------------------------------------------------------------------------------- /mdata/cache/accnt/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/accnt/lru.go -------------------------------------------------------------------------------- /mdata/cache/accnt/lru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/accnt/lru_test.go -------------------------------------------------------------------------------- /mdata/cache/accnt/sort_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/accnt/sort_uint32.go -------------------------------------------------------------------------------- /mdata/cache/accnt/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/accnt/stats.go -------------------------------------------------------------------------------- /mdata/cache/cache_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/cache_mock.go -------------------------------------------------------------------------------- /mdata/cache/ccache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/ccache.go -------------------------------------------------------------------------------- /mdata/cache/ccache_chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/ccache_chunk.go -------------------------------------------------------------------------------- /mdata/cache/ccache_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/ccache_metric.go -------------------------------------------------------------------------------- /mdata/cache/ccache_metric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/ccache_metric_test.go -------------------------------------------------------------------------------- /mdata/cache/ccache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/ccache_test.go -------------------------------------------------------------------------------- /mdata/cache/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/if.go -------------------------------------------------------------------------------- /mdata/cache/resulttype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cache/resulttype_string.go -------------------------------------------------------------------------------- /mdata/chunk/archive/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/archive/archive.go -------------------------------------------------------------------------------- /mdata/chunk/archive/archive_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/archive/archive_gen.go -------------------------------------------------------------------------------- /mdata/chunk/archive/archive_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/archive/archive_gen_test.go -------------------------------------------------------------------------------- /mdata/chunk/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/chunk.go -------------------------------------------------------------------------------- /mdata/chunk/chunk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/chunk_test.go -------------------------------------------------------------------------------- /mdata/chunk/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/encode.go -------------------------------------------------------------------------------- /mdata/chunk/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/format.go -------------------------------------------------------------------------------- /mdata/chunk/format_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/format_string.go -------------------------------------------------------------------------------- /mdata/chunk/itergen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/itergen.go -------------------------------------------------------------------------------- /mdata/chunk/itergen_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/itergen_gen.go -------------------------------------------------------------------------------- /mdata/chunk/itergen_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/itergen_gen_test.go -------------------------------------------------------------------------------- /mdata/chunk/spans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/spans.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/LICENSE -------------------------------------------------------------------------------- /mdata/chunk/tsz/bstream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/bstream.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/finish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/finish.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/fuzz.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/iter.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/series_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/series_test.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/testdata/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/testdata/data.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/tsz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/tsz.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/tsz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/tsz_test.go -------------------------------------------------------------------------------- /mdata/chunk/tsz/tszlong.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/chunk/tsz/tszlong.go -------------------------------------------------------------------------------- /mdata/cwr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cwr.go -------------------------------------------------------------------------------- /mdata/cwr_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cwr_gen.go -------------------------------------------------------------------------------- /mdata/cwr_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/cwr_gen_test.go -------------------------------------------------------------------------------- /mdata/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/errors/errors.go -------------------------------------------------------------------------------- /mdata/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/helper.go -------------------------------------------------------------------------------- /mdata/ifaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/ifaces.go -------------------------------------------------------------------------------- /mdata/importer/archive_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/archive_request.go -------------------------------------------------------------------------------- /mdata/importer/archive_request_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/archive_request_gen.go -------------------------------------------------------------------------------- /mdata/importer/chunk_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/chunk_encoder.go -------------------------------------------------------------------------------- /mdata/importer/chunk_encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/chunk_encoder_test.go -------------------------------------------------------------------------------- /mdata/importer/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/converter.go -------------------------------------------------------------------------------- /mdata/importer/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/converter_test.go -------------------------------------------------------------------------------- /mdata/importer/cwr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/cwr.go -------------------------------------------------------------------------------- /mdata/importer/cwr_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/cwr_gen.go -------------------------------------------------------------------------------- /mdata/importer/cwr_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/importer/cwr_gen_test.go -------------------------------------------------------------------------------- /mdata/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/init.go -------------------------------------------------------------------------------- /mdata/notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/notifier.go -------------------------------------------------------------------------------- /mdata/notifierKafka/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/notifierKafka/cfg.go -------------------------------------------------------------------------------- /mdata/notifierKafka/notifierKafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/notifierKafka/notifierKafka.go -------------------------------------------------------------------------------- /mdata/notifierKafka/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/notifierKafka/scram.go -------------------------------------------------------------------------------- /mdata/reorder_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/reorder_buffer.go -------------------------------------------------------------------------------- /mdata/reorder_buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/reorder_buffer_test.go -------------------------------------------------------------------------------- /mdata/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/result.go -------------------------------------------------------------------------------- /mdata/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/schema.go -------------------------------------------------------------------------------- /mdata/store_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/mdata/store_mock.go -------------------------------------------------------------------------------- /metrictank-sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/metrictank-sample.ini -------------------------------------------------------------------------------- /pointslicepool/pointslicepool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/pointslicepool/pointslicepool.go -------------------------------------------------------------------------------- /publish/kafka/keycache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/publish/kafka/keycache/cache.go -------------------------------------------------------------------------------- /publish/kafka/keycache/keycache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/publish/kafka/keycache/keycache.go -------------------------------------------------------------------------------- /publish/kafka/keycache/shard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/publish/kafka/keycache/shard.go -------------------------------------------------------------------------------- /publish/kafka/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/publish/kafka/publish.go -------------------------------------------------------------------------------- /publish/kafka/publish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/publish/kafka/publish_test.go -------------------------------------------------------------------------------- /publish/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/publish/publish.go -------------------------------------------------------------------------------- /schema/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/LICENSE -------------------------------------------------------------------------------- /schema/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/archive.go -------------------------------------------------------------------------------- /schema/archive_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/archive_gen.go -------------------------------------------------------------------------------- /schema/archive_gen_test.go: -------------------------------------------------------------------------------- 1 | package schema 2 | 3 | // Code generated by github.com/tinylib/msgp DO NOT EDIT. 4 | -------------------------------------------------------------------------------- /schema/archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/archive_test.go -------------------------------------------------------------------------------- /schema/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/control.go -------------------------------------------------------------------------------- /schema/control_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/control_gen.go -------------------------------------------------------------------------------- /schema/control_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/control_gen_test.go -------------------------------------------------------------------------------- /schema/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/key.go -------------------------------------------------------------------------------- /schema/key_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/key_gen.go -------------------------------------------------------------------------------- /schema/key_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/key_gen_test.go -------------------------------------------------------------------------------- /schema/key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/key_test.go -------------------------------------------------------------------------------- /schema/method_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/method_string.go -------------------------------------------------------------------------------- /schema/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metric.go -------------------------------------------------------------------------------- /schema/metric_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metric_gen.go -------------------------------------------------------------------------------- /schema/metric_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metric_gen_test.go -------------------------------------------------------------------------------- /schema/metric_serialization_gob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metric_serialization_gob_test.go -------------------------------------------------------------------------------- /schema/metric_serialization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metric_serialization_test.go -------------------------------------------------------------------------------- /schema/metric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metric_test.go -------------------------------------------------------------------------------- /schema/metricpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metricpoint.go -------------------------------------------------------------------------------- /schema/metricpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metricpoint_test.go -------------------------------------------------------------------------------- /schema/metricpoint_withoutorg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/metricpoint_withoutorg_test.go -------------------------------------------------------------------------------- /schema/msg/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/msg/format.go -------------------------------------------------------------------------------- /schema/msg/format_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/msg/format_string.go -------------------------------------------------------------------------------- /schema/msg/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/msg/msg.go -------------------------------------------------------------------------------- /schema/msg/msg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/msg/msg_test.go -------------------------------------------------------------------------------- /schema/operation_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/operation_string.go -------------------------------------------------------------------------------- /schema/partition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/partition.go -------------------------------------------------------------------------------- /schema/partition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/partition_test.go -------------------------------------------------------------------------------- /schema/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/point.go -------------------------------------------------------------------------------- /schema/point_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/point_gen.go -------------------------------------------------------------------------------- /schema/point_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/point_gen_test.go -------------------------------------------------------------------------------- /schema/reslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/reslice.go -------------------------------------------------------------------------------- /schema/reslice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/schema/reslice_test.go -------------------------------------------------------------------------------- /scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/Dockerfile -------------------------------------------------------------------------------- /scripts/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/Gemfile -------------------------------------------------------------------------------- /scripts/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/Gemfile.lock -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/build_docker.sh -------------------------------------------------------------------------------- /scripts/build_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/build_packages.sh -------------------------------------------------------------------------------- /scripts/config/index-rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/config/index-rules.conf -------------------------------------------------------------------------------- /scripts/config/metrictank-docker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/config/metrictank-docker.ini -------------------------------------------------------------------------------- /scripts/config/metrictank-package.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/config/metrictank-package.ini -------------------------------------------------------------------------------- /scripts/config/mt-gateway.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/config/mt-gateway.ini -------------------------------------------------------------------------------- /scripts/config/schema-idx-scylladb.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/config/schema-idx-scylladb.toml -------------------------------------------------------------------------------- /scripts/config/storage-aggregation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/config/storage-aggregation.conf -------------------------------------------------------------------------------- /scripts/config/storage-schemas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/config/storage-schemas.conf -------------------------------------------------------------------------------- /scripts/config/upstart/metrictank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/config/upstart/metrictank -------------------------------------------------------------------------------- /scripts/depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/depends.sh -------------------------------------------------------------------------------- /scripts/dev/config-to-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/dev/config-to-doc.sh -------------------------------------------------------------------------------- /scripts/dev/format-stackdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/dev/format-stackdump.sh -------------------------------------------------------------------------------- /scripts/dev/sync-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/dev/sync-configs.sh -------------------------------------------------------------------------------- /scripts/dev/tools-to-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/dev/tools-to-doc.sh -------------------------------------------------------------------------------- /scripts/dlv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/dlv/Dockerfile -------------------------------------------------------------------------------- /scripts/k8s/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/k8s/Dockerfile -------------------------------------------------------------------------------- /scripts/k8s/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/k8s/entrypoint.sh -------------------------------------------------------------------------------- /scripts/k8s/getOffset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/k8s/getOffset.py -------------------------------------------------------------------------------- /scripts/k8s_dlv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/k8s_dlv/Dockerfile -------------------------------------------------------------------------------- /scripts/k8s_dlv/entrypoint_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/k8s_dlv/entrypoint_debug.sh -------------------------------------------------------------------------------- /scripts/k8s_dlv/getOffset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/k8s_dlv/getOffset.py -------------------------------------------------------------------------------- /scripts/push/dockerhub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/push/dockerhub.sh -------------------------------------------------------------------------------- /scripts/push/extra-qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/push/extra-qa.sh -------------------------------------------------------------------------------- /scripts/push/gcr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/push/gcr.sh -------------------------------------------------------------------------------- /scripts/push/packagecloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/push/packagecloud.sh -------------------------------------------------------------------------------- /scripts/qa-subjective/cyclo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa-subjective/cyclo.sh -------------------------------------------------------------------------------- /scripts/qa-subjective/errcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa-subjective/errcheck.sh -------------------------------------------------------------------------------- /scripts/qa-subjective/golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa-subjective/golint.sh -------------------------------------------------------------------------------- /scripts/qa-subjective/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa-subjective/vet.sh -------------------------------------------------------------------------------- /scripts/qa/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/docs.sh -------------------------------------------------------------------------------- /scripts/qa/gitignore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/gitignore.sh -------------------------------------------------------------------------------- /scripts/qa/go-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/go-generate.sh -------------------------------------------------------------------------------- /scripts/qa/gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/gofmt.sh -------------------------------------------------------------------------------- /scripts/qa/ineffassign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/ineffassign.sh -------------------------------------------------------------------------------- /scripts/qa/misspell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/misspell.sh -------------------------------------------------------------------------------- /scripts/qa/unused.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/unused.sh -------------------------------------------------------------------------------- /scripts/qa/vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/vendor.sh -------------------------------------------------------------------------------- /scripts/qa/vet-high-confidence.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/qa/vet-high-confidence.sh -------------------------------------------------------------------------------- /scripts/util/wait_for_endpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/util/wait_for_endpoint.sh -------------------------------------------------------------------------------- /scripts/util/wait_for_endpoint_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/util/wait_for_endpoint_debug.sh -------------------------------------------------------------------------------- /scripts/version-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/scripts/version-tag.sh -------------------------------------------------------------------------------- /stacktest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/README.md -------------------------------------------------------------------------------- /stacktest/docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/docker/docker.go -------------------------------------------------------------------------------- /stacktest/fakemetrics/fakemetrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/fakemetrics/fakemetrics.go -------------------------------------------------------------------------------- /stacktest/grafana/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/grafana/grafana.go -------------------------------------------------------------------------------- /stacktest/graphite/comparator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/graphite/comparator.go -------------------------------------------------------------------------------- /stacktest/graphite/graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/graphite/graphite.go -------------------------------------------------------------------------------- /stacktest/graphite/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/graphite/response.go -------------------------------------------------------------------------------- /stacktest/graphite/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/graphite/validate.go -------------------------------------------------------------------------------- /stacktest/tests/chaos_cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/tests/chaos_cluster/README.md -------------------------------------------------------------------------------- /stacktest/tests/chaos_cluster/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/tests/chaos_cluster/notes -------------------------------------------------------------------------------- /stacktest/tests/end2end_carbon/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/tests/end2end_carbon/notes -------------------------------------------------------------------------------- /stacktest/track/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stacktest/track/tracker.go -------------------------------------------------------------------------------- /stats/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/bool.go -------------------------------------------------------------------------------- /stats/config/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/config/init.go -------------------------------------------------------------------------------- /stats/counter32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/counter32.go -------------------------------------------------------------------------------- /stats/counter64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/counter64.go -------------------------------------------------------------------------------- /stats/counterrate32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/counterrate32.go -------------------------------------------------------------------------------- /stats/gauge32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/gauge32.go -------------------------------------------------------------------------------- /stats/gauge64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/gauge64.go -------------------------------------------------------------------------------- /stats/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/init.go -------------------------------------------------------------------------------- /stats/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/kafka.go -------------------------------------------------------------------------------- /stats/latencyhistogram12h32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/latencyhistogram12h32.go -------------------------------------------------------------------------------- /stats/latencyhistogram15s32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/latencyhistogram15s32.go -------------------------------------------------------------------------------- /stats/memory_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/memory_reporter.go -------------------------------------------------------------------------------- /stats/meter32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/meter32.go -------------------------------------------------------------------------------- /stats/out_devnull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/out_devnull.go -------------------------------------------------------------------------------- /stats/out_graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/out_graphite.go -------------------------------------------------------------------------------- /stats/process_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/process_reporter.go -------------------------------------------------------------------------------- /stats/range32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/range32.go -------------------------------------------------------------------------------- /stats/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/registry.go -------------------------------------------------------------------------------- /stats/timediff_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/timediff_reporter.go -------------------------------------------------------------------------------- /stats/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/stats/write.go -------------------------------------------------------------------------------- /store/bigtable/bigtable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/store/bigtable/bigtable.go -------------------------------------------------------------------------------- /store/bigtable/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/store/bigtable/config.go -------------------------------------------------------------------------------- /store/cassandra/cassandra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/store/cassandra/cassandra.go -------------------------------------------------------------------------------- /store/cassandra/cassandra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/store/cassandra/cassandra_test.go -------------------------------------------------------------------------------- /store/cassandra/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/store/cassandra/config.go -------------------------------------------------------------------------------- /store/cassandra/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/store/cassandra/table.go -------------------------------------------------------------------------------- /store/store_devnull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/store/store_devnull.go -------------------------------------------------------------------------------- /test/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/test/key.go -------------------------------------------------------------------------------- /test/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/test/path.go -------------------------------------------------------------------------------- /test/points.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/test/points.go -------------------------------------------------------------------------------- /test/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/test/tracer.go -------------------------------------------------------------------------------- /tracing/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/tracing/tracing.go -------------------------------------------------------------------------------- /util/align/align.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/align/align.go -------------------------------------------------------------------------------- /util/align/align_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/align/align_test.go -------------------------------------------------------------------------------- /util/atomic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/atomic.go -------------------------------------------------------------------------------- /util/buffer_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/buffer_pool.go -------------------------------------------------------------------------------- /util/combinations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/combinations.go -------------------------------------------------------------------------------- /util/combinations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/combinations_test.go -------------------------------------------------------------------------------- /util/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/compression.go -------------------------------------------------------------------------------- /util/flag_parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/flag_parsers.go -------------------------------------------------------------------------------- /util/flag_parsers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/flag_parsers_test.go -------------------------------------------------------------------------------- /util/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/flags.go -------------------------------------------------------------------------------- /util/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/flags_test.go -------------------------------------------------------------------------------- /util/fnv32a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/fnv32a.go -------------------------------------------------------------------------------- /util/fnv64a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/fnv64a.go -------------------------------------------------------------------------------- /util/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/helper.go -------------------------------------------------------------------------------- /util/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/limiter.go -------------------------------------------------------------------------------- /util/limiter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/limiter_test.go -------------------------------------------------------------------------------- /util/naturalsort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/naturalsort.go -------------------------------------------------------------------------------- /util/naturalsort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/naturalsort_test.go -------------------------------------------------------------------------------- /util/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/template.go -------------------------------------------------------------------------------- /util/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/timeout.go -------------------------------------------------------------------------------- /util/timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/timeout_test.go -------------------------------------------------------------------------------- /util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/util.go -------------------------------------------------------------------------------- /util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/util/util_test.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/cloud.google.com/go/AUTHORS -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/cloud.google.com/go/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.default: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/sysvinit-debian/docker.default -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.init: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/sysvinit-debian/docker -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.upstart: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/upstart/docker.conf -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.udev: -------------------------------------------------------------------------------- 1 | ../../../contrib/udev/80-docker.rules -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/project/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/eapache/queue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/eapache/queue/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/glacjay/goini/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/glacjay/goini/ini.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/conn.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/errors.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/events.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/frame.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/logger.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/ring.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/token.go -------------------------------------------------------------------------------- /vendor/github.com/gocql/gocql/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gocql/gocql/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/jtolds/gls/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/gid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/jtolds/gls/gid.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/client.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/dnssec.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/edns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/format.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/labels.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/rawmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/rawmsg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/scan.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/server.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/sig0.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/tsig.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/types.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/update.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/ztypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/miekg/dns/ztypes.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/pierrec/lz4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/lz4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/pierrec/lz4/lz4.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/exe: -------------------------------------------------------------------------------- 1 | /usr/bin/vim -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/10: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/ns/mnt: -------------------------------------------------------------------------------- 1 | mnt:[4026531840] -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/ns/net: -------------------------------------------------------------------------------- 1 | net:[4026531993] -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/4: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/self: -------------------------------------------------------------------------------- 1 | 26231 -------------------------------------------------------------------------------- /vendor/github.com/raintank/met/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/raintank/met/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/rs/cors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/rs/cors/cors.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/rs/cors/utils.go -------------------------------------------------------------------------------- /vendor/github.com/rs/xhandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/rs/xhandler/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sean-/seed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/sean-/seed/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sean-/seed/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/sean-/seed/init.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/cmd.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/dir.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/file.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/html.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/http.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/math.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/path.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/time.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/unknwon/com/url.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/xdg/scram/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/xdg/scram/client.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/xdg/scram/common.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/xdg/scram/doc.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/xdg/scram/parse.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/xdg/scram/scram.go -------------------------------------------------------------------------------- /vendor/github.com/xdg/scram/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/github.com/xdg/scram/server.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sync/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/macaron.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/macaron.v1/context.go -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/fixtures/symlink: -------------------------------------------------------------------------------- 1 | basic -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/macaron.v1/logger.go -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/macaron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/macaron.v1/macaron.go -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/macaron.v1/render.go -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/macaron.v1/router.go -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/macaron.v1/static.go -------------------------------------------------------------------------------- /vendor/gopkg.in/macaron.v1/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/macaron.v1/tree.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/metrictank/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go --------------------------------------------------------------------------------