├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.dind ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY_CONTACTS ├── cloudbuild.yaml ├── cmd ├── checkfd │ └── check_fd.go ├── healthchecker │ ├── health_checker.go │ └── options │ │ ├── options.go │ │ └── options_test.go ├── logcounter │ ├── log_counter.go │ └── options │ │ └── options.go ├── nodeproblemdetector │ ├── exporterplugins │ │ ├── default_plugin.go │ │ └── stackdriver_exporter_plugin.go │ ├── node_problem_detector.go │ ├── node_problem_detector_linux.go │ ├── node_problem_detector_test.go │ ├── node_problem_detector_windows.go │ ├── node_problem_detector_windows_test.go │ └── problemdaemonplugins │ │ ├── custom_plugin_monitor_plugin.go │ │ ├── system_log_monitor_plugin.go │ │ └── system_stats_monitor_plugin.go └── options │ ├── options.go │ └── options_test.go ├── code-of-conduct.md ├── config ├── abrt-adaptor.json ├── custom-plugin-monitor.json ├── docker-monitor-counter.json ├── docker-monitor-filelog.json ├── docker-monitor.json ├── exporter │ └── stackdriver-exporter.json ├── fd-problem-monitor.json ├── guestosconfig │ └── known-modules.json ├── health-checker-containerd.json ├── health-checker-docker.json ├── health-checker-kubelet.json ├── kernel-monitor-counter.json ├── kernel-monitor-filelog.json ├── kernel-monitor.json ├── net-cgroup-system-stats-monitor.json ├── network-problem-monitor.json ├── plugin │ ├── check_fd.sh │ ├── check_ntp.sh │ ├── network_problem.sh │ └── windows_defender_problem.ps1 ├── system-stats-monitor.json ├── systemd-monitor-counter.json ├── systemd-monitor.json ├── systemd │ └── node-problem-detector-metric-only.service ├── windows-containerd-monitor-filelog.json ├── windows-defender-monitor.json ├── windows-health-checker-containerd.json ├── windows-health-checker-docker.json ├── windows-health-checker-kubelet.json ├── windows-health-checker-kubeproxy.json └── windows-system-stats-monitor.json ├── deployment ├── node-problem-detector-config.yaml ├── node-problem-detector-healthchecker.yaml └── node-problem-detector.yaml ├── docs ├── custom_plugin_monitor.md └── release_process.md ├── go.mod ├── go.sum ├── pkg ├── custompluginmonitor │ ├── README.md │ ├── custom_plugin_monitor.go │ ├── custom_plugin_monitor_test.go │ ├── plugin │ │ ├── plugin.go │ │ ├── plugin_test.go │ │ └── test-data │ │ │ ├── longer-than-80-stdout-with-ok-exit-status.cmd │ │ │ ├── longer-than-80-stdout-with-ok-exit-status.sh │ │ │ ├── non-defined-exit-status.cmd │ │ │ ├── non-defined-exit-status.sh │ │ │ ├── non-executable.sh │ │ │ ├── non-ok.cmd │ │ │ ├── non-ok.sh │ │ │ ├── ok.cmd │ │ │ ├── ok.sh │ │ │ ├── sleep-3-second-with-ok-exit-status.cmd │ │ │ ├── sleep-3-second-with-ok-exit-status.sh │ │ │ ├── unknown.cmd │ │ │ └── unknown.sh │ └── types │ │ ├── config.go │ │ ├── config_test.go │ │ └── types.go ├── exporters │ ├── k8sexporter │ │ ├── condition │ │ │ ├── manager.go │ │ │ └── manager_test.go │ │ ├── k8s_exporter.go │ │ └── problemclient │ │ │ ├── fake_problem_client.go │ │ │ ├── problem_client.go │ │ │ └── problem_client_test.go │ ├── prometheusexporter │ │ └── prometheus_exporter.go │ ├── register.go │ ├── register_test.go │ └── stackdriver │ │ ├── config │ │ ├── config.go │ │ └── config_test.go │ │ ├── gce │ │ └── type.go │ │ ├── stackdriver_exporter.go │ │ └── stackdriver_exporter_test.go ├── healthchecker │ ├── health_checker.go │ ├── health_checker_linux.go │ ├── health_checker_test.go │ ├── health_checker_windows.go │ └── types │ │ ├── types.go │ │ ├── types_linux.go │ │ ├── types_test.go │ │ └── types_windows.go ├── logcounter │ ├── log_counter.go │ ├── log_counter_test.go │ └── types │ │ └── types.go ├── problemdaemon │ ├── problem_daemon.go │ └── problem_daemon_test.go ├── problemdetector │ ├── problem_detector.go │ └── problem_detector_test.go ├── problemmetrics │ ├── problem_metrics.go │ ├── problem_metrics_stub.go │ └── problem_metrics_test.go ├── systemlogmonitor │ ├── README.md │ ├── config.go │ ├── log_buffer.go │ ├── log_buffer_test.go │ ├── log_monitor.go │ ├── log_monitor_test.go │ ├── logwatchers │ │ ├── filelog │ │ │ ├── log_watcher.go │ │ │ ├── log_watcher_linux.go │ │ │ ├── log_watcher_test.go │ │ │ ├── log_watcher_windows.go │ │ │ ├── translator.go │ │ │ └── translator_test.go │ │ ├── journald │ │ │ ├── log_watcher.go │ │ │ └── log_watcher_test.go │ │ ├── kmsg │ │ │ ├── log_watcher_linux.go │ │ │ ├── log_watcher_linux_test.go │ │ │ └── log_watcher_windows.go │ │ ├── log_watchers.go │ │ ├── register_filelog.go │ │ ├── register_journald.go │ │ ├── register_kmsg.go │ │ ├── testing │ │ │ └── fake_log_watcher.go │ │ └── types │ │ │ └── log_watcher.go │ └── types │ │ └── types.go ├── systemstatsmonitor │ ├── README.md │ ├── cpu_collector.go │ ├── cpu_collector_linux.go │ ├── cpu_collector_test.go │ ├── cpu_collector_windows.go │ ├── disk_collector.go │ ├── disk_collector_test.go │ ├── host_collector.go │ ├── host_collector_test.go │ ├── labels.go │ ├── memory_collector.go │ ├── memory_collector_linux.go │ ├── memory_collector_test.go │ ├── memory_collector_windows.go │ ├── net_collector.go │ ├── osfeature_collector.go │ ├── system_stats_monitor.go │ ├── system_stats_monitor_test.go │ └── types │ │ ├── config.go │ │ └── config_test.go ├── types │ └── types.go ├── util │ ├── convert.go │ ├── convert_test.go │ ├── exec_linux.go │ ├── exec_test.go │ ├── exec_windows.go │ ├── helpers.go │ ├── helpers_linux.go │ ├── helpers_linux_test.go │ ├── helpers_test.go │ ├── helpers_windows.go │ ├── http.go │ ├── metrics │ │ ├── fakes.go │ │ ├── fakes_test.go │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── metric.go │ │ ├── metric_float64.go │ │ ├── metric_int64.go │ │ ├── system │ │ │ ├── cmdline_args.go │ │ │ ├── cmdline_args_test.go │ │ │ ├── common.go │ │ │ ├── module_stats.go │ │ │ ├── module_stats_test.go │ │ │ └── testdata │ │ │ │ ├── cmdline_args_key_cos.txt │ │ │ │ ├── cmdline_args_sample.txt │ │ │ │ ├── modules_cos.txt │ │ │ │ └── modules_ubuntu.txt │ │ └── testdata │ │ │ ├── hello-world.bat │ │ │ ├── hello-world.cmd │ │ │ ├── hello-world.ps1 │ │ │ └── sample_metrics.txt │ ├── nethealth │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ └── nethealth.go │ ├── testdata │ │ ├── os-release-centos │ │ ├── os-release-cos │ │ ├── os-release-debian │ │ ├── os-release-empty │ │ ├── os-release-rhel │ │ ├── os-release-ubuntu │ │ └── os-release-unknown │ └── tomb │ │ ├── tomb.go │ │ └── tomb_test.go └── version │ └── version.go ├── test ├── build.sh ├── e2e-install.sh ├── e2e │ ├── README.md │ ├── lib │ │ ├── gce │ │ │ ├── gce.go │ │ │ └── instance.go │ │ ├── npd │ │ │ └── npd.go │ │ └── ssh │ │ │ └── ssh.go │ ├── metriconly │ │ ├── e2e_npd_test.go │ │ └── metrics_test.go │ └── problemmaker │ │ ├── README.md │ │ ├── makers │ │ ├── docker.go │ │ ├── filesystem.go │ │ ├── kernel.go │ │ └── register.go │ │ └── problem_maker.go └── kernel_log_generator │ ├── Dockerfile │ ├── Makefile │ ├── generator.sh │ └── problems │ ├── au_opts_verify │ ├── aufs_umount_hung │ ├── divide_zero │ ├── docker_hung │ ├── null_pointer │ ├── oom_kill │ ├── readonly_filesystem │ └── unregister_netdevice └── vendor ├── cloud.google.com └── go │ ├── LICENSE │ ├── compute │ └── metadata │ │ └── metadata.go │ ├── container │ └── apiv1 │ │ ├── cluster_manager_client.go │ │ └── doc.go │ ├── internal │ └── version │ │ ├── update_version.sh │ │ └── version.go │ ├── monitoring │ └── apiv3 │ │ ├── alert_policy_client.go │ │ ├── doc.go │ │ ├── group_client.go │ │ ├── metric_client.go │ │ ├── notification_channel_client.go │ │ ├── path_funcs.go │ │ └── uptime_check_client.go │ └── trace │ └── apiv2 │ ├── doc.go │ ├── path_funcs.go │ └── trace_client.go ├── code.cloudfoundry.org └── clock │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── clock.go │ ├── fakeclock │ ├── fake_clock.go │ ├── fake_ticker.go │ ├── fake_timer.go │ └── package.go │ ├── package.go │ ├── ticker.go │ └── timer.go ├── contrib.go.opencensus.io └── exporter │ ├── prometheus │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── prometheus.go │ └── sanitize.go │ └── stackdriver │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RESOURCE.md │ ├── go.mod │ ├── go.sum │ ├── label.go │ ├── metrics.go │ ├── metrics_batcher.go │ ├── metrics_proto.go │ ├── monitoredresource │ ├── aws │ │ ├── aws_identity_doc_utils.go │ │ └── monitored_resources.go │ ├── deprecated.go │ ├── gcp │ │ ├── gcp_metadata_config.go │ │ └── monitored_resources.go │ └── monitored_resources.go │ ├── resource.go │ ├── sanitize.go │ ├── stackdriver.go │ ├── stats.go │ ├── trace.go │ └── trace_proto.go ├── github.com ├── StackExchange │ └── wmi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── swbemservices.go │ │ └── wmi.go ├── avast │ └── retry-go │ │ ├── .gitignore │ │ ├── .godocdown.tmpl │ │ ├── .travis.yml │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── VERSION │ │ ├── appveyor.yml │ │ ├── options.go │ │ └── retry.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 │ │ │ ├── logger.go │ │ │ └── metadata │ │ │ │ └── client_info.go │ │ ├── config.go │ │ ├── context_1_5.go │ │ ├── context_1_9.go │ │ ├── context_background_1_5.go │ │ ├── context_background_1_7.go │ │ ├── context_sleep.go │ │ ├── convert_types.go │ │ ├── corehandlers │ │ │ ├── handlers.go │ │ │ ├── param_validator.go │ │ │ └── user_agent.go │ │ ├── credentials │ │ │ ├── chain_provider.go │ │ │ ├── credentials.go │ │ │ ├── ec2rolecreds │ │ │ │ └── ec2_role_provider.go │ │ │ ├── endpointcreds │ │ │ │ └── provider.go │ │ │ ├── env_provider.go │ │ │ ├── example.ini │ │ │ ├── processcreds │ │ │ │ └── provider.go │ │ │ ├── shared_credentials_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── csm │ │ │ ├── doc.go │ │ │ ├── enable.go │ │ │ ├── metric.go │ │ │ ├── metric_chan.go │ │ │ ├── metric_exception.go │ │ │ └── reporter.go │ │ ├── defaults │ │ │ ├── defaults.go │ │ │ └── shared_config.go │ │ ├── doc.go │ │ ├── ec2metadata │ │ │ ├── api.go │ │ │ └── service.go │ │ ├── endpoints │ │ │ ├── decode.go │ │ │ ├── defaults.go │ │ │ ├── dep_service_ids.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── v3model.go │ │ │ └── v3model_codegen.go │ │ ├── errors.go │ │ ├── jsonvalue.go │ │ ├── logger.go │ │ ├── request │ │ │ ├── connection_reset_error.go │ │ │ ├── handlers.go │ │ │ ├── http_request.go │ │ │ ├── offset_reader.go │ │ │ ├── request.go │ │ │ ├── request_1_7.go │ │ │ ├── request_1_8.go │ │ │ ├── request_context.go │ │ │ ├── request_context_1_6.go │ │ │ ├── request_pagination.go │ │ │ ├── retryer.go │ │ │ ├── timeout_read_closer.go │ │ │ ├── validation.go │ │ │ └── waiter.go │ │ ├── session │ │ │ ├── cabundle_transport.go │ │ │ ├── cabundle_transport_1_5.go │ │ │ ├── cabundle_transport_1_6.go │ │ │ ├── credentials.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── session.go │ │ │ └── shared_config.go │ │ ├── signer │ │ │ └── v4 │ │ │ │ ├── header_rules.go │ │ │ │ ├── options.go │ │ │ │ ├── uri_path.go │ │ │ │ └── v4.go │ │ ├── types.go │ │ ├── url.go │ │ ├── url_1_7.go │ │ └── version.go │ │ ├── internal │ │ ├── ini │ │ │ ├── ast.go │ │ │ ├── comma_token.go │ │ │ ├── comment_token.go │ │ │ ├── doc.go │ │ │ ├── empty_token.go │ │ │ ├── expression.go │ │ │ ├── fuzz.go │ │ │ ├── ini.go │ │ │ ├── ini_lexer.go │ │ │ ├── ini_parser.go │ │ │ ├── literal_tokens.go │ │ │ ├── newline_token.go │ │ │ ├── number_helper.go │ │ │ ├── op_tokens.go │ │ │ ├── parse_error.go │ │ │ ├── parse_stack.go │ │ │ ├── sep_tokens.go │ │ │ ├── skipper.go │ │ │ ├── statement.go │ │ │ ├── value_util.go │ │ │ ├── visitor.go │ │ │ ├── walker.go │ │ │ └── ws_token.go │ │ ├── sdkio │ │ │ ├── io_go1.6.go │ │ │ └── io_go1.7.go │ │ ├── sdkmath │ │ │ ├── floor.go │ │ │ └── floor_go1.9.go │ │ ├── sdkrand │ │ │ └── locked_source.go │ │ ├── sdkuri │ │ │ └── path.go │ │ └── shareddefaults │ │ │ ├── ecs_container.go │ │ │ └── shared_config.go │ │ ├── private │ │ └── protocol │ │ │ ├── host.go │ │ │ ├── host_prefix.go │ │ │ ├── idempotency.go │ │ │ ├── json │ │ │ └── jsonutil │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.go │ │ │ ├── jsonvalue.go │ │ │ ├── payload.go │ │ │ ├── query │ │ │ ├── build.go │ │ │ ├── queryutil │ │ │ │ └── queryutil.go │ │ │ ├── unmarshal.go │ │ │ └── unmarshal_error.go │ │ │ ├── rest │ │ │ ├── build.go │ │ │ ├── payload.go │ │ │ └── unmarshal.go │ │ │ ├── timestamp.go │ │ │ ├── unmarshal.go │ │ │ └── xml │ │ │ └── xmlutil │ │ │ ├── build.go │ │ │ ├── unmarshal.go │ │ │ └── xml_to_struct.go │ │ └── service │ │ └── sts │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── stsiface │ │ └── interface.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── census-instrumentation │ └── opencensus-proto │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── gen-go │ │ ├── agent │ │ └── common │ │ │ └── v1 │ │ │ └── common.pb.go │ │ ├── metrics │ │ └── v1 │ │ │ └── metrics.pb.go │ │ └── resource │ │ └── v1 │ │ └── resource.pb.go ├── cobaugh │ └── osrelease │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── osrelease.go ├── coreos │ ├── go-systemd │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── sdjournal │ │ │ ├── functions.go │ │ │ ├── journal.go │ │ │ └── read.go │ └── pkg │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── dlopen │ │ ├── dlopen.go │ │ └── dlopen_example.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── euank │ └── go-kmsg-parser │ │ ├── LICENSE │ │ └── kmsgparser │ │ ├── kmsgparser.go │ │ └── log.go ├── go-ole │ └── go-ole │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── com.go │ │ ├── com_func.go │ │ ├── connect.go │ │ ├── constants.go │ │ ├── error.go │ │ ├── error_func.go │ │ ├── error_windows.go │ │ ├── go.mod │ │ ├── guid.go │ │ ├── iconnectionpoint.go │ │ ├── iconnectionpoint_func.go │ │ ├── iconnectionpoint_windows.go │ │ ├── iconnectionpointcontainer.go │ │ ├── iconnectionpointcontainer_func.go │ │ ├── iconnectionpointcontainer_windows.go │ │ ├── idispatch.go │ │ ├── idispatch_func.go │ │ ├── idispatch_windows.go │ │ ├── ienumvariant.go │ │ ├── ienumvariant_func.go │ │ ├── ienumvariant_windows.go │ │ ├── iinspectable.go │ │ ├── iinspectable_func.go │ │ ├── iinspectable_windows.go │ │ ├── iprovideclassinfo.go │ │ ├── iprovideclassinfo_func.go │ │ ├── iprovideclassinfo_windows.go │ │ ├── itypeinfo.go │ │ ├── itypeinfo_func.go │ │ ├── itypeinfo_windows.go │ │ ├── iunknown.go │ │ ├── iunknown_func.go │ │ ├── iunknown_windows.go │ │ ├── ole.go │ │ ├── oleutil │ │ ├── connection.go │ │ ├── connection_func.go │ │ ├── connection_windows.go │ │ ├── go-get.go │ │ └── oleutil.go │ │ ├── safearray.go │ │ ├── safearray_func.go │ │ ├── safearray_windows.go │ │ ├── safearrayconversion.go │ │ ├── safearrayslices.go │ │ ├── utility.go │ │ ├── variables.go │ │ ├── variant.go │ │ ├── variant_386.go │ │ ├── variant_amd64.go │ │ ├── variant_date_386.go │ │ ├── variant_date_amd64.go │ │ ├── variant_ppc64le.go │ │ ├── variant_s390x.go │ │ ├── vt_string.go │ │ ├── winrt.go │ │ └── winrt_doc.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ └── sortkeys │ │ └── sortkeys.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ └── glog_file.go │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── table_marshal.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── text.go │ │ └── text_parser.go │ │ ├── protoc-gen-go │ │ └── descriptor │ │ │ ├── descriptor.pb.go │ │ │ └── descriptor.proto │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ ├── any.pb.go │ │ └── any.proto │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ ├── duration.pb.go │ │ └── duration.proto │ │ ├── empty │ │ ├── empty.pb.go │ │ └── empty.proto │ │ ├── struct │ │ ├── struct.pb.go │ │ └── struct.proto │ │ ├── timestamp.go │ │ ├── timestamp │ │ ├── timestamp.pb.go │ │ └── timestamp.proto │ │ └── wrappers │ │ ├── wrappers.pb.go │ │ └── wrappers.proto ├── google │ ├── cadvisor │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── utils │ │ │ └── tail │ │ │ └── tail.go │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── compare.go │ │ │ ├── export_panic.go │ │ │ ├── export_unsafe.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ ├── flags.go │ │ │ │ ├── toolchain_legacy.go │ │ │ │ └── toolchain_recent.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── pointer_purego.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── sort.go │ │ │ │ └── zero.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── fuzz.go │ │ └── go.mod │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── googleapis │ ├── gax-go │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── call_option.go │ │ │ ├── gax.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── header.go │ │ │ └── invoke.go │ └── gnostic │ │ ├── LICENSE │ │ ├── OpenAPIv2 │ │ ├── OpenAPIv2.go │ │ ├── OpenAPIv2.pb.go │ │ ├── OpenAPIv2.proto │ │ ├── README.md │ │ └── openapi-2.0.json │ │ ├── compiler │ │ ├── README.md │ │ ├── context.go │ │ ├── error.go │ │ ├── extension-handler.go │ │ ├── helpers.go │ │ ├── main.go │ │ └── reader.go │ │ └── extensions │ │ ├── README.md │ │ ├── extension.pb.go │ │ ├── extension.proto │ │ └── extensions.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ └── go-multierror │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── multierror.go │ │ └── prefix.go ├── hpcloud │ └── tail │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES.md │ │ ├── Dockerfile │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── ratelimiter │ │ ├── Licence │ │ ├── leakybucket.go │ │ ├── memory.go │ │ └── storage.go │ │ ├── tail.go │ │ ├── tail_posix.go │ │ ├── tail_windows.go │ │ ├── util │ │ └── util.go │ │ ├── watch │ │ ├── filechanges.go │ │ ├── inotify.go │ │ ├── inotify_tracker.go │ │ ├── polling.go │ │ └── watch.go │ │ └── winfile │ │ └── winfile.go ├── imdario │ └── mergo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.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 ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── konsorten │ └── go-windows-terminal-sequences │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── sequences.go │ │ └── sequences_dummy.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_17.go │ │ ├── go_above_19.go │ │ ├── go_below_17.go │ │ ├── go_below_19.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── test.sh │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── onsi │ ├── ginkgo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── config │ │ │ └── config.go │ │ ├── ginkgo_dsl.go │ │ ├── internal │ │ │ ├── codelocation │ │ │ │ └── code_location.go │ │ │ ├── containernode │ │ │ │ └── container_node.go │ │ │ ├── failer │ │ │ │ └── failer.go │ │ │ ├── leafnodes │ │ │ │ ├── benchmarker.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── it_node.go │ │ │ │ ├── measure_node.go │ │ │ │ ├── runner.go │ │ │ │ ├── setup_nodes.go │ │ │ │ ├── suite_nodes.go │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ └── synchronized_before_suite_node.go │ │ │ ├── remote │ │ │ │ ├── aggregator.go │ │ │ │ ├── forwarding_reporter.go │ │ │ │ ├── output_interceptor.go │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ ├── output_interceptor_win.go │ │ │ │ ├── server.go │ │ │ │ ├── syscall_dup_linux_arm64.go │ │ │ │ ├── syscall_dup_solaris.go │ │ │ │ └── syscall_dup_unix.go │ │ │ ├── spec │ │ │ │ ├── spec.go │ │ │ │ └── specs.go │ │ │ ├── spec_iterator │ │ │ │ ├── index_computer.go │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ └── spec_iterator.go │ │ │ ├── specrunner │ │ │ │ ├── random_id.go │ │ │ │ └── spec_runner.go │ │ │ ├── suite │ │ │ │ └── suite.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ └── writer │ │ │ │ ├── fake_writer.go │ │ │ │ └── writer.go │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── fake_reporter.go │ │ │ ├── junit_reporter.go │ │ │ ├── reporter.go │ │ │ ├── stenographer │ │ │ │ ├── console_logging.go │ │ │ │ ├── fake_stenographer.go │ │ │ │ ├── stenographer.go │ │ │ │ └── support │ │ │ │ │ ├── go-colorable │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ └── noncolorable.go │ │ │ │ │ └── go-isatty │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ └── isatty_windows.go │ │ │ └── teamcity_reporter.go │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── synchronization.go │ │ │ └── types.go │ └── gomega │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── format │ │ └── format.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── gomega_dsl.go │ │ ├── internal │ │ ├── assertion │ │ │ └── assertion.go │ │ ├── asyncassertion │ │ │ └── async_assertion.go │ │ ├── oraclematcher │ │ │ └── oracle_matcher.go │ │ └── testingtsupport │ │ │ └── testing_t_support.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_regular_file.go │ │ ├── be_an_existing_file.go │ │ ├── be_closed_matcher.go │ │ ├── be_element_of_matcher.go │ │ ├── be_empty_matcher.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_false_matcher.go │ │ ├── be_identical_to.go │ │ ├── be_nil_matcher.go │ │ ├── be_numerically_matcher.go │ │ ├── be_sent_matcher.go │ │ ├── be_temporally_matcher.go │ │ ├── be_true_matcher.go │ │ ├── be_zero_matcher.go │ │ ├── consist_of.go │ │ ├── contain_element_matcher.go │ │ ├── contain_substring_matcher.go │ │ ├── equal_matcher.go │ │ ├── have_cap_matcher.go │ │ ├── have_key_matcher.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_len_matcher.go │ │ ├── have_occurred_matcher.go │ │ ├── have_prefix_matcher.go │ │ ├── have_suffix_matcher.go │ │ ├── match_error_matcher.go │ │ ├── match_json_matcher.go │ │ ├── match_regexp_matcher.go │ │ ├── match_xml_matcher.go │ │ ├── match_yaml_matcher.go │ │ ├── not.go │ │ ├── or.go │ │ ├── panic_matcher.go │ │ ├── receive_matcher.go │ │ ├── semi_structured_data_support.go │ │ ├── succeed_matcher.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── type_support.go │ │ └── with_transform.go │ │ └── types │ │ └── types.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info.go │ │ │ ├── build_info_pre_1.12.go │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── go_collector.go │ │ │ ├── histogram.go │ │ │ ├── http.go │ │ │ ├── internal │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ └── instrument_server.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ └── autoneg.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ └── value.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fixtures.ttar │ │ ├── fs.go │ │ ├── fscache.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── schedstat.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── ttar │ │ ├── vm.go │ │ ├── xfrm.go │ │ └── zoneinfo.go ├── shirou │ └── gopsutil │ │ ├── LICENSE │ │ ├── cpu │ │ ├── cpu.go │ │ ├── cpu_darwin.go │ │ ├── cpu_darwin_cgo.go │ │ ├── cpu_darwin_nocgo.go │ │ ├── cpu_fallback.go │ │ ├── cpu_freebsd.go │ │ ├── cpu_freebsd_386.go │ │ ├── cpu_freebsd_amd64.go │ │ ├── cpu_freebsd_arm.go │ │ ├── cpu_freebsd_arm64.go │ │ ├── cpu_linux.go │ │ ├── cpu_openbsd.go │ │ ├── cpu_solaris.go │ │ └── cpu_windows.go │ │ ├── disk │ │ ├── disk.go │ │ ├── disk_darwin.c │ │ ├── disk_darwin.go │ │ ├── disk_darwin.h │ │ ├── disk_darwin_386.go │ │ ├── disk_darwin_amd64.go │ │ ├── disk_darwin_arm64.go │ │ ├── disk_darwin_cgo.go │ │ ├── disk_darwin_nocgo.go │ │ ├── disk_fallback.go │ │ ├── disk_freebsd.go │ │ ├── disk_freebsd_386.go │ │ ├── disk_freebsd_amd64.go │ │ ├── disk_freebsd_arm.go │ │ ├── disk_freebsd_arm64.go │ │ ├── disk_linux.go │ │ ├── disk_openbsd.go │ │ ├── disk_openbsd_386.go │ │ ├── disk_openbsd_amd64.go │ │ ├── disk_solaris.go │ │ ├── disk_unix.go │ │ └── disk_windows.go │ │ ├── host │ │ ├── host.go │ │ ├── host_darwin.go │ │ ├── host_darwin_386.go │ │ ├── host_darwin_amd64.go │ │ ├── host_darwin_cgo.go │ │ ├── host_darwin_nocgo.go │ │ ├── host_fallback.go │ │ ├── host_freebsd.go │ │ ├── host_freebsd_386.go │ │ ├── host_freebsd_amd64.go │ │ ├── host_freebsd_arm.go │ │ ├── host_freebsd_arm64.go │ │ ├── host_linux.go │ │ ├── host_linux_386.go │ │ ├── host_linux_amd64.go │ │ ├── host_linux_arm.go │ │ ├── host_linux_arm64.go │ │ ├── host_linux_mips.go │ │ ├── host_linux_mips64.go │ │ ├── host_linux_mips64le.go │ │ ├── host_linux_mipsle.go │ │ ├── host_linux_ppc64le.go │ │ ├── host_linux_s390x.go │ │ ├── host_openbsd.go │ │ ├── host_openbsd_amd64.go │ │ ├── host_posix.go │ │ ├── host_solaris.go │ │ ├── host_windows.go │ │ └── types.go │ │ ├── internal │ │ └── common │ │ │ ├── binary.go │ │ │ ├── common.go │ │ │ ├── common_darwin.go │ │ │ ├── common_freebsd.go │ │ │ ├── common_linux.go │ │ │ ├── common_openbsd.go │ │ │ ├── common_unix.go │ │ │ └── common_windows.go │ │ ├── load │ │ ├── load.go │ │ ├── load_bsd.go │ │ ├── load_darwin.go │ │ ├── load_fallback.go │ │ ├── load_linux.go │ │ └── load_windows.go │ │ ├── mem │ │ ├── mem.go │ │ ├── mem_darwin.go │ │ ├── mem_darwin_cgo.go │ │ ├── mem_darwin_nocgo.go │ │ ├── mem_fallback.go │ │ ├── mem_freebsd.go │ │ ├── mem_linux.go │ │ ├── mem_openbsd.go │ │ ├── mem_openbsd_amd64.go │ │ ├── mem_solaris.go │ │ └── mem_windows.go │ │ ├── net │ │ ├── net.go │ │ ├── net_darwin.go │ │ ├── net_fallback.go │ │ ├── net_freebsd.go │ │ ├── net_linux.go │ │ ├── net_openbsd.go │ │ ├── net_unix.go │ │ └── net_windows.go │ │ └── process │ │ ├── process.go │ │ ├── process_darwin.go │ │ ├── process_darwin_386.go │ │ ├── process_darwin_amd64.go │ │ ├── process_darwin_cgo.go │ │ ├── process_darwin_nocgo.go │ │ ├── process_fallback.go │ │ ├── process_freebsd.go │ │ ├── process_freebsd_386.go │ │ ├── process_freebsd_amd64.go │ │ ├── process_freebsd_arm.go │ │ ├── process_freebsd_arm64.go │ │ ├── process_linux.go │ │ ├── process_openbsd.go │ │ ├── process_openbsd_amd64.go │ │ ├── process_posix.go │ │ ├── process_windows.go │ │ ├── process_windows_386.go │ │ └── process_windows_amd64.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── spf13 │ └── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go └── stretchr │ └── testify │ ├── LICENSE │ ├── assert │ ├── assertion_compare.go │ ├── assertion_format.go │ ├── assertion_format.go.tmpl │ ├── assertion_forward.go │ ├── assertion_forward.go.tmpl │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ └── http_assertions.go │ └── require │ ├── doc.go │ ├── forward_requirements.go │ ├── require.go │ ├── require.go.tmpl │ ├── require_forward.go │ ├── require_forward.go.tmpl │ └── requirements.go ├── go.opencensus.io ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── go.mod ├── go.sum ├── internal │ ├── internal.go │ ├── sanitize.go │ ├── tagencoding │ │ └── tagencoding.go │ └── traceinternals.go ├── metric │ ├── metricdata │ │ ├── doc.go │ │ ├── exemplar.go │ │ ├── label.go │ │ ├── metric.go │ │ ├── point.go │ │ ├── type_string.go │ │ └── unit.go │ ├── metricexport │ │ ├── doc.go │ │ ├── export.go │ │ └── reader.go │ └── metricproducer │ │ ├── manager.go │ │ └── producer.go ├── opencensus.go ├── plugin │ ├── ocgrpc │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_stats_handler.go │ │ ├── doc.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_stats_handler.go │ │ ├── stats_common.go │ │ └── trace_common.go │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ └── b3 │ │ │ └── b3.go │ │ ├── route.go │ │ ├── server.go │ │ ├── span_annotating_client_trace.go │ │ ├── stats.go │ │ ├── trace.go │ │ └── wrapped_body.go ├── resource │ ├── resource.go │ └── resourcekeys │ │ └── const.go ├── stats │ ├── doc.go │ ├── internal │ │ └── record.go │ ├── measure.go │ ├── measure_float64.go │ ├── measure_int64.go │ ├── record.go │ ├── units.go │ └── view │ │ ├── aggregation.go │ │ ├── aggregation_data.go │ │ ├── collector.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── view.go │ │ ├── view_to_metric.go │ │ ├── worker.go │ │ └── worker_commands.go ├── tag │ ├── context.go │ ├── doc.go │ ├── key.go │ ├── map.go │ ├── map_codec.go │ ├── metadata.go │ ├── profile_19.go │ ├── profile_not19.go │ └── validate.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── propagation │ └── propagation.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── curve25519 │ │ ├── const_amd64.h │ │ ├── const_amd64.s │ │ ├── cswap_amd64.s │ │ ├── curve25519.go │ │ ├── doc.go │ │ ├── freeze_amd64.s │ │ ├── ladderstep_amd64.s │ │ ├── mont25519_amd64.go │ │ ├── mul_amd64.s │ │ └── square_amd64.s │ ├── ed25519 │ │ ├── ed25519.go │ │ └── internal │ │ │ └── edwards25519 │ │ │ ├── const.go │ │ │ └── edwards25519.go │ ├── internal │ │ ├── chacha20 │ │ │ ├── asm_arm64.s │ │ │ ├── asm_ppc64le.s │ │ │ ├── chacha_arm64.go │ │ │ ├── chacha_generic.go │ │ │ ├── chacha_noasm.go │ │ │ ├── chacha_ppc64le.go │ │ │ ├── chacha_s390x.go │ │ │ ├── chacha_s390x.s │ │ │ └── xor.go │ │ └── subtle │ │ │ ├── aliasing.go │ │ │ └── aliasing_appengine.go │ ├── poly1305 │ │ ├── mac_noasm.go │ │ ├── poly1305.go │ │ ├── sum_amd64.go │ │ ├── sum_amd64.s │ │ ├── sum_arm.go │ │ ├── sum_arm.s │ │ ├── sum_generic.go │ │ ├── sum_noasm.go │ │ ├── sum_ppc64le.go │ │ ├── sum_ppc64le.s │ │ ├── sum_s390x.go │ │ ├── sum_s390x.s │ │ └── sum_vmsl_s390x.s │ └── ssh │ │ ├── buffer.go │ │ ├── certs.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── handshake.go │ │ ├── kex.go │ │ ├── keys.go │ │ ├── mac.go │ │ ├── messages.go │ │ ├── mux.go │ │ ├── server.go │ │ ├── session.go │ │ ├── ssh_gss.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ ├── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_aix.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ │ └── transport.go │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ ├── ctxhttp │ │ │ └── ctxhttp.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── charset │ │ │ └── charset.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go111.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go111.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ └── writesched_random.go │ ├── idna │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.00.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ └── trieval.go │ ├── internal │ │ └── timeseries │ │ │ └── timeseries.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── google │ │ ├── appengine.go │ │ ├── appengine_gen1.go │ │ ├── appengine_gen2_flex.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── google.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── client_appengine.go │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── semaphore │ │ └── semaphore.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_x86.s │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── hwcap_linux.go │ │ ├── syscall_aix_gccgo.go │ │ └── syscall_aix_ppc64_gc.go │ ├── internal │ │ └── unsafeheader │ │ │ └── unsafeheader.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_freebsd_arm64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_netbsd_arm64.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_openbsd_arm64.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── errors_freebsd_arm64.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.1_12.go │ │ ├── syscall_darwin.1_13.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_386.1_13.go │ │ ├── zsyscall_darwin_386.1_13.s │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_386.s │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm.1_13.go │ │ ├── zsyscall_darwin_arm.1_13.s │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm.s │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── empty.s │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapierrors_windows.go │ │ ├── str.go │ │ ├── svc │ │ ├── debug │ │ │ ├── log.go │ │ │ └── service.go │ │ ├── event.go │ │ ├── eventlog │ │ │ ├── install.go │ │ │ └── log.go │ │ ├── go12.c │ │ ├── go12.go │ │ ├── go13.go │ │ ├── security.go │ │ ├── service.go │ │ ├── sys_386.s │ │ ├── sys_amd64.s │ │ └── sys_arm.s │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── htmlindex │ │ │ ├── htmlindex.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── euckr.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ └── tables.go │ │ ├── traditionalchinese │ │ │ ├── big5.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── internal │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ └── time │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── rate │ └── rate.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── compute │ │ └── v1 │ │ │ ├── compute-api.json │ │ │ └── compute-gen.go │ ├── gensupport │ │ ├── buffer.go │ │ ├── doc.go │ │ ├── json.go │ │ ├── jsonfloat.go │ │ ├── media.go │ │ ├── params.go │ │ ├── resumable.go │ │ └── send.go │ ├── googleapi │ │ ├── googleapi.go │ │ ├── internal │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── internal │ │ ├── creds.go │ │ ├── pool.go │ │ ├── service-account.json │ │ └── settings.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── credentials_go19.go │ │ ├── credentials_notgo19.go │ │ └── option.go │ ├── support │ │ └── bundler │ │ │ └── bundler.go │ └── transport │ │ ├── dial.go │ │ ├── doc.go │ │ ├── go19.go │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_appengine.go │ │ └── dial_socketopt.go │ │ ├── http │ │ ├── dial.go │ │ ├── dial_appengine.go │ │ └── internal │ │ │ └── propagation │ │ │ └── http.go │ │ └── not_go19.go ├── appengine │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── appengine.go │ ├── appengine_vm.go │ ├── errors.go │ ├── go.mod │ ├── go.sum │ ├── identity.go │ ├── internal │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── app_id.go │ │ ├── app_identity │ │ │ ├── app_identity_service.pb.go │ │ │ └── app_identity_service.proto │ │ ├── base │ │ │ ├── api_base.pb.go │ │ │ └── api_base.proto │ │ ├── datastore │ │ │ ├── datastore_v3.pb.go │ │ │ └── datastore_v3.proto │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_flex.go │ │ ├── identity_vm.go │ │ ├── internal.go │ │ ├── log │ │ │ ├── log_service.pb.go │ │ │ └── log_service.proto │ │ ├── main.go │ │ ├── main_common.go │ │ ├── main_vm.go │ │ ├── metadata.go │ │ ├── modules │ │ │ ├── modules_service.pb.go │ │ │ └── modules_service.proto │ │ ├── net.go │ │ ├── regen.sh │ │ ├── remote_api │ │ │ ├── remote_api.pb.go │ │ │ └── remote_api.proto │ │ ├── socket │ │ │ ├── socket_service.pb.go │ │ │ └── socket_service.proto │ │ ├── transaction.go │ │ └── urlfetch │ │ │ ├── urlfetch_service.pb.go │ │ │ └── urlfetch_service.proto │ ├── namespace.go │ ├── socket │ │ ├── doc.go │ │ ├── socket_classic.go │ │ └── socket_vm.go │ ├── timeout.go │ ├── travis_install.sh │ ├── travis_test.sh │ └── urlfetch │ │ └── urlfetch.go ├── genproto │ ├── LICENSE │ ├── googleapis │ │ ├── api │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── client.pb.go │ │ │ │ ├── field_behavior.pb.go │ │ │ │ ├── http.pb.go │ │ │ │ └── resource.pb.go │ │ │ ├── distribution │ │ │ │ └── distribution.pb.go │ │ │ ├── label │ │ │ │ └── label.pb.go │ │ │ ├── launch_stage.pb.go │ │ │ ├── metric │ │ │ │ └── metric.pb.go │ │ │ └── monitoredres │ │ │ │ └── monitored_resource.pb.go │ │ ├── container │ │ │ └── v1 │ │ │ │ └── cluster_service.pb.go │ │ ├── devtools │ │ │ └── cloudtrace │ │ │ │ └── v2 │ │ │ │ ├── trace.pb.go │ │ │ │ └── tracing.pb.go │ │ ├── monitoring │ │ │ └── v3 │ │ │ │ ├── alert.pb.go │ │ │ │ ├── alert_service.pb.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── dropped_labels.pb.go │ │ │ │ ├── group.pb.go │ │ │ │ ├── group_service.pb.go │ │ │ │ ├── metric.pb.go │ │ │ │ ├── metric_service.pb.go │ │ │ │ ├── mutation_record.pb.go │ │ │ │ ├── notification.pb.go │ │ │ │ ├── notification_service.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── service_service.pb.go │ │ │ │ ├── span_context.pb.go │ │ │ │ ├── uptime.pb.go │ │ │ │ └── uptime_service.pb.go │ │ ├── rpc │ │ │ └── status │ │ │ │ └── status.pb.go │ │ └── type │ │ │ └── calendarperiod │ │ │ └── calendar_period.pb.go │ └── protobuf │ │ └── field_mask │ │ └── field_mask.pb.go └── grpc │ ├── .travis.yml │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── README.md │ ├── attributes │ └── attributes.go │ ├── backoff.go │ ├── backoff │ └── backoff.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ ├── grpclb │ │ ├── grpc_lb_v1 │ │ │ └── load_balancer.pb.go │ │ ├── grpclb.go │ │ ├── grpclb_config.go │ │ ├── grpclb_picker.go │ │ ├── grpclb_remote_balancer.go │ │ ├── grpclb_util.go │ │ └── regenerate.sh │ └── roundrobin │ │ └── roundrobin.go │ ├── balancer_conn_wrappers.go │ ├── balancer_v1_wrapper.go │ ├── binarylog │ └── grpc_binarylog_v1 │ │ └── binarylog.pb.go │ ├── call.go │ ├── clientconn.go │ ├── codec.go │ ├── codegen.sh │ ├── codes │ ├── code_string.go │ └── codes.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── alts │ │ ├── alts.go │ │ ├── internal │ │ │ ├── authinfo │ │ │ │ └── authinfo.go │ │ │ ├── common.go │ │ │ ├── conn │ │ │ │ ├── aeadrekey.go │ │ │ │ ├── aes128gcm.go │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ ├── common.go │ │ │ │ ├── counter.go │ │ │ │ ├── record.go │ │ │ │ └── utils.go │ │ │ ├── handshaker │ │ │ │ ├── handshaker.go │ │ │ │ └── service │ │ │ │ │ └── service.go │ │ │ ├── proto │ │ │ │ └── grpc_gcp │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ └── regenerate.sh │ │ └── utils.go │ ├── credentials.go │ ├── go12.go │ ├── google │ │ └── google.go │ ├── internal │ │ ├── syscallconn.go │ │ └── syscallconn_appengine.go │ ├── oauth │ │ └── oauth.go │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ └── proto │ │ └── proto.go │ ├── go.mod │ ├── go.sum │ ├── grpclog │ ├── grpclog.go │ ├── logger.go │ └── loggerv2.go │ ├── install_gae.sh │ ├── interceptor.go │ ├── internal │ ├── backoff │ │ └── backoff.go │ ├── balancerload │ │ └── load.go │ ├── binarylog │ │ ├── binarylog.go │ │ ├── binarylog_testutil.go │ │ ├── env_config.go │ │ ├── method_logger.go │ │ ├── regenerate.sh │ │ ├── sink.go │ │ └── util.go │ ├── buffer │ │ └── unbounded.go │ ├── channelz │ │ ├── funcs.go │ │ ├── types.go │ │ ├── types_linux.go │ │ ├── types_nonlinux.go │ │ ├── util_linux.go │ │ └── util_nonlinux.go │ ├── envconfig │ │ └── envconfig.go │ ├── grpcrand │ │ └── grpcrand.go │ ├── grpcsync │ │ └── event.go │ ├── internal.go │ ├── resolver │ │ ├── dns │ │ │ ├── dns_resolver.go │ │ │ └── go113.go │ │ └── passthrough │ │ │ └── passthrough.go │ ├── syscall │ │ ├── syscall_linux.go │ │ └── syscall_nonlinux.go │ └── transport │ │ ├── bdp_estimator.go │ │ ├── controlbuf.go │ │ ├── defaults.go │ │ ├── flowcontrol.go │ │ ├── handler_server.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ ├── log.go │ │ └── transport.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ └── metadata.go │ ├── naming │ ├── dns_resolver.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── pickfirst.go │ ├── preloader.go │ ├── proxy.go │ ├── resolver │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ └── serviceconfig.go │ ├── stats │ ├── handlers.go │ └── stats.go │ ├── status │ └── status.go │ ├── stream.go │ ├── tap │ └── tap.go │ ├── trace.go │ ├── version.go │ └── vet.sh ├── gopkg.in ├── fsnotify.v1 │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── fen.go │ ├── fsnotify.go │ ├── inotify.go │ ├── inotify_poller.go │ ├── kqueue.go │ ├── open_mode_bsd.go │ ├── open_mode_darwin.go │ └── windows.go ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── tomb.v1 │ ├── LICENSE │ ├── README.md │ └── tomb.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── .travis.yml │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admissionregistration │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── auditregistration │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── authentication │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── authorization │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v2beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── batch │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v2alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── certificates │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── coordination │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── core │ │ └── v1 │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ └── zz_generated.deepcopy.go │ ├── events │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── node │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── policy │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── rbac │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── scheduling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── settings │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ └── storage │ │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── errors │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ └── restmapper.go │ │ │ └── resource │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apis │ │ │ └── meta │ │ │ │ ├── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── controller_ref.go │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── labels.go │ │ │ │ ├── meta.go │ │ │ │ ├── micro_time.go │ │ │ │ ├── micro_time_proto.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── unstructured │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── unstructured.go │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ ├── conversion │ │ │ ├── converter.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── requirements.go │ │ │ └── selector.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── selector.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── serializer │ │ │ │ ├── codec_factory.go │ │ │ │ ├── json │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── protobuf_extension.go │ │ │ │ ├── recognizer │ │ │ │ │ └── recognizer.go │ │ │ │ ├── streaming │ │ │ │ │ └── streaming.go │ │ │ │ └── versioning │ │ │ │ │ └── versioning.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── clock │ │ │ │ └── clock.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── mergepatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ └── util.go │ │ │ ├── naming │ │ │ │ └── from_stack.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int64.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ └── types.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ ├── wait │ │ │ │ ├── doc.go │ │ │ │ └── wait.go │ │ │ └── yaml │ │ │ │ └── decoder.go │ │ ├── version │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── json │ │ ├── OWNERS │ │ └── fields.go │ │ └── reflect │ │ └── deep_equal.go ├── client-go │ ├── LICENSE │ ├── discovery │ │ ├── discovery_client.go │ │ ├── doc.go │ │ └── helper.go │ ├── kubernetes │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ └── v1beta1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── auditregistration │ │ │ └── v1alpha1 │ │ │ │ ├── auditregistration_client.go │ │ │ │ ├── auditsink.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ ├── v1beta1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ └── v2alpha1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ └── v1beta1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespace_expansion.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── pod_expansion.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ ├── serviceaccount.go │ │ │ │ └── serviceaccount_expansion.go │ │ │ ├── events │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ └── networking_client.go │ │ │ ├── node │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── podpreset.go │ │ │ │ └── settings_client.go │ │ │ └── storage │ │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachment.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── volumeattachment.go │ │ │ └── v1beta1 │ │ │ ├── csidriver.go │ │ │ ├── csinode.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachment.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── version │ │ │ ├── .gitattributes │ │ │ ├── base.go │ │ │ ├── def.bzl │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ └── exec │ │ │ └── exec.go │ ├── rest │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ └── zz_generated.deepcopy.go │ ├── tools │ │ ├── auth │ │ │ ├── OWNERS │ │ │ └── clientauth.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ └── reference │ │ │ └── ref.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── token_source.go │ │ └── transport.go │ └── util │ │ ├── cert │ │ ├── OWNERS │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ └── pem.go │ │ ├── connrotation │ │ └── connrotation.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ └── keyutil │ │ ├── OWNERS │ │ └── key.go ├── heapster │ ├── LICENSE │ └── common │ │ └── kubernetes │ │ └── configs.go ├── klog │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── go.mod │ ├── go.sum │ ├── klog.go │ └── klog_file.go ├── kube-openapi │ ├── LICENSE │ └── pkg │ │ └── util │ │ └── proto │ │ ├── doc.go │ │ ├── document.go │ │ └── openapi.go ├── kubernetes │ ├── LICENSE │ └── pkg │ │ ├── api │ │ └── legacyscheme │ │ │ ├── BUILD │ │ │ └── scheme.go │ │ └── ssh │ │ ├── BUILD │ │ └── ssh.go ├── test-infra │ ├── LICENSE │ └── boskos │ │ ├── client │ │ ├── BUILD.bazel │ │ ├── README.md │ │ └── client.go │ │ ├── common │ │ ├── BUILD.bazel │ │ ├── common.go │ │ ├── config.go │ │ └── mason_config.go │ │ └── storage │ │ ├── BUILD.bazel │ │ └── storage.go └── utils │ ├── LICENSE │ ├── inotify │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ └── inotify_linux.go │ └── integer │ └── integer.go ├── modules.txt └── sigs.k8s.io └── yaml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── yaml.go └── yaml_go110.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/Dockerfile.dind -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/SECURITY_CONTACTS -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /cmd/checkfd/check_fd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cmd/checkfd/check_fd.go -------------------------------------------------------------------------------- /cmd/healthchecker/health_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cmd/healthchecker/health_checker.go -------------------------------------------------------------------------------- /cmd/healthchecker/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cmd/healthchecker/options/options.go -------------------------------------------------------------------------------- /cmd/healthchecker/options/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cmd/healthchecker/options/options_test.go -------------------------------------------------------------------------------- /cmd/logcounter/log_counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cmd/logcounter/log_counter.go -------------------------------------------------------------------------------- /cmd/logcounter/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cmd/logcounter/options/options.go -------------------------------------------------------------------------------- /cmd/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cmd/options/options.go -------------------------------------------------------------------------------- /cmd/options/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/cmd/options/options_test.go -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /config/abrt-adaptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/abrt-adaptor.json -------------------------------------------------------------------------------- /config/custom-plugin-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/custom-plugin-monitor.json -------------------------------------------------------------------------------- /config/docker-monitor-counter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/docker-monitor-counter.json -------------------------------------------------------------------------------- /config/docker-monitor-filelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/docker-monitor-filelog.json -------------------------------------------------------------------------------- /config/docker-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/docker-monitor.json -------------------------------------------------------------------------------- /config/exporter/stackdriver-exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/exporter/stackdriver-exporter.json -------------------------------------------------------------------------------- /config/fd-problem-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/fd-problem-monitor.json -------------------------------------------------------------------------------- /config/guestosconfig/known-modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/guestosconfig/known-modules.json -------------------------------------------------------------------------------- /config/health-checker-containerd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/health-checker-containerd.json -------------------------------------------------------------------------------- /config/health-checker-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/health-checker-docker.json -------------------------------------------------------------------------------- /config/health-checker-kubelet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/health-checker-kubelet.json -------------------------------------------------------------------------------- /config/kernel-monitor-counter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/kernel-monitor-counter.json -------------------------------------------------------------------------------- /config/kernel-monitor-filelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/kernel-monitor-filelog.json -------------------------------------------------------------------------------- /config/kernel-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/kernel-monitor.json -------------------------------------------------------------------------------- /config/net-cgroup-system-stats-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/net-cgroup-system-stats-monitor.json -------------------------------------------------------------------------------- /config/network-problem-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/network-problem-monitor.json -------------------------------------------------------------------------------- /config/plugin/check_fd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/plugin/check_fd.sh -------------------------------------------------------------------------------- /config/plugin/check_ntp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/plugin/check_ntp.sh -------------------------------------------------------------------------------- /config/plugin/network_problem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/plugin/network_problem.sh -------------------------------------------------------------------------------- /config/plugin/windows_defender_problem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/plugin/windows_defender_problem.ps1 -------------------------------------------------------------------------------- /config/system-stats-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/system-stats-monitor.json -------------------------------------------------------------------------------- /config/systemd-monitor-counter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/systemd-monitor-counter.json -------------------------------------------------------------------------------- /config/systemd-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/systemd-monitor.json -------------------------------------------------------------------------------- /config/windows-defender-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/windows-defender-monitor.json -------------------------------------------------------------------------------- /config/windows-health-checker-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/windows-health-checker-docker.json -------------------------------------------------------------------------------- /config/windows-health-checker-kubelet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/windows-health-checker-kubelet.json -------------------------------------------------------------------------------- /config/windows-health-checker-kubeproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/windows-health-checker-kubeproxy.json -------------------------------------------------------------------------------- /config/windows-system-stats-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/config/windows-system-stats-monitor.json -------------------------------------------------------------------------------- /deployment/node-problem-detector-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/deployment/node-problem-detector-config.yaml -------------------------------------------------------------------------------- /deployment/node-problem-detector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/deployment/node-problem-detector.yaml -------------------------------------------------------------------------------- /docs/custom_plugin_monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/docs/custom_plugin_monitor.md -------------------------------------------------------------------------------- /docs/release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/docs/release_process.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/custompluginmonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/custompluginmonitor/README.md -------------------------------------------------------------------------------- /pkg/custompluginmonitor/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/custompluginmonitor/plugin/plugin.go -------------------------------------------------------------------------------- /pkg/custompluginmonitor/plugin/test-data/non-defined-exit-status.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "NON-DEFINED-EXIT-STATUS" 4 | exit 100 5 | 6 | -------------------------------------------------------------------------------- /pkg/custompluginmonitor/plugin/test-data/non-executable.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "NON-EXECUTABLE" 4 | exit -1 5 | 6 | -------------------------------------------------------------------------------- /pkg/custompluginmonitor/plugin/test-data/non-ok.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "NonOK" 4 | exit 1 5 | 6 | -------------------------------------------------------------------------------- /pkg/custompluginmonitor/plugin/test-data/ok.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "OK" 4 | exit 0 5 | 6 | -------------------------------------------------------------------------------- /pkg/custompluginmonitor/plugin/test-data/sleep-3-second-with-ok-exit-status.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sleep 3 4 | echo "SLEEP 3 SECOND" 5 | exit 0 6 | 7 | -------------------------------------------------------------------------------- /pkg/custompluginmonitor/plugin/test-data/unknown.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "UNKNOWN" 4 | exit 3 5 | 6 | -------------------------------------------------------------------------------- /pkg/custompluginmonitor/types/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/custompluginmonitor/types/config.go -------------------------------------------------------------------------------- /pkg/custompluginmonitor/types/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/custompluginmonitor/types/config_test.go -------------------------------------------------------------------------------- /pkg/custompluginmonitor/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/custompluginmonitor/types/types.go -------------------------------------------------------------------------------- /pkg/exporters/k8sexporter/k8s_exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/exporters/k8sexporter/k8s_exporter.go -------------------------------------------------------------------------------- /pkg/exporters/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/exporters/register.go -------------------------------------------------------------------------------- /pkg/exporters/register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/exporters/register_test.go -------------------------------------------------------------------------------- /pkg/exporters/stackdriver/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/exporters/stackdriver/config/config.go -------------------------------------------------------------------------------- /pkg/exporters/stackdriver/gce/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/exporters/stackdriver/gce/type.go -------------------------------------------------------------------------------- /pkg/healthchecker/health_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/healthchecker/health_checker.go -------------------------------------------------------------------------------- /pkg/healthchecker/health_checker_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/healthchecker/health_checker_linux.go -------------------------------------------------------------------------------- /pkg/healthchecker/health_checker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/healthchecker/health_checker_test.go -------------------------------------------------------------------------------- /pkg/healthchecker/health_checker_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/healthchecker/health_checker_windows.go -------------------------------------------------------------------------------- /pkg/healthchecker/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/healthchecker/types/types.go -------------------------------------------------------------------------------- /pkg/healthchecker/types/types_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/healthchecker/types/types_linux.go -------------------------------------------------------------------------------- /pkg/healthchecker/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/healthchecker/types/types_test.go -------------------------------------------------------------------------------- /pkg/healthchecker/types/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/healthchecker/types/types_windows.go -------------------------------------------------------------------------------- /pkg/logcounter/log_counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/logcounter/log_counter.go -------------------------------------------------------------------------------- /pkg/logcounter/log_counter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/logcounter/log_counter_test.go -------------------------------------------------------------------------------- /pkg/logcounter/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/logcounter/types/types.go -------------------------------------------------------------------------------- /pkg/problemdaemon/problem_daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/problemdaemon/problem_daemon.go -------------------------------------------------------------------------------- /pkg/problemdaemon/problem_daemon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/problemdaemon/problem_daemon_test.go -------------------------------------------------------------------------------- /pkg/problemdetector/problem_detector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/problemdetector/problem_detector.go -------------------------------------------------------------------------------- /pkg/problemdetector/problem_detector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/problemdetector/problem_detector_test.go -------------------------------------------------------------------------------- /pkg/problemmetrics/problem_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/problemmetrics/problem_metrics.go -------------------------------------------------------------------------------- /pkg/problemmetrics/problem_metrics_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/problemmetrics/problem_metrics_stub.go -------------------------------------------------------------------------------- /pkg/problemmetrics/problem_metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/problemmetrics/problem_metrics_test.go -------------------------------------------------------------------------------- /pkg/systemlogmonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemlogmonitor/README.md -------------------------------------------------------------------------------- /pkg/systemlogmonitor/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemlogmonitor/config.go -------------------------------------------------------------------------------- /pkg/systemlogmonitor/log_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemlogmonitor/log_buffer.go -------------------------------------------------------------------------------- /pkg/systemlogmonitor/log_buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemlogmonitor/log_buffer_test.go -------------------------------------------------------------------------------- /pkg/systemlogmonitor/log_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemlogmonitor/log_monitor.go -------------------------------------------------------------------------------- /pkg/systemlogmonitor/log_monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemlogmonitor/log_monitor_test.go -------------------------------------------------------------------------------- /pkg/systemlogmonitor/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemlogmonitor/types/types.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/README.md -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/cpu_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/cpu_collector.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/cpu_collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/cpu_collector_test.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/disk_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/disk_collector.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/host_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/host_collector.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/labels.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/memory_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/memory_collector.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/net_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/net_collector.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/types/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/types/config.go -------------------------------------------------------------------------------- /pkg/systemstatsmonitor/types/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/systemstatsmonitor/types/config_test.go -------------------------------------------------------------------------------- /pkg/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/types/types.go -------------------------------------------------------------------------------- /pkg/util/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/convert.go -------------------------------------------------------------------------------- /pkg/util/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/convert_test.go -------------------------------------------------------------------------------- /pkg/util/exec_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/exec_linux.go -------------------------------------------------------------------------------- /pkg/util/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/exec_test.go -------------------------------------------------------------------------------- /pkg/util/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/exec_windows.go -------------------------------------------------------------------------------- /pkg/util/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/helpers.go -------------------------------------------------------------------------------- /pkg/util/helpers_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/helpers_linux.go -------------------------------------------------------------------------------- /pkg/util/helpers_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/helpers_linux_test.go -------------------------------------------------------------------------------- /pkg/util/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/helpers_test.go -------------------------------------------------------------------------------- /pkg/util/helpers_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/helpers_windows.go -------------------------------------------------------------------------------- /pkg/util/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/http.go -------------------------------------------------------------------------------- /pkg/util/metrics/fakes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/fakes.go -------------------------------------------------------------------------------- /pkg/util/metrics/fakes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/fakes_test.go -------------------------------------------------------------------------------- /pkg/util/metrics/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/helpers.go -------------------------------------------------------------------------------- /pkg/util/metrics/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/helpers_test.go -------------------------------------------------------------------------------- /pkg/util/metrics/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/metric.go -------------------------------------------------------------------------------- /pkg/util/metrics/metric_float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/metric_float64.go -------------------------------------------------------------------------------- /pkg/util/metrics/metric_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/metric_int64.go -------------------------------------------------------------------------------- /pkg/util/metrics/system/cmdline_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/system/cmdline_args.go -------------------------------------------------------------------------------- /pkg/util/metrics/system/cmdline_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/system/cmdline_args_test.go -------------------------------------------------------------------------------- /pkg/util/metrics/system/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/system/common.go -------------------------------------------------------------------------------- /pkg/util/metrics/system/module_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/system/module_stats.go -------------------------------------------------------------------------------- /pkg/util/metrics/system/module_stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/system/module_stats_test.go -------------------------------------------------------------------------------- /pkg/util/metrics/testdata/hello-world.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/testdata/hello-world.bat -------------------------------------------------------------------------------- /pkg/util/metrics/testdata/hello-world.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/testdata/hello-world.cmd -------------------------------------------------------------------------------- /pkg/util/metrics/testdata/hello-world.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello World" 2 | -------------------------------------------------------------------------------- /pkg/util/metrics/testdata/sample_metrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/metrics/testdata/sample_metrics.txt -------------------------------------------------------------------------------- /pkg/util/nethealth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/nethealth/Dockerfile -------------------------------------------------------------------------------- /pkg/util/nethealth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/nethealth/Makefile -------------------------------------------------------------------------------- /pkg/util/nethealth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/nethealth/README.md -------------------------------------------------------------------------------- /pkg/util/nethealth/nethealth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/nethealth/nethealth.go -------------------------------------------------------------------------------- /pkg/util/testdata/os-release-centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/testdata/os-release-centos -------------------------------------------------------------------------------- /pkg/util/testdata/os-release-cos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/testdata/os-release-cos -------------------------------------------------------------------------------- /pkg/util/testdata/os-release-debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/testdata/os-release-debian -------------------------------------------------------------------------------- /pkg/util/testdata/os-release-empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/util/testdata/os-release-rhel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/testdata/os-release-rhel -------------------------------------------------------------------------------- /pkg/util/testdata/os-release-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/testdata/os-release-ubuntu -------------------------------------------------------------------------------- /pkg/util/testdata/os-release-unknown: -------------------------------------------------------------------------------- 1 | ID=foo-operating-system 2 | -------------------------------------------------------------------------------- /pkg/util/tomb/tomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/tomb/tomb.go -------------------------------------------------------------------------------- /pkg/util/tomb/tomb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/util/tomb/tomb_test.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/build.sh -------------------------------------------------------------------------------- /test/e2e-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e-install.sh -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/README.md -------------------------------------------------------------------------------- /test/e2e/lib/gce/gce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/lib/gce/gce.go -------------------------------------------------------------------------------- /test/e2e/lib/gce/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/lib/gce/instance.go -------------------------------------------------------------------------------- /test/e2e/lib/npd/npd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/lib/npd/npd.go -------------------------------------------------------------------------------- /test/e2e/lib/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/lib/ssh/ssh.go -------------------------------------------------------------------------------- /test/e2e/metriconly/e2e_npd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/metriconly/e2e_npd_test.go -------------------------------------------------------------------------------- /test/e2e/metriconly/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/metriconly/metrics_test.go -------------------------------------------------------------------------------- /test/e2e/problemmaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/problemmaker/README.md -------------------------------------------------------------------------------- /test/e2e/problemmaker/makers/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/problemmaker/makers/docker.go -------------------------------------------------------------------------------- /test/e2e/problemmaker/makers/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/problemmaker/makers/filesystem.go -------------------------------------------------------------------------------- /test/e2e/problemmaker/makers/kernel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/problemmaker/makers/kernel.go -------------------------------------------------------------------------------- /test/e2e/problemmaker/makers/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/problemmaker/makers/register.go -------------------------------------------------------------------------------- /test/e2e/problemmaker/problem_maker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/e2e/problemmaker/problem_maker.go -------------------------------------------------------------------------------- /test/kernel_log_generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/kernel_log_generator/Dockerfile -------------------------------------------------------------------------------- /test/kernel_log_generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/kernel_log_generator/Makefile -------------------------------------------------------------------------------- /test/kernel_log_generator/generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/kernel_log_generator/generator.sh -------------------------------------------------------------------------------- /test/kernel_log_generator/problems/oom_kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/test/kernel_log_generator/problems/oom_kill -------------------------------------------------------------------------------- /test/kernel_log_generator/problems/readonly_filesystem: -------------------------------------------------------------------------------- 1 | EXT4-fs (sda1): Remounting filesystem read-only 2 | -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/code.cloudfoundry.org/clock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/code.cloudfoundry.org/clock/LICENSE -------------------------------------------------------------------------------- /vendor/code.cloudfoundry.org/clock/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/code.cloudfoundry.org/clock/NOTICE -------------------------------------------------------------------------------- /vendor/code.cloudfoundry.org/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/code.cloudfoundry.org/clock/README.md -------------------------------------------------------------------------------- /vendor/code.cloudfoundry.org/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/code.cloudfoundry.org/clock/clock.go -------------------------------------------------------------------------------- /vendor/code.cloudfoundry.org/clock/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/code.cloudfoundry.org/clock/ticker.go -------------------------------------------------------------------------------- /vendor/code.cloudfoundry.org/clock/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/code.cloudfoundry.org/clock/timer.go -------------------------------------------------------------------------------- /vendor/contrib.go.opencensus.io/exporter/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /vendor/contrib.go.opencensus.io/exporter/stackdriver/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/github.com/StackExchange/wmi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/StackExchange/wmi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/StackExchange/wmi/wmi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/StackExchange/wmi/wmi.go -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/avast/retry-go/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/avast/retry-go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/avast/retry-go/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/avast/retry-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/avast/retry-go/Makefile -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/avast/retry-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/avast/retry-go/options.go -------------------------------------------------------------------------------- /vendor/github.com/avast/retry-go/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/avast/retry-go/retry.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/aws/aws-sdk-go/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/aws/aws-sdk-go/NOTICE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/aws/aws-sdk-go/aws/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/aws/aws-sdk-go/aws/url.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/census-instrumentation/opencensus-proto/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. -------------------------------------------------------------------------------- /vendor/github.com/cobaugh/osrelease/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/cobaugh/osrelease/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/coreos/go-systemd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/ChangeLog.md -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/com.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/com.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/com_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/com_func.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/connect.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/constants.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/error.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/go.mod -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/guid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/guid.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/idispatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/idispatch.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/itypeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/itypeinfo.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/iunknown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/iunknown.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/ole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/ole.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/safearray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/safearray.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/utility.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/utility.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/variables.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/variant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/variant.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/vt_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/vt_string.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/winrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/winrt.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/winrt_doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/go-ole/go-ole/winrt_doc.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/cadvisor/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/cadvisor/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/go-cmp/cmp/path.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/gofuzz 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/googleapis/gnostic/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/errwrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hashicorp/errwrap/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/.gitignore: -------------------------------------------------------------------------------- 1 | .test 2 | .go 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/CHANGES.md -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/README.md -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/tail.go -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/tail_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/tail_posix.go -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/hpcloud/tail/util/util.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/imdario/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/imdario/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/config.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/go.mod -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/go.sum -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/stream.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/modern-go/reflect2/test.sh -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/ginkgo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/ginkgo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/ginkgo/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/ginkgo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/ginkgo/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/ginkgo/RELEASING.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/ginkgo/ginkgo_dsl.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/ginkgo/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/Makefile -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/RELEASING.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/go.mod -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/go.sum -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gomega_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/gomega_dsl.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/matchers.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/or.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/matchers/or.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/onsi/gomega/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/go.mod -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/go.sum -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/swaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/swaps.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/xfrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/prometheus/procfs/xfrm.go -------------------------------------------------------------------------------- /vendor/github.com/shirou/gopsutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/shirou/gopsutil/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/shirou/gopsutil/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/shirou/gopsutil/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/github.com/shirou/gopsutil/mem/mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/shirou/gopsutil/mem/mem.go -------------------------------------------------------------------------------- /vendor/github.com/shirou/gopsutil/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/shirou/gopsutil/net/net.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/go.mod -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/go.sum -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/pflag 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/.travis.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/go.mod -------------------------------------------------------------------------------- /vendor/go.opencensus.io/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/go.sum -------------------------------------------------------------------------------- /vendor/go.opencensus.io/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/internal/internal.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/internal/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/internal/sanitize.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/plugin/ocgrpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/plugin/ocgrpc/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/plugin/ochttp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/plugin/ochttp/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/resource/resource.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/measure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/stats/measure.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/stats/record.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/stats/view/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/stats/view/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/stats/view/view.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/stats/view/worker.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/map_codec.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/metadata.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/profile_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/profile_19.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/profile_not19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/profile_not19.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/tag/validate.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/basetypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/basetypes.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/sampling.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/spanbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/spanbucket.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/spanstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/spanstore.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace_go11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/go.opencensus.io/trace/trace_go11.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/curve25519/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/ssh_gss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/ssh_gss.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sync/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/api/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/appengine/go.mod -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/appengine/go.sum -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/.editorconfig -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/AUTHORS -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/fen.go -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/fsnotify.go -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/inotify.go -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/kqueue.go -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/fsnotify.v1/windows.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/tomb.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/tomb.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/tomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/tomb.v1/tomb.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/authorization/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/autoscaling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/batch/v2alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/batch/v2alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/coordination/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/events/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/node/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/node/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/policy/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/scheduling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/storage/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/discovery/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/discovery/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/kubernetes/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/rest/transport.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/url_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/rest/url_utils.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/auth/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/tools/auth/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/util/cert/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/util/cert/cert.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /vendor/k8s.io/heapster/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/heapster/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/go.mod -------------------------------------------------------------------------------- /vendor/k8s.io/klog/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/go.sum -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/ssh/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/kubernetes/pkg/ssh/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/kubernetes/pkg/ssh/ssh.go -------------------------------------------------------------------------------- /vendor/k8s.io/test-infra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/test-infra/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/inotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/utils/inotify/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/inotify/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/utils/inotify/PATENTS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/inotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/utils/inotify/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/integer/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/k8s.io/utils/integer/integer.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/node-problem-detector/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go --------------------------------------------------------------------------------