├── .envrc ├── bin └── cadvisor └── src └── github.com ├── google └── cadvisor │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Godeps │ ├── Godeps.json │ └── Readme │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── api │ ├── handler.go │ ├── versions.go │ └── versions_test.go │ ├── build │ ├── assets.sh │ ├── boilerplate │ │ ├── boilerplate.go.txt │ │ ├── boilerplate.py │ │ ├── boilerplate.py.txt │ │ └── boilerplate.sh.txt │ ├── build.sh │ ├── check_boilerplate.sh │ ├── check_errorf.sh │ ├── check_gofmt.sh │ ├── integration.sh │ ├── jenkins_e2e.sh │ └── release.sh │ ├── cache │ ├── cache.go │ └── memory │ │ ├── memory.go │ │ └── memory_test.go │ ├── cadvisor.go │ ├── cadvisor_test.go │ ├── client │ ├── README.md │ ├── client.go │ ├── client_test.go │ ├── clientexample │ │ └── main.go │ └── v2 │ │ ├── README.md │ │ ├── client.go │ │ └── client_test.go │ ├── collector │ ├── collector_manager.go │ ├── collector_manager_test.go │ ├── config.go │ ├── config │ │ ├── sample_config.json │ │ ├── sample_config_endpoint_config.json │ │ ├── sample_config_prometheus.json │ │ ├── sample_config_prometheus_endpoint_config.json │ │ └── sample_config_prometheus_filtered.json │ ├── fakes.go │ ├── generic_collector.go │ ├── generic_collector_test.go │ ├── prometheus_collector.go │ ├── prometheus_collector_test.go │ ├── types.go │ └── util.go │ ├── container │ ├── common │ │ ├── container_hints.go │ │ ├── container_hints_test.go │ │ ├── fsHandler.go │ │ ├── helpers.go │ │ ├── inotify_watcher.go │ │ └── test_resources │ │ │ └── container_hints.json │ ├── container.go │ ├── docker │ │ ├── client.go │ │ ├── docker.go │ │ ├── docker_test.go │ │ ├── factory.go │ │ ├── factory_test.go │ │ ├── handler.go │ │ └── handler_test.go │ ├── factory.go │ ├── factory_test.go │ ├── libcontainer │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ └── testdata │ │ │ ├── docker-v1.8.3 │ │ │ └── execdriver │ │ │ │ └── native │ │ │ │ └── 1 │ │ │ │ └── state.json │ │ │ ├── docker-v1.9.1 │ │ │ └── execdriver │ │ │ │ └── native │ │ │ │ └── 1 │ │ │ │ └── state.json │ │ │ ├── procnetdev │ │ │ └── procnetudp │ ├── raw │ │ ├── factory.go │ │ ├── handler.go │ │ └── handler_test.go │ ├── rkt │ │ ├── client.go │ │ ├── client_test.go │ │ ├── factory.go │ │ ├── handler.go │ │ └── helpers.go │ ├── systemd │ │ └── factory.go │ └── testing │ │ └── mock_handler.go │ ├── deploy │ ├── Dockerfile │ ├── build.sh │ └── canary │ │ └── Dockerfile │ ├── devicemapper │ ├── dmsetup_client.go │ ├── doc.go │ ├── fake │ │ ├── dmsetup_client_fake.go │ │ └── thin_ls_client_fake.go │ ├── thin_ls_client.go │ ├── thin_ls_client_test.go │ ├── thin_pool_watcher.go │ ├── thin_pool_watcher_test.go │ └── util.go │ ├── docs │ ├── api.md │ ├── api_v2.md │ ├── application_metrics.md │ ├── clients.md │ ├── deploy.md │ ├── development │ │ ├── README.md │ │ ├── build.md │ │ ├── integration_testing.md │ │ ├── issues.md │ │ └── releasing.md │ ├── running.md │ ├── runtime_options.md │ ├── storage │ │ ├── README.md │ │ ├── elasticsearch.md │ │ ├── influxdb.md │ │ ├── kafka.md │ │ └── prometheus.md │ └── web.md │ ├── events │ ├── handler.go │ └── handler_test.go │ ├── fs │ ├── fs.go │ ├── fs_test.go │ ├── test_resources │ │ └── diskstats │ └── types.go │ ├── healthz │ └── healthz.go │ ├── http │ ├── handlers.go │ └── mux │ │ └── mux.go │ ├── info │ ├── v1 │ │ ├── container.go │ │ ├── container_test.go │ │ ├── docker.go │ │ ├── machine.go │ │ ├── metric.go │ │ └── test │ │ │ └── datagen.go │ └── v2 │ │ ├── container.go │ │ ├── conversion.go │ │ ├── conversion_test.go │ │ └── machine.go │ ├── integration │ ├── framework │ │ └── framework.go │ ├── runner │ │ ├── retrywhitelist.txt │ │ ├── run.sh │ │ └── runner.go │ └── tests │ │ ├── TODO.md │ │ ├── api │ │ ├── attributes_test.go │ │ ├── docker_test.go │ │ ├── event_test.go │ │ ├── machine_test.go │ │ ├── machinestats_test.go │ │ └── test_utils.go │ │ └── healthz │ │ ├── healthz_test.go │ │ └── test_utils.go │ ├── logo.png │ ├── machine │ ├── info.go │ ├── machine.go │ ├── testdata │ │ └── cpuinfo │ └── topology_test.go │ ├── manager │ ├── container.go │ ├── container_test.go │ ├── manager.go │ ├── manager_test.go │ └── watcher │ │ ├── raw │ │ └── raw.go │ │ ├── rkt │ │ └── rkt.go │ │ └── watcher.go │ ├── metrics │ ├── prometheus.go │ ├── prometheus_test.go │ └── testdata │ │ ├── prometheus_metrics │ │ └── prometheus_metrics_failure │ ├── pages │ ├── assets │ │ ├── html │ │ │ └── containers.html │ │ ├── js │ │ │ ├── bootstrap-3.1.1.min.js │ │ │ ├── containers.js │ │ │ ├── gcharts.js │ │ │ ├── google-jsapi.js │ │ │ └── jquery-1.10.2.min.js │ │ └── styles │ │ │ ├── bootstrap-3.1.1.min.css │ │ │ ├── bootstrap-theme-3.1.1.min.css │ │ │ └── containers.css │ ├── containers.go │ ├── docker.go │ ├── pages.go │ ├── static │ │ ├── assets.go │ │ └── static.go │ └── templates.go │ ├── storage │ ├── bigquery │ │ ├── README.md │ │ ├── bigquery.go │ │ └── client │ │ │ ├── client.go │ │ │ └── example │ │ │ └── example.go │ ├── common_flags.go │ ├── elasticsearch │ │ └── elasticsearch.go │ ├── influxdb │ │ ├── influxdb.go │ │ ├── influxdb.go_origin │ │ └── influxdb_test.go │ ├── kafka │ │ └── kafka.go │ ├── redis │ │ └── redis.go │ ├── statsd │ │ ├── client │ │ │ └── client.go │ │ └── statsd.go │ ├── stdout │ │ └── stdout.go │ ├── storage.go │ └── test │ │ ├── mock.go │ │ └── storagetests.go │ ├── storagedriver.go │ ├── summary │ ├── buffer.go │ ├── buffer_test.go │ ├── percentiles.go │ ├── percentiles_test.go │ └── summary.go │ ├── test.htdigest │ ├── test.htpasswd │ ├── utils │ ├── cloudinfo │ │ ├── aws.go │ │ ├── azure.go │ │ ├── cloudinfo.go │ │ └── gce.go │ ├── container │ │ └── container.go │ ├── cpuload │ │ ├── cpuload.go │ │ └── netlink │ │ │ ├── conn.go │ │ │ ├── defs.go │ │ │ ├── example │ │ │ └── example.go │ │ │ ├── netlink.go │ │ │ └── reader.go │ ├── docker │ │ └── docker.go │ ├── oomparser │ │ ├── containerOomExampleLog.txt │ │ ├── oomexample │ │ │ └── main.go │ │ ├── oomparser.go │ │ ├── oomparser_test.go │ │ └── systemOomExampleLog.txt │ ├── path.go │ ├── procfs │ │ ├── doc.go │ │ └── jiffy.go │ ├── sysfs │ │ ├── fakesysfs │ │ │ └── fake.go │ │ └── sysfs.go │ ├── sysinfo │ │ ├── sysinfo.go │ │ └── sysinfo_test.go │ ├── tail │ │ ├── tail.go │ │ └── tail_test.go │ ├── timed_store.go │ ├── timed_store_test.go │ └── utils.go │ ├── validate │ ├── validate.go │ └── validate_test.go │ ├── vendor │ ├── bitbucket.org │ │ └── ww │ │ │ └── goautoneg │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── autoneg.go │ ├── cloud.google.com │ │ └── go │ │ │ ├── LICENSE │ │ │ ├── compute │ │ │ └── metadata │ │ │ │ └── metadata.go │ │ │ └── internal │ │ │ └── cloud.go │ ├── github.com │ │ ├── Microsoft │ │ │ └── go-winio │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── backup.go │ │ │ │ ├── file.go │ │ │ │ ├── fileinfo.go │ │ │ │ ├── pipe.go │ │ │ │ ├── privilege.go │ │ │ │ ├── reparse.go │ │ │ │ ├── sd.go │ │ │ │ ├── syscall.go │ │ │ │ └── zsyscall.go │ │ ├── SeanDolphin │ │ │ └── bqschema │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── toSchema.go │ │ │ │ └── toStructs.go │ │ ├── Shopify │ │ │ └── sarama │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── MIT-LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── Vagrantfile │ │ │ │ ├── async_producer.go │ │ │ │ ├── broker.go │ │ │ │ ├── client.go │ │ │ │ ├── config.go │ │ │ │ ├── consumer.go │ │ │ │ ├── consumer_group_members.go │ │ │ │ ├── consumer_metadata_request.go │ │ │ │ ├── consumer_metadata_response.go │ │ │ │ ├── crc32_field.go │ │ │ │ ├── describe_groups_request.go │ │ │ │ ├── describe_groups_response.go │ │ │ │ ├── encoder_decoder.go │ │ │ │ ├── errors.go │ │ │ │ ├── fetch_request.go │ │ │ │ ├── fetch_response.go │ │ │ │ ├── heartbeat_request.go │ │ │ │ ├── heartbeat_response.go │ │ │ │ ├── join_group_request.go │ │ │ │ ├── join_group_response.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 │ │ │ │ ├── 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 │ │ │ │ ├── request.go │ │ │ │ ├── response_header.go │ │ │ │ ├── sarama.go │ │ │ │ ├── snappy.go │ │ │ │ ├── sync_group_request.go │ │ │ │ ├── sync_group_response.go │ │ │ │ ├── sync_producer.go │ │ │ │ └── utils.go │ │ ├── Sirupsen │ │ │ └── logrus │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── entry.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── hooks.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── logger.go │ │ │ │ ├── logrus.go │ │ │ │ ├── terminal_darwin.go │ │ │ │ ├── terminal_freebsd.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── terminal_notwindows.go │ │ │ │ ├── terminal_openbsd.go │ │ │ │ ├── terminal_windows.go │ │ │ │ ├── text_formatter.go │ │ │ │ └── writer.go │ │ ├── abbot │ │ │ └── go-http-auth │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── auth.go │ │ │ │ ├── basic.go │ │ │ │ ├── digest.go │ │ │ │ ├── md5crypt.go │ │ │ │ ├── misc.go │ │ │ │ ├── test.htdigest │ │ │ │ ├── test.htpasswd │ │ │ │ └── users.go │ │ ├── aws │ │ │ └── aws-sdk-go │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── NOTICE.txt │ │ │ │ ├── aws │ │ │ │ ├── awserr │ │ │ │ │ ├── error.go │ │ │ │ │ └── types.go │ │ │ │ ├── awsutil │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── path_value.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ ├── default_retryer.go │ │ │ │ │ └── metadata │ │ │ │ │ │ └── client_info.go │ │ │ │ ├── config.go │ │ │ │ ├── convert_types.go │ │ │ │ ├── corehandlers │ │ │ │ │ ├── handlers.go │ │ │ │ │ └── param_validator.go │ │ │ │ ├── credentials │ │ │ │ │ ├── chain_provider.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── ec2rolecreds │ │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ │ ├── endpointcreds │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── env_provider.go │ │ │ │ │ ├── example.ini │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ ├── static_provider.go │ │ │ │ │ └── stscreds │ │ │ │ │ │ └── assume_role_provider.go │ │ │ │ ├── defaults │ │ │ │ │ └── defaults.go │ │ │ │ ├── ec2metadata │ │ │ │ │ ├── api.go │ │ │ │ │ └── service.go │ │ │ │ ├── endpoints │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── v3model.go │ │ │ │ │ └── v3model_codegen.go │ │ │ │ ├── errors.go │ │ │ │ ├── logger.go │ │ │ │ ├── request │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── http_request.go │ │ │ │ │ ├── offset_reader.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── request_1_7.go │ │ │ │ │ ├── request_1_8.go │ │ │ │ │ ├── request_pagination.go │ │ │ │ │ ├── retryer.go │ │ │ │ │ └── validation.go │ │ │ │ ├── session │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── signer │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── uri_path.go │ │ │ │ │ │ └── v4.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ │ │ ├── private │ │ │ │ └── protocol │ │ │ │ │ ├── idempotency.go │ │ │ │ │ ├── query │ │ │ │ │ ├── build.go │ │ │ │ │ ├── queryutil │ │ │ │ │ │ └── queryutil.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── unmarshal_error.go │ │ │ │ │ ├── rest │ │ │ │ │ ├── build.go │ │ │ │ │ ├── payload.go │ │ │ │ │ └── unmarshal.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── xml │ │ │ │ │ └── xmlutil │ │ │ │ │ ├── build.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── xml_to_struct.go │ │ │ │ └── service │ │ │ │ └── sts │ │ │ │ ├── api.go │ │ │ │ ├── customizations.go │ │ │ │ └── service.go │ │ ├── beorn7 │ │ │ └── perks │ │ │ │ └── quantile │ │ │ │ ├── exampledata.txt │ │ │ │ └── stream.go │ │ ├── blang │ │ │ └── semver │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── json.go │ │ │ │ ├── range.go │ │ │ │ ├── semver.go │ │ │ │ ├── sort.go │ │ │ │ └── sql.go │ │ ├── coreos │ │ │ ├── go-systemd │ │ │ │ ├── LICENSE │ │ │ │ ├── dbus │ │ │ │ │ ├── dbus.go │ │ │ │ │ ├── methods.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── subscription.go │ │ │ │ │ └── subscription_set.go │ │ │ │ └── util │ │ │ │ │ └── util.go │ │ │ ├── pkg │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── dlopen │ │ │ │ │ ├── dlopen.go │ │ │ │ │ └── dlopen_example.go │ │ │ └── rkt │ │ │ │ ├── LICENSE │ │ │ │ └── api │ │ │ │ └── v1alpha │ │ │ │ ├── README.md │ │ │ │ ├── api.pb.go │ │ │ │ ├── api.proto │ │ │ │ └── client_example.go │ │ ├── docker │ │ │ ├── distribution │ │ │ │ ├── LICENSE │ │ │ │ ├── digest │ │ │ │ │ ├── digest.go │ │ │ │ │ ├── digester.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── set.go │ │ │ │ │ └── verifiers.go │ │ │ │ └── reference │ │ │ │ │ ├── reference.go │ │ │ │ │ └── regexp.go │ │ │ ├── docker │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── pkg │ │ │ │ │ ├── longpath │ │ │ │ │ └── longpath.go │ │ │ │ │ ├── mount │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_freebsd.go │ │ │ │ │ ├── flags_linux.go │ │ │ │ │ ├── flags_unsupported.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mounter_freebsd.go │ │ │ │ │ ├── mounter_linux.go │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ ├── mountinfo_windows.go │ │ │ │ │ └── sharedsubtree_linux.go │ │ │ │ │ ├── symlink │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fs.go │ │ │ │ │ ├── fs_unix.go │ │ │ │ │ └── fs_windows.go │ │ │ │ │ └── system │ │ │ │ │ ├── chtimes.go │ │ │ │ │ ├── chtimes_unix.go │ │ │ │ │ ├── chtimes_windows.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── events_windows.go │ │ │ │ │ ├── filesys.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── lstat.go │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ ├── meminfo.go │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ ├── mknod.go │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ ├── path_unix.go │ │ │ │ │ ├── path_windows.go │ │ │ │ │ ├── stat.go │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ ├── stat_openbsd.go │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ ├── stat_unsupported.go │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ ├── umask.go │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ ├── utimes_darwin.go │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ └── xattrs_unsupported.go │ │ │ ├── engine-api │ │ │ │ ├── LICENSE │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_darwin.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_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 │ │ │ │ │ ├── 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_pull.go │ │ │ │ │ ├── image_push.go │ │ │ │ │ ├── image_remove.go │ │ │ │ │ ├── image_save.go │ │ │ │ │ ├── image_search.go │ │ │ │ │ ├── image_tag.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── login.go │ │ │ │ │ ├── network_connect.go │ │ │ │ │ ├── network_create.go │ │ │ │ │ ├── network_disconnect.go │ │ │ │ │ ├── network_inspect.go │ │ │ │ │ ├── network_list.go │ │ │ │ │ ├── network_remove.go │ │ │ │ │ ├── privileged.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── transport │ │ │ │ │ │ ├── cancellable │ │ │ │ │ │ │ ├── canceler.go │ │ │ │ │ │ │ ├── canceler_go14.go │ │ │ │ │ │ │ └── cancellable.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── transport.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── volume_create.go │ │ │ │ │ ├── volume_inspect.go │ │ │ │ │ ├── volume_list.go │ │ │ │ │ └── volume_remove.go │ │ │ │ └── types │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── blkiodev │ │ │ │ │ └── blkio.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── configs.go │ │ │ │ │ ├── container │ │ │ │ │ ├── config.go │ │ │ │ │ ├── host_config.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ └── hostconfig_windows.go │ │ │ │ │ ├── filters │ │ │ │ │ └── parse.go │ │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ │ ├── reference │ │ │ │ │ └── image_reference.go │ │ │ │ │ ├── registry │ │ │ │ │ └── registry.go │ │ │ │ │ ├── seccomp.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── strslice │ │ │ │ │ └── strslice.go │ │ │ │ │ ├── time │ │ │ │ │ └── timestamp.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── versions │ │ │ │ │ ├── README.md │ │ │ │ │ └── compare.go │ │ │ ├── go-connections │ │ │ │ ├── LICENSE │ │ │ │ ├── nat │ │ │ │ │ ├── nat.go │ │ │ │ │ ├── parse.go │ │ │ │ │ └── sort.go │ │ │ │ ├── sockets │ │ │ │ │ ├── README.md │ │ │ │ │ ├── inmem_socket.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── sockets.go │ │ │ │ │ ├── sockets_unix.go │ │ │ │ │ ├── sockets_windows.go │ │ │ │ │ ├── tcp_socket.go │ │ │ │ │ └── unix_socket.go │ │ │ │ └── tlsconfig │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_client_ciphers.go │ │ │ │ │ └── config_legacy_client_ciphers.go │ │ │ └── go-units │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.code │ │ │ │ ├── LICENSE.docs │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── README.md │ │ │ │ ├── circle.yml │ │ │ │ ├── duration.go │ │ │ │ ├── size.go │ │ │ │ └── ulimit.go │ │ ├── eapache │ │ │ ├── go-resiliency │ │ │ │ ├── LICENSE │ │ │ │ └── breaker │ │ │ │ │ ├── README.md │ │ │ │ │ └── breaker.go │ │ │ └── queue │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── queue.go │ │ ├── garyburd │ │ │ └── redigo │ │ │ │ ├── internal │ │ │ │ └── commandinfo.go │ │ │ │ └── redis │ │ │ │ ├── conn.go │ │ │ │ ├── doc.go │ │ │ │ ├── log.go │ │ │ │ ├── pool.go │ │ │ │ ├── pubsub.go │ │ │ │ ├── redis.go │ │ │ │ ├── reply.go │ │ │ │ ├── scan.go │ │ │ │ └── script.go │ │ ├── go-ini │ │ │ └── ini │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── README_ZH.md │ │ │ │ ├── ini.go │ │ │ │ ├── parser.go │ │ │ │ └── struct.go │ │ ├── godbus │ │ │ └── dbus │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── README.markdown │ │ │ │ ├── auth.go │ │ │ │ ├── auth_external.go │ │ │ │ ├── auth_sha1.go │ │ │ │ ├── call.go │ │ │ │ ├── conn.go │ │ │ │ ├── conn_darwin.go │ │ │ │ ├── conn_other.go │ │ │ │ ├── dbus.go │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── export.go │ │ │ │ ├── homedir.go │ │ │ │ ├── homedir_dynamic.go │ │ │ │ ├── homedir_static.go │ │ │ │ ├── message.go │ │ │ │ ├── object.go │ │ │ │ ├── sig.go │ │ │ │ ├── transport_darwin.go │ │ │ │ ├── transport_generic.go │ │ │ │ ├── transport_unix.go │ │ │ │ ├── transport_unixcred_dragonfly.go │ │ │ │ ├── transport_unixcred_linux.go │ │ │ │ ├── variant.go │ │ │ │ ├── variant_lexer.go │ │ │ │ └── variant_parser.go │ │ ├── golang │ │ │ ├── glog │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── glog.go │ │ │ │ └── glog_file.go │ │ │ ├── protobuf │ │ │ │ ├── LICENSE │ │ │ │ └── proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.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 │ │ │ └── snappy │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ └── snappy.go │ │ ├── influxdb │ │ │ └── influxdb │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE_OF_DEPENDENCIES.md │ │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ └── influxdb.go │ │ │ │ ├── models │ │ │ │ ├── points.go │ │ │ │ └── rows.go │ │ │ │ └── pkg │ │ │ │ └── escape │ │ │ │ ├── bytes.go │ │ │ │ └── strings.go │ │ ├── jmespath │ │ │ └── go-jmespath │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── api.go │ │ │ │ ├── astnodetype_string.go │ │ │ │ ├── functions.go │ │ │ │ ├── interpreter.go │ │ │ │ ├── lexer.go │ │ │ │ ├── parser.go │ │ │ │ ├── toktype_string.go │ │ │ │ └── util.go │ │ ├── klauspost │ │ │ └── crc32 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── crc32.go │ │ │ │ ├── crc32_amd64.go │ │ │ │ ├── crc32_amd64.s │ │ │ │ ├── crc32_amd64p32.go │ │ │ │ ├── crc32_amd64p32.s │ │ │ │ └── crc32_generic.go │ │ ├── kr │ │ │ ├── pretty │ │ │ │ ├── .gitignore │ │ │ │ ├── License │ │ │ │ ├── Readme │ │ │ │ ├── diff.go │ │ │ │ ├── formatter.go │ │ │ │ ├── pretty.go │ │ │ │ └── zero.go │ │ │ └── text │ │ │ │ ├── License │ │ │ │ ├── Readme │ │ │ │ ├── doc.go │ │ │ │ ├── indent.go │ │ │ │ └── wrap.go │ │ ├── matttproud │ │ │ └── golang_protobuf_extensions │ │ │ │ ├── LICENSE │ │ │ │ └── pbutil │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── mistifyio │ │ │ └── go-zfs │ │ │ │ ├── .gitignore │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Vagrantfile │ │ │ │ ├── error.go │ │ │ │ ├── utils.go │ │ │ │ ├── zfs.go │ │ │ │ └── zpool.go │ │ ├── opencontainers │ │ │ └── runc │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── libcontainer │ │ │ │ ├── README.md │ │ │ │ ├── SPEC.md │ │ │ │ ├── apparmor │ │ │ │ ├── apparmor.go │ │ │ │ └── apparmor_disabled.go │ │ │ │ ├── capabilities_linux.go │ │ │ │ ├── cgroups │ │ │ │ ├── cgroups.go │ │ │ │ ├── cgroups_unsupported.go │ │ │ │ ├── fs │ │ │ │ │ ├── apply_raw.go │ │ │ │ │ ├── blkio.go │ │ │ │ │ ├── cpu.go │ │ │ │ │ ├── cpuacct.go │ │ │ │ │ ├── cpuset.go │ │ │ │ │ ├── devices.go │ │ │ │ │ ├── freezer.go │ │ │ │ │ ├── fs_unsupported.go │ │ │ │ │ ├── hugetlb.go │ │ │ │ │ ├── memory.go │ │ │ │ │ ├── name.go │ │ │ │ │ ├── net_cls.go │ │ │ │ │ ├── net_prio.go │ │ │ │ │ ├── perf_event.go │ │ │ │ │ ├── pids.go │ │ │ │ │ └── utils.go │ │ │ │ ├── stats.go │ │ │ │ ├── systemd │ │ │ │ │ ├── apply_nosystemd.go │ │ │ │ │ └── apply_systemd.go │ │ │ │ └── utils.go │ │ │ │ ├── compat_1.5_linux.go │ │ │ │ ├── configs │ │ │ │ ├── blkio_device.go │ │ │ │ ├── cgroup_unix.go │ │ │ │ ├── cgroup_unsupported.go │ │ │ │ ├── cgroup_windows.go │ │ │ │ ├── config.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── device.go │ │ │ │ ├── device_defaults.go │ │ │ │ ├── hugepage_limit.go │ │ │ │ ├── interface_priority_map.go │ │ │ │ ├── mount.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── namespaces_syscall.go │ │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ │ ├── namespaces_unix.go │ │ │ │ ├── namespaces_unsupported.go │ │ │ │ ├── network.go │ │ │ │ └── validate │ │ │ │ │ └── validator.go │ │ │ │ ├── console.go │ │ │ │ ├── console_freebsd.go │ │ │ │ ├── console_linux.go │ │ │ │ ├── console_solaris.go │ │ │ │ ├── console_windows.go │ │ │ │ ├── container.go │ │ │ │ ├── container_linux.go │ │ │ │ ├── container_solaris.go │ │ │ │ ├── container_windows.go │ │ │ │ ├── criu_opts_unix.go │ │ │ │ ├── criu_opts_windows.go │ │ │ │ ├── criurpc │ │ │ │ ├── Makefile │ │ │ │ ├── criurpc.pb.go │ │ │ │ └── criurpc.proto │ │ │ │ ├── error.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_linux.go │ │ │ │ ├── generic_error.go │ │ │ │ ├── init_linux.go │ │ │ │ ├── keys │ │ │ │ └── keyctl.go │ │ │ │ ├── label │ │ │ │ ├── label.go │ │ │ │ └── label_selinux.go │ │ │ │ ├── message_linux.go │ │ │ │ ├── network_linux.go │ │ │ │ ├── notify_linux.go │ │ │ │ ├── process.go │ │ │ │ ├── process_linux.go │ │ │ │ ├── restored_process.go │ │ │ │ ├── rootfs_linux.go │ │ │ │ ├── seccomp │ │ │ │ ├── config.go │ │ │ │ ├── seccomp_linux.go │ │ │ │ └── seccomp_unsupported.go │ │ │ │ ├── selinux │ │ │ │ └── selinux.go │ │ │ │ ├── setgroups_linux.go │ │ │ │ ├── setns_init_linux.go │ │ │ │ ├── stacktrace │ │ │ │ ├── capture.go │ │ │ │ ├── frame.go │ │ │ │ └── stacktrace.go │ │ │ │ ├── standard_init_linux.go │ │ │ │ ├── state_linux.go │ │ │ │ ├── stats.go │ │ │ │ ├── stats_freebsd.go │ │ │ │ ├── stats_linux.go │ │ │ │ ├── stats_solaris.go │ │ │ │ ├── stats_windows.go │ │ │ │ ├── system │ │ │ │ ├── linux.go │ │ │ │ ├── proc.go │ │ │ │ ├── setns_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_64.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── sysconfig.go │ │ │ │ ├── sysconfig_notcgo.go │ │ │ │ ├── unsupported.go │ │ │ │ └── xattrs_linux.go │ │ │ │ ├── user │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_unix.go │ │ │ │ ├── lookup_unsupported.go │ │ │ │ └── user.go │ │ │ │ └── utils │ │ │ │ ├── utils.go │ │ │ │ └── utils_unix.go │ │ ├── pborman │ │ │ └── uuid │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── hash.go │ │ │ │ ├── json.go │ │ │ │ ├── node.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ ├── prometheus │ │ │ ├── client_golang │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── prometheus │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collector.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── desc.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── expvar.go │ │ │ │ │ ├── gauge.go │ │ │ │ │ ├── go_collector.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── process_collector.go │ │ │ │ │ ├── push.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── summary.go │ │ │ │ │ ├── untyped.go │ │ │ │ │ ├── value.go │ │ │ │ │ └── vec.go │ │ │ ├── client_model │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── go │ │ │ │ │ └── metrics.pb.go │ │ │ ├── common │ │ │ │ ├── expfmt │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── expfmt.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ ├── json_decode.go │ │ │ │ │ ├── text_create.go │ │ │ │ │ └── text_parse.go │ │ │ │ └── model │ │ │ │ │ ├── alert.go │ │ │ │ │ ├── fingerprinting.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── labelset.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── model.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── silence.go │ │ │ │ │ ├── time.go │ │ │ │ │ └── value.go │ │ │ └── procfs │ │ │ │ ├── AUTHORS.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── fs.go │ │ │ │ ├── proc.go │ │ │ │ ├── proc_limits.go │ │ │ │ ├── proc_stat.go │ │ │ │ └── stat.go │ │ ├── seccomp │ │ │ └── libseccomp-golang │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── seccomp.go │ │ │ │ └── seccomp_internal.go │ │ ├── stretchr │ │ │ ├── objx │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── accessors.go │ │ │ │ ├── constants.go │ │ │ │ ├── conversions.go │ │ │ │ ├── doc.go │ │ │ │ ├── map.go │ │ │ │ ├── mutations.go │ │ │ │ ├── security.go │ │ │ │ ├── tests.go │ │ │ │ ├── type_specific_codegen.go │ │ │ │ └── value.go │ │ │ └── testify │ │ │ │ ├── LICENCE.txt │ │ │ │ ├── assert │ │ │ │ ├── assertions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── forward_assertions.go │ │ │ │ └── http_assertions.go │ │ │ │ ├── mock │ │ │ │ ├── doc.go │ │ │ │ └── mock.go │ │ │ │ └── require │ │ │ │ ├── doc.go │ │ │ │ └── requirements.go │ │ ├── syndtr │ │ │ └── gocapability │ │ │ │ ├── LICENSE │ │ │ │ └── capability │ │ │ │ ├── capability.go │ │ │ │ ├── capability_linux.go │ │ │ │ ├── capability_noop.go │ │ │ │ ├── enum.go │ │ │ │ ├── enum_gen.go │ │ │ │ └── syscall_linux.go │ │ └── vishvananda │ │ │ └── netlink │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── addr.go │ │ │ ├── addr_linux.go │ │ │ ├── filter.go │ │ │ ├── filter_linux.go │ │ │ ├── link.go │ │ │ ├── link_linux.go │ │ │ ├── neigh.go │ │ │ ├── neigh_linux.go │ │ │ ├── netlink.go │ │ │ ├── netlink_unspecified.go │ │ │ ├── nl │ │ │ ├── addr_linux.go │ │ │ ├── link_linux.go │ │ │ ├── nl_linux.go │ │ │ ├── route_linux.go │ │ │ ├── tc_linux.go │ │ │ ├── xfrm_linux.go │ │ │ ├── xfrm_policy_linux.go │ │ │ └── xfrm_state_linux.go │ │ │ ├── protinfo.go │ │ │ ├── protinfo_linux.go │ │ │ ├── qdisc.go │ │ │ ├── qdisc_linux.go │ │ │ ├── route.go │ │ │ ├── route_linux.go │ │ │ ├── xfrm.go │ │ │ ├── xfrm_policy.go │ │ │ ├── xfrm_policy_linux.go │ │ │ ├── xfrm_state.go │ │ │ └── xfrm_state_linux.go │ ├── golang.org │ │ └── x │ │ │ ├── exp │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── inotify │ │ │ │ └── inotify_linux.go │ │ │ ├── net │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ └── ctxhttp │ │ │ │ │ ├── cancelreq.go │ │ │ │ │ ├── cancelreq_go14.go │ │ │ │ │ └── ctxhttp.go │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── configure_transport.go │ │ │ │ ├── errors.go │ │ │ │ ├── fixed_buffer.go │ │ │ │ ├── flow.go │ │ │ │ ├── frame.go │ │ │ │ ├── go15.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ └── tables.go │ │ │ │ ├── http2.go │ │ │ │ ├── pipe.go │ │ │ │ ├── server.go │ │ │ │ ├── transport.go │ │ │ │ ├── write.go │ │ │ │ └── writesched.go │ │ │ ├── internal │ │ │ │ └── timeseries │ │ │ │ │ └── timeseries.go │ │ │ ├── proxy │ │ │ │ ├── direct.go │ │ │ │ ├── per_host.go │ │ │ │ ├── proxy.go │ │ │ │ └── socks5.go │ │ │ └── trace │ │ │ │ ├── events.go │ │ │ │ ├── histogram.go │ │ │ │ └── trace.go │ │ │ └── oauth2 │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client_appengine.go │ │ │ ├── internal │ │ │ └── oauth2.go │ │ │ ├── jws │ │ │ └── jws.go │ │ │ ├── jwt │ │ │ └── jwt.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ ├── google.golang.org │ │ ├── api │ │ │ ├── LICENSE │ │ │ ├── bigquery │ │ │ │ └── v2 │ │ │ │ │ ├── bigquery-api.json │ │ │ │ │ └── bigquery-gen.go │ │ │ └── googleapi │ │ │ │ ├── googleapi.go │ │ │ │ ├── internal │ │ │ │ └── uritemplates │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── uritemplates.go │ │ │ │ │ └── utils.go │ │ │ │ └── types.go │ │ └── grpc │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── call.go │ │ │ ├── clientconn.go │ │ │ ├── codegen.sh │ │ │ ├── codes │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ │ ├── coverage.sh │ │ │ ├── credentials │ │ │ └── credentials.go │ │ │ ├── doc.go │ │ │ ├── grpclog │ │ │ └── logger.go │ │ │ ├── metadata │ │ │ └── metadata.go │ │ │ ├── naming │ │ │ └── naming.go │ │ │ ├── peer │ │ │ └── peer.go │ │ │ ├── picker.go │ │ │ ├── rpc_util.go │ │ │ ├── server.go │ │ │ ├── stream.go │ │ │ ├── trace.go │ │ │ └── transport │ │ │ ├── control.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ └── transport.go │ └── gopkg.in │ │ └── olivere │ │ └── elastic.v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alias.go │ │ ├── aliases.go │ │ ├── bulk.go │ │ ├── bulk_delete_request.go │ │ ├── bulk_index_request.go │ │ ├── bulk_request.go │ │ ├── bulk_update_request.go │ │ ├── canonicalize.go │ │ ├── clear_scroll.go │ │ ├── client.go │ │ ├── cluster_health.go │ │ ├── cluster_state.go │ │ ├── cluster_stats.go │ │ ├── connection.go │ │ ├── count.go │ │ ├── create_index.go │ │ ├── decoder.go │ │ ├── delete.go │ │ ├── delete_by_query.go │ │ ├── delete_index.go │ │ ├── delete_mapping.go │ │ ├── delete_template.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── exists.go │ │ ├── explain.go │ │ ├── fetch_source_context.go │ │ ├── filter.go │ │ ├── flush.go │ │ ├── geo_point.go │ │ ├── get.go │ │ ├── get_mapping.go │ │ ├── get_template.go │ │ ├── highlight.go │ │ ├── index.go │ │ ├── index_close.go │ │ ├── index_exists.go │ │ ├── index_get.go │ │ ├── index_get_settings.go │ │ ├── index_open.go │ │ ├── indices_delete_template.go │ │ ├── indices_exists_template.go │ │ ├── indices_exists_type.go │ │ ├── indices_get_template.go │ │ ├── indices_put_template.go │ │ ├── indices_stats.go │ │ ├── inner_hit.go │ │ ├── multi_get.go │ │ ├── multi_search.go │ │ ├── nodes_info.go │ │ ├── optimize.go │ │ ├── percolate.go │ │ ├── ping.go │ │ ├── put_mapping.go │ │ ├── put_template.go │ │ ├── query.go │ │ ├── refresh.go │ │ ├── reindexer.go │ │ ├── request.go │ │ ├── rescore.go │ │ ├── rescorer.go │ │ ├── response.go │ │ ├── scan.go │ │ ├── scroll.go │ │ ├── search.go │ │ ├── search_aggs.go │ │ ├── search_aggs_avg.go │ │ ├── search_aggs_cardinality.go │ │ ├── search_aggs_children.go │ │ ├── search_aggs_date_histogram.go │ │ ├── search_aggs_date_range.go │ │ ├── search_aggs_extended_stats.go │ │ ├── search_aggs_filter.go │ │ ├── search_aggs_filters.go │ │ ├── search_aggs_geo_bounds.go │ │ ├── search_aggs_geo_distance.go │ │ ├── search_aggs_global.go │ │ ├── search_aggs_histogram.go │ │ ├── search_aggs_max.go │ │ ├── search_aggs_min.go │ │ ├── search_aggs_missing.go │ │ ├── search_aggs_nested.go │ │ ├── search_aggs_percentile_ranks.go │ │ ├── search_aggs_percentiles.go │ │ ├── search_aggs_range.go │ │ ├── search_aggs_significant_terms.go │ │ ├── search_aggs_stats.go │ │ ├── search_aggs_sum.go │ │ ├── search_aggs_terms.go │ │ ├── search_aggs_tophits.go │ │ ├── search_aggs_value_count.go │ │ ├── search_facets.go │ │ ├── search_facets_date_histogram.go │ │ ├── search_facets_filter.go │ │ ├── search_facets_geo_distance.go │ │ ├── search_facets_histogram.go │ │ ├── search_facets_histogram_script.go │ │ ├── search_facets_query.go │ │ ├── search_facets_range.go │ │ ├── search_facets_statistical.go │ │ ├── search_facets_statistical_script.go │ │ ├── search_facets_terms.go │ │ ├── search_facets_terms_stats.go │ │ ├── search_filters_and.go │ │ ├── search_filters_bool.go │ │ ├── search_filters_exists.go │ │ ├── search_filters_geo_distance.go │ │ ├── search_filters_geo_polygon.go │ │ ├── search_filters_has_child.go │ │ ├── search_filters_has_parent.go │ │ ├── search_filters_ids.go │ │ ├── search_filters_limit.go │ │ ├── search_filters_match_all.go │ │ ├── search_filters_missing.go │ │ ├── search_filters_nested.go │ │ ├── search_filters_not.go │ │ ├── search_filters_or.go │ │ ├── search_filters_prefix.go │ │ ├── search_filters_query.go │ │ ├── search_filters_range.go │ │ ├── search_filters_regexp.go │ │ ├── search_filters_term.go │ │ ├── search_filters_terms.go │ │ ├── search_filters_type.go │ │ ├── search_queries_bool.go │ │ ├── search_queries_boosting.go │ │ ├── search_queries_common.go │ │ ├── search_queries_custom_filters_score.go │ │ ├── search_queries_custom_score.go │ │ ├── search_queries_dis_max.go │ │ ├── search_queries_filtered.go │ │ ├── search_queries_fsq.go │ │ ├── search_queries_fsq_score_funcs.go │ │ ├── search_queries_fuzzy.go │ │ ├── search_queries_fuzzy_like_this.go │ │ ├── search_queries_fuzzy_like_this_field_query.go │ │ ├── search_queries_has_child.go │ │ ├── search_queries_has_parent.go │ │ ├── search_queries_ids.go │ │ ├── search_queries_match.go │ │ ├── search_queries_match_all.go │ │ ├── search_queries_more_like_this.go │ │ ├── search_queries_more_like_this_field.go │ │ ├── search_queries_multi_match.go │ │ ├── search_queries_nested.go │ │ ├── search_queries_prefix.go │ │ ├── search_queries_query_string.go │ │ ├── search_queries_range.go │ │ ├── search_queries_regexp.go │ │ ├── search_queries_simple_query_string.go │ │ ├── search_queries_template_query.go │ │ ├── search_queries_term.go │ │ ├── search_queries_terms.go │ │ ├── search_queries_wildcard.go │ │ ├── search_request.go │ │ ├── search_source.go │ │ ├── sort.go │ │ ├── suggest.go │ │ ├── suggest_field.go │ │ ├── suggester.go │ │ ├── suggester_completion.go │ │ ├── suggester_completion_fuzzy.go │ │ ├── suggester_context.go │ │ ├── suggester_context_category.go │ │ ├── suggester_context_geo.go │ │ ├── suggester_phrase.go │ │ ├── suggester_term.go │ │ ├── update.go │ │ └── uritemplates │ │ ├── LICENSE │ │ ├── uritemplates.go │ │ └── utils.go │ ├── version │ └── version.go │ └── zfs │ └── watcher.go └── influxdata └── influxdb ├── .mention-bot ├── CHANGELOG.md ├── CODING_GUIDELINES.md ├── CONTRIBUTING.md ├── DOCKER.md ├── Dockerfile ├── Dockerfile_build_ubuntu32 ├── Dockerfile_build_ubuntu64 ├── Dockerfile_build_ubuntu64_git ├── Dockerfile_test_ubuntu32 ├── Godeps ├── LICENSE ├── LICENSE_OF_DEPENDENCIES.md ├── Makefile ├── QUERIES.md ├── README.md ├── TODO.md ├── appveyor.yml ├── build-docker.sh ├── build.py ├── build.sh ├── circle-test.sh ├── circle.yml ├── client ├── README.md ├── example_test.go ├── influxdb.go ├── influxdb_test.go └── v2 │ ├── client.go │ ├── client_test.go │ ├── example_test.go │ └── udp.go ├── cmd ├── influx │ ├── cli │ │ ├── cli.go │ │ ├── cli_internal_test.go │ │ ├── cli_test.go │ │ ├── parser.go │ │ └── parser_internal_test.go │ └── main.go ├── influx_inspect │ ├── README.md │ ├── dumptsm │ │ ├── dumptsm.go │ │ └── dumptsm_test.go │ ├── export │ │ ├── export.go │ │ └── export_test.go │ ├── help │ │ ├── help.go │ │ └── help_test.go │ ├── main.go │ ├── report │ │ ├── report.go │ │ └── report_test.go │ └── verify │ │ ├── verify.go │ │ └── verify_test.go ├── influx_stress │ ├── README.md │ ├── examples │ │ └── template.toml │ └── influx_stress.go ├── influx_tsm │ ├── README.md │ ├── b1 │ │ └── reader.go │ ├── bz1 │ │ └── reader.go │ ├── converter.go │ ├── main.go │ ├── stats │ │ └── stats.go │ ├── tracker.go │ └── tsdb │ │ ├── codec.go │ │ ├── database.go │ │ ├── internal │ │ └── meta.pb.go │ │ └── types.go ├── influxd │ ├── backup │ │ └── backup.go │ ├── help │ │ └── help.go │ ├── main.go │ ├── restore │ │ └── restore.go │ └── run │ │ ├── command.go │ │ ├── config.go │ │ ├── config_command.go │ │ ├── config_test.go │ │ └── server.go └── parse.go ├── coordinator ├── config.go ├── config_test.go ├── meta_client.go ├── meta_client_test.go ├── points_writer.go ├── points_writer_internal_test.go ├── points_writer_test.go ├── shard_mapper.go ├── shard_mapper_test.go ├── statement_executor.go └── statement_executor_test.go ├── errors.go ├── etc ├── burn-in │ ├── .rvmrc │ ├── Gemfile │ ├── Gemfile.lock │ ├── burn-in.rb │ ├── log.rb │ ├── random_gaussian.rb │ └── random_points.rb └── config.sample.toml ├── gobuild.sh ├── importer ├── README.md └── v8 │ └── importer.go ├── influxdb.go ├── influxql ├── README.md ├── ast.go ├── ast_test.go ├── call_iterator.go ├── call_iterator_test.go ├── cast.go ├── doc.go ├── emitter.go ├── emitter_test.go ├── functions.gen.go ├── functions.gen.go.tmpl ├── functions.go ├── functions_test.go ├── influxql.go ├── internal │ ├── internal.pb.go │ └── internal.proto ├── iterator.gen.go ├── iterator.gen.go.tmpl ├── iterator.go ├── iterator_mapper.go ├── iterator_mapper_test.go ├── iterator_test.go ├── linear.go ├── monitor.go ├── neldermead │ ├── neldermead.go │ └── neldermead_test.go ├── parser.go ├── parser_test.go ├── point.gen.go ├── point.gen.go.tmpl ├── point.go ├── point_test.go ├── query_executor.go ├── query_executor_test.go ├── result.go ├── sanitize.go ├── sanitize_test.go ├── scanner.go ├── scanner_test.go ├── select.go ├── select_test.go ├── statement_rewriter.go ├── statement_rewriter_test.go ├── task_manager.go ├── tmpldata └── token.go ├── internal └── meta_client.go ├── man ├── Makefile ├── README.md ├── footer.txt ├── influx.txt ├── influx_inspect.txt ├── influx_stress.txt ├── influx_tsm.txt ├── influxd-backup.txt ├── influxd-config.txt ├── influxd-restore.txt ├── influxd-run.txt ├── influxd-version.txt └── influxd.txt ├── models ├── consistency.go ├── inline_fnv.go ├── inline_fnv_test.go ├── inline_strconv_parse.go ├── inline_strconv_parse_test.go ├── points.go ├── points_internal_test.go ├── points_test.go ├── rows.go ├── statistic.go ├── statistic_test.go └── time.go ├── monitor ├── README.md ├── build_info.go ├── config.go ├── config_test.go ├── diagnostics │ └── diagnostics.go ├── go_runtime.go ├── network.go ├── reporter.go ├── service.go └── system.go ├── nightly.sh ├── node.go ├── package.sh ├── pkg ├── README.md ├── bytesutil │ └── bytesutil.go ├── deep │ └── equal.go ├── escape │ ├── bytes.go │ ├── bytes_test.go │ ├── strings.go │ └── strings_test.go ├── estimator │ ├── hll │ │ ├── compressed.go │ │ ├── empirical_data.go │ │ ├── hll.go │ │ └── hll_test.go │ └── sketch.go ├── limiter │ └── fixed.go ├── mmap │ ├── mmap_test.go │ ├── mmap_unix.go │ └── mmap_windows.go ├── pool │ ├── bytes.go │ └── generic.go ├── rhh │ ├── rhh.go │ └── rhh_test.go └── slices │ └── strings.go ├── scripts ├── influxdb.service ├── init.sh ├── logrotate ├── post-install.sh ├── post-uninstall.sh └── pre-install.sh ├── services ├── admin │ ├── README.md │ ├── admin.go │ ├── assets │ │ ├── README.md │ │ ├── css │ │ │ ├── admin.css │ │ │ ├── bootstrap.css │ │ │ └── dropdowns-enhancement.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── favicon.ico │ │ │ └── influxdb-light400.png │ │ ├── index.html │ │ └── js │ │ │ ├── admin.js │ │ │ └── vendor │ │ │ ├── bootstrap-3.3.5.min.js │ │ │ ├── jquery-2.1.4.min.js │ │ │ └── react-0.13.3.min.js │ ├── config.go │ ├── config_test.go │ ├── service.go │ ├── service_test.go │ └── statik │ │ ├── README.md │ │ └── statik.go ├── collectd │ ├── README.md │ ├── collectd_test.conf │ ├── config.go │ ├── config_test.go │ ├── service.go │ ├── service_test.go │ └── test_client │ │ ├── README.md │ │ └── client.go ├── continuous_querier │ ├── config.go │ ├── config_test.go │ ├── continuous_queries.md │ ├── service.go │ └── service_test.go ├── graphite │ ├── README.md │ ├── config.go │ ├── config_test.go │ ├── errors.go │ ├── parser.go │ ├── parser_test.go │ ├── service.go │ └── service_test.go ├── httpd │ ├── config.go │ ├── config_test.go │ ├── handler.go │ ├── handler_test.go │ ├── listen.go │ ├── listen_test.go │ ├── response_logger.go │ ├── response_writer.go │ └── service.go ├── meta │ ├── client.go │ ├── client_test.go │ ├── config.go │ ├── config_test.go │ ├── data.go │ ├── data_internal_test.go │ ├── data_test.go │ ├── errors.go │ ├── file_unix.go │ ├── file_windows.go │ ├── internal │ │ ├── meta.pb.go │ │ └── meta.proto │ ├── meta_test.go │ ├── query_authorizer.go │ └── write_authorizer.go ├── opentsdb │ ├── README.md │ ├── config.go │ ├── config_test.go │ ├── handler.go │ ├── service.go │ └── service_test.go ├── precreator │ ├── README.md │ ├── config.go │ ├── config_test.go │ ├── service.go │ └── service_test.go ├── retention │ ├── config.go │ ├── config_test.go │ └── service.go ├── snapshotter │ ├── client.go │ ├── service.go │ └── service_test.go ├── subscriber │ ├── config.go │ ├── config_test.go │ ├── http.go │ ├── service.go │ ├── service_test.go │ └── udp.go └── udp │ ├── README.md │ ├── config.go │ ├── config_test.go │ ├── service.go │ └── service_test.go ├── stress ├── DESIGN.md ├── README.md ├── basic.go ├── config.go ├── run.go ├── stress.toml ├── stress_test.go ├── stress_test_server │ └── server.go ├── template.go ├── util.go └── v2 │ ├── DESIGN.md │ ├── README.md │ ├── influx_stress_v2.png │ ├── iql │ ├── default.iql │ └── file.iql │ ├── main.go │ ├── statement │ ├── exec.go │ ├── exec_test.go │ ├── function.go │ ├── function_test.go │ ├── go.go │ ├── go_test.go │ ├── influxql.go │ ├── influxql_test.go │ ├── insert.go │ ├── insert_test.go │ ├── query.go │ ├── query_test.go │ ├── report.go │ ├── report_test.go │ ├── response_time.go │ ├── response_time_test.go │ ├── set.go │ ├── set_test.go │ ├── statement.go │ ├── template.go │ ├── template_test.go │ ├── timestamp.go │ ├── timestamp_test.go │ ├── wait.go │ └── wait_test.go │ ├── stress_client │ ├── commune.go │ ├── commune_test.go │ ├── directive.go │ ├── directive_test.go │ ├── package.go │ ├── package_test.go │ ├── reporting.go │ ├── reporting_test.go │ ├── response.go │ ├── response_test.go │ ├── stressTest.go │ ├── stressTest_test.go │ ├── stress_client.go │ ├── stress_client_query.go │ ├── stress_client_write.go │ ├── tracer.go │ ├── tracer_test.go │ └── util.go │ └── stressql │ ├── parser.go │ ├── parser_test.go │ └── statement │ ├── parser.go │ └── parser_test.go ├── tcp ├── mux.go └── mux_test.go ├── test.sh ├── tests ├── README.md ├── backup_restore_test.go ├── server_bench_test.go ├── server_helpers.go ├── server_suite.go └── server_test.go ├── toml ├── toml.go └── toml_test.go ├── tsdb ├── README.md ├── batcher.go ├── batcher_test.go ├── config.go ├── config_test.go ├── cursor.go ├── doc.go ├── engine.go ├── engine │ ├── engine.go │ └── tsm1 │ │ ├── DESIGN.md │ │ ├── MANIFEST │ │ ├── bit_reader.go │ │ ├── bit_reader_test.go │ │ ├── bool.go │ │ ├── bool_test.go │ │ ├── cache.go │ │ ├── cache_race_test.go │ │ ├── cache_test.go │ │ ├── compact.gen.go │ │ ├── compact.gen.go.tmpl │ │ ├── compact.gen.go.tmpldata │ │ ├── compact.go │ │ ├── compact_test.go │ │ ├── cursor.go │ │ ├── encoding.gen.go │ │ ├── encoding.gen.go.tmpl │ │ ├── encoding.gen.go.tmpldata │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── engine.go │ │ ├── engine_test.go │ │ ├── file_store.gen.go │ │ ├── file_store.gen.go.tmpl │ │ ├── file_store.gen.go.tmpldata │ │ ├── file_store.go │ │ ├── file_store_internal_test.go │ │ ├── file_store_test.go │ │ ├── file_unix.go │ │ ├── file_windows.go │ │ ├── float.go │ │ ├── float_test.go │ │ ├── int.go │ │ ├── int_test.go │ │ ├── iterator.gen.go │ │ ├── iterator.gen.go.tmpl │ │ ├── iterator.gen.go.tmpldata │ │ ├── iterator.go │ │ ├── mmap_solaris.go │ │ ├── mmap_unix.go │ │ ├── mmap_windows.go │ │ ├── pools.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── ring.go │ │ ├── ring_test.go │ │ ├── string.go │ │ ├── string_test.go │ │ ├── timestamp.go │ │ ├── timestamp_test.go │ │ ├── tombstone.go │ │ ├── tombstone_test.go │ │ ├── wal.go │ │ ├── wal_test.go │ │ ├── writer.go │ │ └── writer_test.go ├── index.go ├── index │ ├── index.go │ ├── inmem │ │ └── inmem.go │ ├── internal │ │ └── file_set.go │ └── tsi1 │ │ ├── doc.go │ │ ├── file_set.go │ │ ├── file_set_test.go │ │ ├── index.go │ │ ├── index_file.go │ │ ├── index_file_test.go │ │ ├── index_files.go │ │ ├── index_files_test.go │ │ ├── index_test.go │ │ ├── log_file.go │ │ ├── log_file_test.go │ │ ├── measurement_block.go │ │ ├── measurement_block_test.go │ │ ├── series_block.go │ │ ├── series_block_test.go │ │ ├── tag_block.go │ │ ├── tag_block_test.go │ │ ├── tsi1.go │ │ └── tsi1_test.go ├── internal │ ├── meta.pb.go │ └── meta.proto ├── meta.go ├── meta_test.go ├── shard.go ├── shard_test.go ├── store.go └── store_test.go └── uuid └── uuid.go /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/.envrc -------------------------------------------------------------------------------- /bin/cadvisor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/bin/cadvisor -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/AUTHORS -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/CHANGELOG.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/Godeps/Godeps.json -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/Godeps/Readme -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/Makefile -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/api/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/api/handler.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/api/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/api/versions.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/api/versions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/api/versions_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/assets.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/boilerplate/boilerplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/boilerplate/boilerplate.py -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/boilerplate/boilerplate.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/boilerplate/boilerplate.py.txt -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/boilerplate/boilerplate.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/boilerplate/boilerplate.sh.txt -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/build.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/check_boilerplate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/check_boilerplate.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/check_errorf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/check_errorf.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/check_gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/check_gofmt.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/integration.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/jenkins_e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/jenkins_e2e.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/build/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/build/release.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/cache/cache.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/cache/memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/cache/memory/memory.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/cache/memory/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/cache/memory/memory_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/cadvisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/cadvisor.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/cadvisor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/cadvisor_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/client/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/client/client.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/client/client_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/client/clientexample/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/client/clientexample/main.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/client/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/client/v2/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/client/v2/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/client/v2/client.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/client/v2/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/client/v2/client_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/collector_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/collector_manager.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/collector_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/collector_manager_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/config.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/config/sample_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/config/sample_config.json -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/fakes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/fakes.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/generic_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/generic_collector.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/generic_collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/generic_collector_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/prometheus_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/prometheus_collector.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/prometheus_collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/prometheus_collector_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/types.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/collector/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/collector/util.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/common/container_hints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/common/container_hints.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/common/fsHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/common/fsHandler.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/common/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/common/helpers.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/common/inotify_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/common/inotify_watcher.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/container.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/docker/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/docker/client.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/docker/docker.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/docker/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/docker/docker_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/docker/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/docker/factory.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/docker/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/docker/factory_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/docker/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/docker/handler.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/docker/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/docker/handler_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/factory.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/factory_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/libcontainer/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/libcontainer/helpers.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/libcontainer/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/libcontainer/helpers_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/raw/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/raw/factory.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/raw/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/raw/handler.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/raw/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/raw/handler_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/rkt/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/rkt/client.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/rkt/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/rkt/client_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/rkt/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/rkt/factory.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/rkt/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/rkt/handler.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/rkt/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/rkt/helpers.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/systemd/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/systemd/factory.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/container/testing/mock_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/container/testing/mock_handler.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/deploy/Dockerfile -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/deploy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/deploy/build.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/deploy/canary/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/deploy/canary/Dockerfile -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/devicemapper/dmsetup_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/devicemapper/dmsetup_client.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/devicemapper/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/devicemapper/doc.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/devicemapper/thin_ls_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/devicemapper/thin_ls_client.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/devicemapper/thin_ls_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/devicemapper/thin_ls_client_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/devicemapper/thin_pool_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/devicemapper/thin_pool_watcher.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/devicemapper/thin_pool_watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/devicemapper/thin_pool_watcher_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/devicemapper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/devicemapper/util.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/api.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/api_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/api_v2.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/application_metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/application_metrics.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/clients.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/deploy.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/development/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/development/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/development/build.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/development/integration_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/development/integration_testing.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/development/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/development/issues.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/development/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/development/releasing.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/running.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/runtime_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/runtime_options.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/storage/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/storage/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/storage/elasticsearch.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/storage/influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/storage/influxdb.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/storage/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/storage/kafka.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/storage/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/storage/prometheus.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/docs/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/docs/web.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/events/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/events/handler.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/events/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/events/handler_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/fs/fs.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/fs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/fs/fs_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/fs/test_resources/diskstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/fs/test_resources/diskstats -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/fs/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/fs/types.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/healthz/healthz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/healthz/healthz.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/http/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/http/handlers.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/http/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/http/mux/mux.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v1/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v1/container.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v1/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v1/container_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v1/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v1/docker.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v1/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v1/machine.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v1/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v1/metric.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v1/test/datagen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v1/test/datagen.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v2/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v2/container.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v2/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v2/conversion.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v2/conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v2/conversion_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/info/v2/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/info/v2/machine.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/framework/framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/framework/framework.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/runner/retrywhitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/runner/retrywhitelist.txt -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/runner/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/runner/run.sh -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/runner/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/runner/runner.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/tests/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/tests/TODO.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/tests/api/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/tests/api/docker_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/tests/api/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/tests/api/event_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/tests/api/machine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/tests/api/machine_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/tests/api/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/tests/api/test_utils.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/integration/tests/healthz/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/integration/tests/healthz/test_utils.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/logo.png -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/machine/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/machine/info.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/machine/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/machine/machine.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/machine/testdata/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/machine/testdata/cpuinfo -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/machine/topology_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/machine/topology_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/manager/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/manager/container.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/manager/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/manager/container_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/manager/manager.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/manager/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/manager/manager_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/manager/watcher/raw/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/manager/watcher/raw/raw.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/manager/watcher/rkt/rkt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/manager/watcher/rkt/rkt.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/manager/watcher/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/manager/watcher/watcher.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/metrics/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/metrics/prometheus.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/metrics/prometheus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/metrics/prometheus_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/metrics/testdata/prometheus_metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/metrics/testdata/prometheus_metrics -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/assets/html/containers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/assets/html/containers.html -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/assets/js/bootstrap-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/assets/js/bootstrap-3.1.1.min.js -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/assets/js/containers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/assets/js/containers.js -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/assets/js/gcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/assets/js/gcharts.js -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/assets/js/google-jsapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/assets/js/google-jsapi.js -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/assets/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/assets/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/assets/styles/containers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/assets/styles/containers.css -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/containers.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/docker.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/pages.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/static/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/static/assets.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/static/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/static/static.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/pages/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/pages/templates.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/bigquery/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/bigquery/bigquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/bigquery/bigquery.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/bigquery/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/bigquery/client/client.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/common_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/common_flags.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/elasticsearch/elasticsearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/elasticsearch/elasticsearch.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/influxdb/influxdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/influxdb/influxdb.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/influxdb/influxdb.go_origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/influxdb/influxdb.go_origin -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/influxdb/influxdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/influxdb/influxdb_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/kafka/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/kafka/kafka.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/redis/redis.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/statsd/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/statsd/client/client.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/statsd/statsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/statsd/statsd.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/stdout/stdout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/stdout/stdout.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/storage.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/test/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/test/mock.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storage/test/storagetests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storage/test/storagetests.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/storagedriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/storagedriver.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/summary/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/summary/buffer.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/summary/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/summary/buffer_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/summary/percentiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/summary/percentiles.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/summary/percentiles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/summary/percentiles_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/summary/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/summary/summary.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/test.htdigest: -------------------------------------------------------------------------------- 1 | admin:localhost:70f2631dded4ce5ad0ebbea5faa6ad6e 2 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/test.htpasswd: -------------------------------------------------------------------------------- 1 | admin:$apr1$WVO0Bsre$VrmWGDbcBV1fdAkvgQwdk0 2 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cloudinfo/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cloudinfo/aws.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cloudinfo/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cloudinfo/azure.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cloudinfo/cloudinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cloudinfo/cloudinfo.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cloudinfo/gce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cloudinfo/gce.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/container/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/container/container.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cpuload/cpuload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cpuload/cpuload.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cpuload/netlink/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cpuload/netlink/conn.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cpuload/netlink/defs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cpuload/netlink/defs.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cpuload/netlink/netlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cpuload/netlink/netlink.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/cpuload/netlink/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/cpuload/netlink/reader.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/docker/docker.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/oomparser/oomexample/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/oomparser/oomexample/main.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/oomparser/oomparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/oomparser/oomparser.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/oomparser/oomparser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/oomparser/oomparser_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/oomparser/systemOomExampleLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/oomparser/systemOomExampleLog.txt -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/path.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/procfs/doc.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/procfs/jiffy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/procfs/jiffy.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/sysfs/fakesysfs/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/sysfs/fakesysfs/fake.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/sysfs/sysfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/sysfs/sysfs.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/sysinfo/sysinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/sysinfo/sysinfo.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/sysinfo/sysinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/sysinfo/sysinfo_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/tail/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/tail/tail.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/tail/tail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/tail/tail_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/timed_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/timed_store.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/timed_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/timed_store_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/utils/utils.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/validate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/validate/validate.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/validate/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/validate/validate_test.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/abbot/go-http-auth/test.htdigest: -------------------------------------------------------------------------------- 1 | test:example.com:aa78524fceb0e50fd8ca96dd818b8cf9 2 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/abbot/go-http-auth/test.htpasswd: -------------------------------------------------------------------------------- 1 | test:{SHA}qvTGHdzF6KLavt4PO0gs2a6pQ00= 2 | test2:$apr1$a0j62R97$mYqFkloXH0/UOaUnAiV2b0 3 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/blang/semver/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/blang/semver/range.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/coreos/rkt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/coreos/rkt/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/docker/engine-api/client/privileged.go: -------------------------------------------------------------------------------- 1 | package client 2 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/eapache/queue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/eapache/queue/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/.gitignore -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/ini.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/parser.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/go-ini/ini/struct.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/auth.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/call.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/conn.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/dbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/dbus.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/doc.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/export.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/object.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/sig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/godbus/dbus/sig.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/pretty/License -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/pretty/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/pretty/Readme -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/pretty/diff.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/pretty/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/pretty/pretty.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/pretty/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/pretty/zero.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/text/License -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/text/Readme -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/text/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/text/indent.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/kr/text/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/kr/text/wrap.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/mistifyio/go-zfs/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package cgroups 4 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/fs_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package fs 4 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/json.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/go15.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/PATENTS -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/picker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/picker.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/version/version.go -------------------------------------------------------------------------------- /src/github.com/google/cadvisor/zfs/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/google/cadvisor/zfs/watcher.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/.mention-bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/.mention-bot -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/CHANGELOG.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/CODING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/CODING_GUIDELINES.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/DOCKER.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/Dockerfile -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/Dockerfile_build_ubuntu32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/Dockerfile_build_ubuntu32 -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/Dockerfile_build_ubuntu64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/Dockerfile_build_ubuntu64 -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/Dockerfile_build_ubuntu64_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/Dockerfile_build_ubuntu64_git -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/Dockerfile_test_ubuntu32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/Dockerfile_test_ubuntu32 -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/Godeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/Godeps -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/LICENSE -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/LICENSE_OF_DEPENDENCIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/LICENSE_OF_DEPENDENCIES.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/Makefile -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/QUERIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/QUERIES.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/TODO.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/appveyor.yml -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/build-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/build-docker.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/build.py -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/build.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/circle-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/circle-test.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/circle.yml -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/client/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/client/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/client/example_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/client/influxdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/client/influxdb.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/client/influxdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/client/influxdb_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/client/v2/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/client/v2/client.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/client/v2/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/client/v2/client_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/client/v2/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/client/v2/example_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/client/v2/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/client/v2/udp.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx/cli/cli.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx/cli/cli_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx/cli/cli_internal_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx/cli/cli_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx/cli/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx/cli/parser.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx/main.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_inspect/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/dumptsm/dumptsm_test.go: -------------------------------------------------------------------------------- 1 | package dumptsm_test 2 | 3 | // TODO: write some tests 4 | -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/export/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_inspect/export/export.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/help/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_inspect/help/help.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/help/help_test.go: -------------------------------------------------------------------------------- 1 | package help_test 2 | 3 | // TODO: write some tests 4 | -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_inspect/main.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/report/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_inspect/report/report.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/report/report_test.go: -------------------------------------------------------------------------------- 1 | package report_test 2 | 3 | // TODO: write some tests 4 | -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/verify/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_inspect/verify/verify.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_inspect/verify/verify_test.go: -------------------------------------------------------------------------------- 1 | package verify_test 2 | 3 | // TODO: write some tests 4 | -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_stress/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_stress/influx_stress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_stress/influx_stress.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/b1/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/b1/reader.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/bz1/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/bz1/reader.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/converter.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/main.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/stats/stats.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/tracker.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/codec.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/database.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/types.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/backup/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/backup/backup.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/help/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/help/help.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/main.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/restore/restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/restore/restore.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/run/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/run/command.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/run/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/run/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/run/config_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/run/config_command.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/run/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/run/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/influxd/run/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/influxd/run/server.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/cmd/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/cmd/parse.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/meta_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/meta_client.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/meta_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/meta_client_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/points_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/points_writer.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/points_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/points_writer_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/shard_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/shard_mapper.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/shard_mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/shard_mapper_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/coordinator/statement_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/coordinator/statement_executor.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/errors.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/etc/burn-in/.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use ruby-2.1.0@burn-in --create 2 | -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/etc/burn-in/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/etc/burn-in/Gemfile -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/etc/burn-in/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/etc/burn-in/Gemfile.lock -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/etc/burn-in/burn-in.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/etc/burn-in/burn-in.rb -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/etc/burn-in/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/etc/burn-in/log.rb -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/etc/burn-in/random_gaussian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/etc/burn-in/random_gaussian.rb -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/etc/burn-in/random_points.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/etc/burn-in/random_points.rb -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/etc/config.sample.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/etc/config.sample.toml -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/gobuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/gobuild.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/importer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/importer/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/importer/v8/importer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/importer/v8/importer.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxdb.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/ast.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/ast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/ast_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/call_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/call_iterator.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/call_iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/call_iterator_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/cast.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/doc.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/emitter.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/emitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/emitter_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/functions.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/functions.gen.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/functions.gen.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/functions.gen.go.tmpl -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/functions.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/functions_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/influxql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/influxql.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/internal/internal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/internal/internal.pb.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/internal/internal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/internal/internal.proto -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/iterator.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/iterator.gen.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/iterator.gen.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/iterator.gen.go.tmpl -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/iterator.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/iterator_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/iterator_mapper.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/iterator_mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/iterator_mapper_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/iterator_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/linear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/linear.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/monitor.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/neldermead/neldermead.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/neldermead/neldermead.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/parser.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/parser_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/point.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/point.gen.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/point.gen.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/point.gen.go.tmpl -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/point.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/point_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/query_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/query_executor.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/query_executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/query_executor_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/result.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/sanitize.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/sanitize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/sanitize_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/scanner.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/scanner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/scanner_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/select.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/select_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/select_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/statement_rewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/statement_rewriter.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/statement_rewriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/statement_rewriter_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/task_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/task_manager.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/tmpldata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/tmpldata -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/influxql/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/influxql/token.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/internal/meta_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/internal/meta_client.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/Makefile -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/footer.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influx.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influx_inspect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influx_inspect.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influx_stress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influx_stress.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influx_tsm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influx_tsm.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influxd-backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influxd-backup.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influxd-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influxd-config.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influxd-restore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influxd-restore.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influxd-run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influxd-run.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influxd-version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influxd-version.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/man/influxd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/man/influxd.txt -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/consistency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/consistency.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/inline_fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/inline_fnv.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/inline_fnv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/inline_fnv_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/inline_strconv_parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/inline_strconv_parse.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/inline_strconv_parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/inline_strconv_parse_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/points.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/points.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/points_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/points_internal_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/points_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/points_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/rows.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/statistic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/statistic.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/statistic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/statistic_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/models/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/models/time.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/build_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/build_info.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/diagnostics/diagnostics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/diagnostics/diagnostics.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/go_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/go_runtime.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/network.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/reporter.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/monitor/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/monitor/system.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/nightly.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/node.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/package.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/bytesutil/bytesutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/bytesutil/bytesutil.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/deep/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/deep/equal.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/escape/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/escape/bytes.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/escape/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/escape/bytes_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/escape/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/escape/strings.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/escape/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/escape/strings_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/estimator/hll/compressed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/estimator/hll/compressed.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/estimator/hll/empirical_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/estimator/hll/empirical_data.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/estimator/hll/hll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/estimator/hll/hll.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/estimator/hll/hll_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/estimator/hll/hll_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/estimator/sketch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/estimator/sketch.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/limiter/fixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/limiter/fixed.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/mmap/mmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/mmap/mmap_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/mmap/mmap_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/mmap/mmap_unix.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/mmap/mmap_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/mmap/mmap_windows.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/pool/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/pool/bytes.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/pool/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/pool/generic.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/rhh/rhh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/rhh/rhh.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/rhh/rhh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/rhh/rhh_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/pkg/slices/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/pkg/slices/strings.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/scripts/influxdb.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/scripts/influxdb.service -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/scripts/init.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/scripts/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/scripts/logrotate -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/scripts/post-install.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/scripts/post-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/scripts/post-uninstall.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/scripts/pre-install.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/admin.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/assets/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/assets/css/admin.css -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/assets/index.html -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/assets/js/admin.js -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/service_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/statik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/statik/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/admin/statik/statik.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/admin/statik/statik.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/collectd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/collectd/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/collectd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/collectd/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/collectd/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/collectd/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/collectd/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/collectd/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/collectd/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/collectd/service_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/graphite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/graphite/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/graphite/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/graphite/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/graphite/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/graphite/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/graphite/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/graphite/errors.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/graphite/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/graphite/parser.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/graphite/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/graphite/parser_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/graphite/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/graphite/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/graphite/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/graphite/service_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/handler.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/handler_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/listen.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/listen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/listen_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/response_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/response_logger.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/response_writer.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/httpd/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/httpd/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/client.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/client_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/data.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/data_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/data_internal_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/data_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/errors.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/file_unix.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/file_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/file_windows.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/internal/meta.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/internal/meta.pb.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/internal/meta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/internal/meta.proto -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/meta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/meta_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/query_authorizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/query_authorizer.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/meta/write_authorizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/meta/write_authorizer.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/opentsdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/opentsdb/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/opentsdb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/opentsdb/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/opentsdb/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/opentsdb/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/opentsdb/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/opentsdb/handler.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/opentsdb/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/opentsdb/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/opentsdb/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/opentsdb/service_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/precreator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/precreator/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/precreator/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/precreator/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/precreator/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/precreator/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/precreator/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/precreator/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/precreator/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/precreator/service_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/retention/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/retention/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/retention/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/retention/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/retention/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/retention/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/snapshotter/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/snapshotter/client.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/snapshotter/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/snapshotter/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/snapshotter/service_test.go: -------------------------------------------------------------------------------- 1 | package snapshotter_test 2 | -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/subscriber/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/subscriber/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/subscriber/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/subscriber/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/subscriber/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/subscriber/http.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/subscriber/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/subscriber/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/subscriber/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/subscriber/service_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/subscriber/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/subscriber/udp.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/udp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/udp/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/udp/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/udp/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/udp/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/udp/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/udp/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/udp/service.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/services/udp/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/services/udp/service_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/DESIGN.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/basic.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/run.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/stress.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/stress.toml -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/stress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/stress_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/stress_test_server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/stress_test_server/server.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/template.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/util.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/DESIGN.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/influx_stress_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/influx_stress_v2.png -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/iql/default.iql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/iql/default.iql -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/iql/file.iql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/iql/file.iql -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/main.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/exec.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/exec_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/function.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/go.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/go_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/go_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/influxql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/influxql.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/insert.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/insert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/insert_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/query.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/query_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/report.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/report_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/set.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/set_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/statement.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/template.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/timestamp.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/wait.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/statement/wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/statement/wait_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/stress_client/commune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/stress_client/commune.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/stress_client/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/stress_client/package.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/stress_client/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/stress_client/response.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/stress_client/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/stress_client/tracer.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/stress_client/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/stress_client/util.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/stressql/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/stressql/parser.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/stress/v2/stressql/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/stress/v2/stressql/parser_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tcp/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tcp/mux.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tcp/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tcp/mux_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/test.sh -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tests/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tests/backup_restore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tests/backup_restore_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tests/server_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tests/server_bench_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tests/server_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tests/server_helpers.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tests/server_suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tests/server_suite.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tests/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tests/server_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/toml/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/toml/toml.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/toml/toml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/toml/toml_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/README.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/batcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/batcher.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/batcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/batcher_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/config.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/config_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/cursor.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/doc.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/engine.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/DESIGN.md -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/MANIFEST -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/bit_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/bit_reader.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/bit_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/bit_reader_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/bool.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/bool_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/cache.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/cache_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact.gen.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/cursor.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding.gen.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/engine.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/engine_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_store.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_unix.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_windows.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/float.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/float_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/float_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/int.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/int_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/iterator.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/iterator.gen.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/iterator.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_solaris.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_unix.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_windows.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/pools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/pools.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/reader.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/reader_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/ring.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/ring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/ring_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/string.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/string_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/timestamp.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/tombstone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/tombstone.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/wal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/wal.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/wal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/wal_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/writer.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/engine/tsm1/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/engine/tsm1/writer_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/index.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/inmem/inmem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/inmem/inmem.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/internal/file_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/internal/file_set.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/doc.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/file_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/file_set.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/file_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/file_set_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/index.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/index_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/index_file.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/index_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/index_files.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/index_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/log_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/log_file.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/log_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/log_file_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/series_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/series_block.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/tag_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/tag_block.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/tag_block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/tag_block_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/tsi1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/tsi1.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/index/tsi1/tsi1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/index/tsi1/tsi1_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/internal/meta.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/internal/meta.pb.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/internal/meta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/internal/meta.proto -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/meta.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/meta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/meta_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/shard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/shard.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/shard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/shard_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/store.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/tsdb/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/tsdb/store_test.go -------------------------------------------------------------------------------- /src/github.com/influxdata/influxdb/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/cadvisor/HEAD/src/github.com/influxdata/influxdb/uuid/uuid.go --------------------------------------------------------------------------------