├── .circleci └── config.yml ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── lock.yml ├── stale.yml └── workflows │ ├── codeql-analysis.yml │ ├── funcbench.yml │ ├── fuzzing.yml │ └── prombench.yml ├── .gitignore ├── .gitpod.yml ├── .golangci.yml ├── .promu.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── Makefile.common ├── NOTICE ├── README.md ├── RELEASE.md ├── SECURITY.md ├── VERSION ├── cmd ├── prometheus │ ├── main.go │ ├── main_test.go │ ├── main_unix_test.go │ ├── prometheus.yml │ ├── query_log_test.go │ └── testdata │ │ ├── consoles │ │ └── test.html │ │ └── rules │ │ └── test.yml └── promtool │ ├── archive.go │ ├── backfill.go │ ├── backfill_test.go │ ├── debug.go │ ├── main.go │ ├── main_test.go │ ├── testdata │ ├── bad-input-series.yml │ ├── bad-promql.yml │ ├── bad-rules-error-test.yml │ ├── bad-rules-error.yml │ ├── bad-rules-syntax-test.yml │ ├── bad-rules-syntax.yml │ ├── failing.yml │ ├── rules.yml │ └── unittest.yml │ ├── tsdb.go │ ├── unittest.go │ └── unittest_test.go ├── config ├── config.go ├── config_default_test.go ├── config_test.go ├── config_windows_test.go └── testdata │ ├── azure_authentication_method.bad.yml │ ├── azure_client_id_missing.bad.yml │ ├── azure_client_secret_missing.bad.yml │ ├── azure_subscription_id_missing.bad.yml │ ├── azure_tenant_id_missing.bad.yml │ ├── bearertoken.bad.yml │ ├── bearertoken_basicauth.bad.yml │ ├── conf.good.yml │ ├── ec2_filters_empty_values.bad.yml │ ├── empty_alert_relabel_config.bad.yml │ ├── empty_alertmanager_relabel_config.bad.yml │ ├── empty_metric_relabel_config.bad.yml │ ├── empty_rr_config.bad.yml │ ├── empty_rw_config.bad.yml │ ├── empty_rw_relabel_config.bad.yml │ ├── empty_scrape_config.bad.yml │ ├── empty_static_config.bad.yml │ ├── empty_target_relabel_config.bad.yml │ ├── eureka_invalid_server.bad.yml │ ├── eureka_no_server.bad.yml │ ├── first.rules │ ├── global_timeout.good.yml │ ├── hetzner_role.bad.yml │ ├── jobname.bad.yml │ ├── jobname_dup.bad.yml │ ├── kubernetes_bearertoken.bad.yml │ ├── kubernetes_bearertoken_basicauth.bad.yml │ ├── kubernetes_empty_apiserver.good.yml │ ├── kubernetes_http_config_without_api_server.bad.yml │ ├── kubernetes_namespace_discovery.bad.yml │ ├── kubernetes_role.bad.yml │ ├── kubernetes_selectors_duplicated_role.bad.yml │ ├── kubernetes_selectors_endpoints.bad.yml │ ├── kubernetes_selectors_endpoints.good.yml │ ├── kubernetes_selectors_incorrect_selector.bad.yml │ ├── kubernetes_selectors_ingress.bad.yml │ ├── kubernetes_selectors_ingress.good.yml │ ├── kubernetes_selectors_node.bad.yml │ ├── kubernetes_selectors_node.good.yml │ ├── kubernetes_selectors_pod.bad.yml │ ├── kubernetes_selectors_pod.good.yml │ ├── kubernetes_selectors_service.bad.yml │ ├── kubernetes_selectors_service.good.yml │ ├── labeldrop.bad.yml │ ├── labeldrop2.bad.yml │ ├── labeldrop3.bad.yml │ ├── labeldrop4.bad.yml │ ├── labeldrop5.bad.yml │ ├── labelkeep.bad.yml │ ├── labelkeep2.bad.yml │ ├── labelkeep3.bad.yml │ ├── labelkeep4.bad.yml │ ├── labelkeep5.bad.yml │ ├── labelmap.bad.yml │ ├── labelname.bad.yml │ ├── labelname2.bad.yml │ ├── labelvalue.bad.yml │ ├── marathon_authtoken_authtokenfile.bad.yml │ ├── marathon_authtoken_basicauth.bad.yml │ ├── marathon_authtoken_bearertoken.bad.yml │ ├── marathon_no_servers.bad.yml │ ├── modulus_missing.bad.yml │ ├── openstack_availability.bad.yml │ ├── openstack_role.bad.yml │ ├── regex.bad.yml │ ├── remote_read_dup.bad.yml │ ├── remote_read_url_missing.bad.yml │ ├── remote_write_dup.bad.yml │ ├── remote_write_url_missing.bad.yml │ ├── roundtrip.good.yml │ ├── rules.bad.yml │ ├── rules_abs_path.good.yml │ ├── rules_abs_path_windows.good.yml │ ├── scrape_interval.bad.yml │ ├── scrape_interval_larger.good.yml │ ├── section_key_dup.bad.yml │ ├── static_config.bad.json │ ├── static_config.bad.yml │ ├── target_label_hashmod_missing.bad.yml │ ├── target_label_missing.bad.yml │ ├── unknown_attr.bad.yml │ ├── unknown_global_attr.bad.yml │ └── url_in_targetgroup.bad.yml ├── console_libraries ├── menu.lib └── prom.lib ├── consoles ├── index.html.example ├── node-cpu.html ├── node-disk.html ├── node-overview.html ├── node.html ├── prometheus-overview.html └── prometheus.html ├── discovery ├── README.md ├── azure │ ├── azure.go │ └── azure_test.go ├── consul │ ├── consul.go │ └── consul_test.go ├── digitalocean │ ├── digitalocean.go │ ├── digitalocean_test.go │ └── mock_test.go ├── discovery.go ├── dns │ ├── dns.go │ └── dns_test.go ├── dockerswarm │ ├── dockerswarm.go │ ├── mock_test.go │ ├── network.go │ ├── nodes.go │ ├── nodes_test.go │ ├── services.go │ ├── services_test.go │ ├── tasks.go │ ├── tasks_test.go │ └── testdata │ │ └── swarmprom │ │ ├── _ping.json │ │ ├── headers.yml │ │ ├── networks.json │ │ ├── nodes.json │ │ ├── services.json │ │ ├── services.json__wvKVCQ4HhD │ │ └── tasks.json ├── ec2 │ └── ec2.go ├── eureka │ ├── client.go │ ├── client_test.go │ ├── eureka.go │ └── eureka_test.go ├── file │ ├── file.go │ ├── file_test.go │ └── fixtures │ │ ├── invalid_nil.json │ │ ├── invalid_nil.yml │ │ ├── valid.json │ │ ├── valid.yml │ │ ├── valid2.yml │ │ └── valid3.yml ├── gce │ └── gce.go ├── hetzner │ ├── hcloud.go │ ├── hcloud_test.go │ ├── hetzner.go │ ├── mock_test.go │ ├── robot.go │ └── robot_test.go ├── install │ └── install.go ├── kubernetes │ ├── client_metrics.go │ ├── endpoints.go │ ├── endpoints_test.go │ ├── endpointslice.go │ ├── endpointslice_test.go │ ├── ingress.go │ ├── ingress_test.go │ ├── kubernetes.go │ ├── kubernetes_test.go │ ├── node.go │ ├── node_test.go │ ├── pod.go │ ├── pod_test.go │ ├── service.go │ └── service_test.go ├── manager.go ├── manager_test.go ├── marathon │ ├── marathon.go │ └── marathon_test.go ├── openstack │ ├── hypervisor.go │ ├── hypervisor_test.go │ ├── instance.go │ ├── instance_test.go │ ├── mock_test.go │ └── openstack.go ├── refresh │ ├── refresh.go │ └── refresh_test.go ├── registry.go ├── targetgroup │ ├── targetgroup.go │ └── targetgroup_test.go ├── triton │ ├── triton.go │ └── triton_test.go └── zookeeper │ ├── zookeeper.go │ └── zookeeper_test.go ├── docs ├── configuration │ ├── alerting_rules.md │ ├── configuration.md │ ├── https.md │ ├── index.md │ ├── recording_rules.md │ ├── template_examples.md │ ├── template_reference.md │ └── unit_testing_rules.md ├── federation.md ├── getting_started.md ├── images │ └── remote_integrations.png ├── index.md ├── installation.md ├── management_api.md ├── migration.md ├── querying │ ├── api.md │ ├── basics.md │ ├── examples.md │ ├── functions.md │ ├── index.md │ └── operators.md ├── stability.md └── storage.md ├── documentation ├── examples │ ├── custom-sd │ │ ├── README.md │ │ ├── adapter-usage │ │ │ └── main.go │ │ └── adapter │ │ │ ├── adapter.go │ │ │ └── adapter_test.go │ ├── kubernetes-rabbitmq │ │ ├── README.md │ │ ├── rc.yml │ │ └── svc.yml │ ├── prometheus-digitalocean.yml │ ├── prometheus-dockerswarm.yml │ ├── prometheus-eureka.yml │ ├── prometheus-hetzner.yml │ ├── prometheus-kubernetes.yml │ ├── prometheus-marathon.yml │ ├── prometheus.yml │ ├── rbac-setup.yml │ ├── remote_storage │ │ ├── example_write_adapter │ │ │ ├── README.md │ │ │ └── server.go │ │ └── remote_storage_adapter │ │ │ ├── README.md │ │ │ ├── graphite │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ └── escape.go │ │ │ ├── influxdb │ │ │ ├── client.go │ │ │ └── client_test.go │ │ │ ├── main.go │ │ │ └── opentsdb │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── tagvalue.go │ │ │ └── tagvalue_test.go │ └── web-config.yml ├── images │ ├── architecture.svg │ ├── architecture.xml │ ├── diagram_note.md │ ├── internal_architecture.svg │ └── internal_architecture.xml ├── internal_architecture.md └── prometheus-mixin │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── alerts.jsonnet │ ├── alerts.libsonnet │ ├── config.libsonnet │ ├── dashboards.jsonnet │ ├── dashboards.libsonnet │ ├── go.mod │ ├── go.sum │ ├── jsonnetfile.json │ ├── mixin.libsonnet │ └── tools.go ├── go.mod ├── go.sum ├── models ├── config.go └── mysql.go ├── notifier ├── notifier.go └── notifier_test.go ├── pkg ├── exemplar │ └── exemplar.go ├── gate │ └── gate.go ├── labels │ ├── labels.go │ ├── labels_test.go │ ├── matcher.go │ ├── matcher_test.go │ ├── regexp.go │ ├── regexp_test.go │ └── test_utils.go ├── logging │ ├── dedupe.go │ ├── dedupe_test.go │ ├── file.go │ ├── file_test.go │ └── ratelimit.go ├── modtimevfs │ └── modtimevfs.go ├── pool │ ├── pool.go │ └── pool_test.go ├── relabel │ ├── relabel.go │ └── relabel_test.go ├── rulefmt │ ├── rulefmt.go │ ├── rulefmt_test.go │ └── testdata │ │ ├── bad_annotation.bad.yaml │ │ ├── bad_expr.bad.yaml │ │ ├── bad_field.bad.yaml │ │ ├── bad_lname.bad.yaml │ │ ├── duplicate_grp.bad.yaml │ │ ├── invalid_label_name.bad.yaml │ │ ├── invalid_record_name.bad.yaml │ │ ├── no_rec_alert.bad.yaml │ │ ├── noexpr.bad.yaml │ │ ├── record_and_alert.bad.yaml │ │ └── test.yaml ├── runtime │ ├── limits_default.go │ ├── limits_windows.go │ ├── statfs.go │ ├── statfs_default.go │ ├── statfs_linux_386.go │ ├── statfs_uint32.go │ ├── uname_default.go │ ├── uname_linux.go │ ├── vmlimits_default.go │ └── vmlimits_openbsd.go ├── textparse │ ├── README.md │ ├── interface.go │ ├── openmetricslex.l │ ├── openmetricslex.l.go │ ├── openmetricsparse.go │ ├── openmetricsparse_test.go │ ├── promlex.l │ ├── promlex.l.go │ ├── promparse.go │ ├── promparse_test.go │ ├── promtestdata.nometa.txt │ └── promtestdata.txt ├── timestamp │ └── timestamp.go └── value │ └── value.go ├── prompb ├── README.md ├── custom.go ├── remote.pb.go ├── remote.proto ├── types.pb.go └── types.proto ├── promql ├── bench_test.go ├── engine.go ├── engine_test.go ├── functions.go ├── functions_test.go ├── fuzz-data │ ├── ParseExpr │ │ └── corpus │ │ │ ├── from_tests_1 │ │ │ ├── from_tests_10 │ │ │ ├── from_tests_11 │ │ │ ├── from_tests_12 │ │ │ ├── from_tests_13 │ │ │ ├── from_tests_14 │ │ │ ├── from_tests_15 │ │ │ ├── from_tests_16 │ │ │ ├── from_tests_17 │ │ │ ├── from_tests_18 │ │ │ ├── from_tests_19 │ │ │ ├── from_tests_2 │ │ │ ├── from_tests_20 │ │ │ ├── from_tests_21 │ │ │ ├── from_tests_22 │ │ │ ├── from_tests_23 │ │ │ ├── from_tests_24 │ │ │ ├── from_tests_25 │ │ │ ├── from_tests_26 │ │ │ ├── from_tests_27 │ │ │ ├── from_tests_28 │ │ │ ├── from_tests_29 │ │ │ ├── from_tests_3 │ │ │ ├── from_tests_30 │ │ │ ├── from_tests_31 │ │ │ ├── from_tests_32 │ │ │ ├── from_tests_33 │ │ │ ├── from_tests_34 │ │ │ ├── from_tests_4 │ │ │ ├── from_tests_5 │ │ │ ├── from_tests_6 │ │ │ ├── from_tests_7 │ │ │ ├── from_tests_8 │ │ │ └── from_tests_9 │ └── ParseMetric │ │ └── corpus │ │ ├── 982cbe5ad899f03c630b1a21876a206707ea3dc9 │ │ ├── exposition_formats_0 │ │ ├── exposition_formats_1 │ │ ├── exposition_formats_2 │ │ ├── exposition_formats_3 │ │ ├── exposition_formats_4 │ │ ├── exposition_formats_5 │ │ ├── exposition_formats_6 │ │ └── exposition_formats_7 ├── fuzz.go ├── parser │ ├── ast.go │ ├── functions.go │ ├── generated_parser.y │ ├── generated_parser.y.go │ ├── lex.go │ ├── lex_test.go │ ├── parse.go │ ├── parse_test.go │ ├── printer.go │ ├── printer_test.go │ └── value.go ├── promql_test.go ├── quantile.go ├── query_logger.go ├── query_logger_test.go ├── test.go ├── test_test.go ├── testdata │ ├── aggregators.test │ ├── collision.test │ ├── functions.test │ ├── histograms.test │ ├── literals.test │ ├── operators.test │ ├── selectors.test │ ├── staleness.test │ └── subquery.test └── value.go ├── rules ├── alerting.go ├── alerting_test.go ├── fixtures │ ├── rules.yaml │ ├── rules2.yaml │ └── rules2_copy.yaml ├── manager.go ├── manager_test.go ├── recording.go └── recording_test.go ├── scrape ├── helpers_test.go ├── manager.go ├── manager_test.go ├── scrape.go ├── scrape_test.go ├── target.go ├── target_test.go └── testdata │ ├── bearertoken.txt │ ├── ca.cer │ ├── ca.key │ ├── client.cer │ ├── client.key │ ├── server.cer │ ├── server.key │ ├── servername.cer │ └── servername.key ├── scripts ├── build_react_app.sh ├── errcheck_excludes.txt ├── genproto.sh ├── sync_repo_files.sh └── tools.go ├── storage ├── buffer.go ├── buffer_test.go ├── fanout.go ├── fanout_test.go ├── generic.go ├── interface.go ├── lazy.go ├── merge.go ├── merge_test.go ├── noop.go ├── remote │ ├── chunked.go │ ├── chunked_test.go │ ├── client.go │ ├── client_test.go │ ├── codec.go │ ├── codec_test.go │ ├── ewma.go │ ├── intern.go │ ├── intern_test.go │ ├── max_timestamp.go │ ├── metadata_watcher.go │ ├── metadata_watcher_test.go │ ├── queue_manager.go │ ├── queue_manager_test.go │ ├── read.go │ ├── read_test.go │ ├── storage.go │ ├── storage_test.go │ ├── write.go │ └── write_test.go ├── secondary.go └── series.go ├── template ├── template.go └── template_test.go ├── tsdb ├── .gitignore ├── CHANGELOG.md ├── README.md ├── block.go ├── block_test.go ├── blockwriter.go ├── blockwriter_test.go ├── chunkenc │ ├── bstream.go │ ├── bstream_test.go │ ├── chunk.go │ ├── chunk_test.go │ └── xor.go ├── chunks │ ├── chunks.go │ ├── chunks_test.go │ ├── head_chunks.go │ ├── head_chunks_other.go │ ├── head_chunks_test.go │ └── head_chunks_windows.go ├── compact.go ├── compact_test.go ├── db.go ├── db_test.go ├── docs │ └── format │ │ ├── README.md │ │ ├── chunks.md │ │ ├── head_chunks.md │ │ ├── index.md │ │ ├── tombstones.md │ │ └── wal.md ├── encoding │ └── encoding.go ├── errors │ └── errors.go ├── fileutil │ ├── dir.go │ ├── dir_unix.go │ ├── dir_windows.go │ ├── fileutil.go │ ├── flock.go │ ├── flock_plan9.go │ ├── flock_solaris.go │ ├── flock_test.go │ ├── flock_unix.go │ ├── flock_windows.go │ ├── mmap.go │ ├── mmap_386.go │ ├── mmap_amd64.go │ ├── mmap_unix.go │ ├── mmap_windows.go │ ├── preallocate.go │ ├── preallocate_darwin.go │ ├── preallocate_linux.go │ ├── preallocate_other.go │ ├── sync.go │ ├── sync_darwin.go │ └── sync_linux.go ├── goversion │ ├── goversion.go │ ├── goversion_test.go │ └── init.go ├── head.go ├── head_bench_test.go ├── head_test.go ├── index │ ├── index.go │ ├── index_test.go │ ├── postings.go │ ├── postings_test.go │ ├── postingsstats.go │ └── postingsstats_test.go ├── isolation.go ├── isolation_test.go ├── mocks_test.go ├── querier.go ├── querier_bench_test.go ├── querier_test.go ├── record │ ├── record.go │ └── record_test.go ├── repair.go ├── repair_test.go ├── test │ ├── conv_test.go │ ├── hash_test.go │ └── labels_test.go ├── testdata │ ├── 20kseries.json │ ├── index_format_v1 │ │ ├── chunks │ │ │ └── 000001 │ │ ├── index │ │ ├── meta.json │ │ └── tombstones │ └── repair_index_version │ │ └── 01BZJ9WJQPWHGNC2W4J9TA62KC │ │ ├── index │ │ └── meta.json ├── tombstones │ ├── tombstones.go │ └── tombstones_test.go ├── tsdbblockutil.go ├── tsdbutil │ ├── buffer.go │ ├── buffer_test.go │ └── chunks.go ├── wal.go ├── wal │ ├── checkpoint.go │ ├── checkpoint_test.go │ ├── live_reader.go │ ├── reader.go │ ├── reader_test.go │ ├── wal.go │ ├── wal_test.go │ ├── watcher.go │ └── watcher_test.go └── wal_test.go ├── util ├── httputil │ ├── compression.go │ ├── compression_test.go │ ├── context.go │ ├── cors.go │ └── cors_test.go ├── stats │ ├── query_stats.go │ ├── stats_test.go │ └── timer.go ├── strutil │ ├── quote.go │ ├── quote_test.go │ ├── strconv.go │ └── strconv_test.go ├── teststorage │ └── storage.go ├── testutil │ ├── context.go │ ├── directory.go │ ├── logging.go │ ├── roundtrip.go │ └── testing.go └── treecache │ └── treecache.go ├── vendor ├── cloud.google.com │ └── go │ │ ├── LICENSE │ │ └── compute │ │ └── metadata │ │ └── metadata.go ├── github.com │ ├── Azure │ │ ├── azure-sdk-for-go │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── services │ │ │ │ ├── compute │ │ │ │ │ └── mgmt │ │ │ │ │ │ └── 2018-10-01 │ │ │ │ │ │ └── compute │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── availabilitysets.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── containerservices.go │ │ │ │ │ │ ├── disks.go │ │ │ │ │ │ ├── enums.go │ │ │ │ │ │ ├── galleries.go │ │ │ │ │ │ ├── galleryimages.go │ │ │ │ │ │ ├── galleryimageversions.go │ │ │ │ │ │ ├── images.go │ │ │ │ │ │ ├── loganalytics.go │ │ │ │ │ │ ├── models.go │ │ │ │ │ │ ├── operations.go │ │ │ │ │ │ ├── proximityplacementgroups.go │ │ │ │ │ │ ├── resourceskus.go │ │ │ │ │ │ ├── snapshots.go │ │ │ │ │ │ ├── usage.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ ├── virtualmachineextensionimages.go │ │ │ │ │ │ ├── virtualmachineextensions.go │ │ │ │ │ │ ├── virtualmachineimages.go │ │ │ │ │ │ ├── virtualmachineruncommands.go │ │ │ │ │ │ ├── virtualmachines.go │ │ │ │ │ │ ├── virtualmachinescalesetextensions.go │ │ │ │ │ │ ├── virtualmachinescalesetrollingupgrades.go │ │ │ │ │ │ ├── virtualmachinescalesets.go │ │ │ │ │ │ ├── virtualmachinescalesetvms.go │ │ │ │ │ │ └── virtualmachinesizes.go │ │ │ │ └── network │ │ │ │ │ └── mgmt │ │ │ │ │ └── 2018-10-01 │ │ │ │ │ └── network │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── applicationgateways.go │ │ │ │ │ ├── applicationsecuritygroups.go │ │ │ │ │ ├── availabledelegations.go │ │ │ │ │ ├── availableendpointservices.go │ │ │ │ │ ├── availableresourcegroupdelegations.go │ │ │ │ │ ├── azurefirewallfqdntags.go │ │ │ │ │ ├── azurefirewalls.go │ │ │ │ │ ├── bgpservicecommunities.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── connectionmonitors.go │ │ │ │ │ ├── ddosprotectionplans.go │ │ │ │ │ ├── defaultsecurityrules.go │ │ │ │ │ ├── enums.go │ │ │ │ │ ├── expressroutecircuitauthorizations.go │ │ │ │ │ ├── expressroutecircuitconnections.go │ │ │ │ │ ├── expressroutecircuitpeerings.go │ │ │ │ │ ├── expressroutecircuits.go │ │ │ │ │ ├── expressrouteconnections.go │ │ │ │ │ ├── expressroutecrossconnectionpeerings.go │ │ │ │ │ ├── expressroutecrossconnections.go │ │ │ │ │ ├── expressroutegateways.go │ │ │ │ │ ├── expressroutelinks.go │ │ │ │ │ ├── expressrouteports.go │ │ │ │ │ ├── expressrouteportslocations.go │ │ │ │ │ ├── expressrouteserviceproviders.go │ │ │ │ │ ├── hubvirtualnetworkconnections.go │ │ │ │ │ ├── inboundnatrules.go │ │ │ │ │ ├── interfaceendpoints.go │ │ │ │ │ ├── interfaceipconfigurations.go │ │ │ │ │ ├── interfaceloadbalancers.go │ │ │ │ │ ├── interfacesgroup.go │ │ │ │ │ ├── interfacetapconfigurations.go │ │ │ │ │ ├── loadbalancerbackendaddresspools.go │ │ │ │ │ ├── loadbalancerfrontendipconfigurations.go │ │ │ │ │ ├── loadbalancerloadbalancingrules.go │ │ │ │ │ ├── loadbalancernetworkinterfaces.go │ │ │ │ │ ├── loadbalanceroutboundrules.go │ │ │ │ │ ├── loadbalancerprobes.go │ │ │ │ │ ├── loadbalancers.go │ │ │ │ │ ├── localnetworkgateways.go │ │ │ │ │ ├── models.go │ │ │ │ │ ├── operations.go │ │ │ │ │ ├── p2svpngateways.go │ │ │ │ │ ├── p2svpnserverconfigurations.go │ │ │ │ │ ├── packetcaptures.go │ │ │ │ │ ├── profiles.go │ │ │ │ │ ├── publicipaddresses.go │ │ │ │ │ ├── publicipprefixes.go │ │ │ │ │ ├── routefilterrules.go │ │ │ │ │ ├── routefilters.go │ │ │ │ │ ├── routes.go │ │ │ │ │ ├── routetables.go │ │ │ │ │ ├── securitygroups.go │ │ │ │ │ ├── securityrules.go │ │ │ │ │ ├── serviceendpointpolicies.go │ │ │ │ │ ├── serviceendpointpolicydefinitions.go │ │ │ │ │ ├── subnets.go │ │ │ │ │ ├── usages.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── virtualhubs.go │ │ │ │ │ ├── virtualnetworkgatewayconnections.go │ │ │ │ │ ├── virtualnetworkgateways.go │ │ │ │ │ ├── virtualnetworkpeerings.go │ │ │ │ │ ├── virtualnetworks.go │ │ │ │ │ ├── virtualnetworktaps.go │ │ │ │ │ ├── virtualwans.go │ │ │ │ │ ├── vpnconnections.go │ │ │ │ │ ├── vpngateways.go │ │ │ │ │ ├── vpnsites.go │ │ │ │ │ ├── vpnsitesconfiguration.go │ │ │ │ │ └── watchers.go │ │ │ └── version │ │ │ │ └── version.go │ │ └── go-autorest │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── GNUmakefile │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── autorest │ │ │ ├── LICENSE │ │ │ ├── adal │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── devicetoken.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── persist.go │ │ │ │ ├── sender.go │ │ │ │ ├── token.go │ │ │ │ ├── token_1.13.go │ │ │ │ ├── token_legacy.go │ │ │ │ └── version.go │ │ │ ├── authorization.go │ │ │ ├── authorization_sas.go │ │ │ ├── authorization_storage.go │ │ │ ├── autorest.go │ │ │ ├── azure │ │ │ │ ├── async.go │ │ │ │ ├── azure.go │ │ │ │ ├── environments.go │ │ │ │ ├── metadata_environment.go │ │ │ │ └── rp.go │ │ │ ├── client.go │ │ │ ├── date │ │ │ │ ├── LICENSE │ │ │ │ ├── date.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── time.go │ │ │ │ ├── timerfc1123.go │ │ │ │ ├── unixtime.go │ │ │ │ └── utility.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── preparer.go │ │ │ ├── responder.go │ │ │ ├── retriablerequest.go │ │ │ ├── retriablerequest_1.7.go │ │ │ ├── retriablerequest_1.8.go │ │ │ ├── sender.go │ │ │ ├── to │ │ │ │ ├── LICENSE │ │ │ │ ├── convert.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── go_mod_tidy_hack.go │ │ │ ├── utility.go │ │ │ ├── utility_1.13.go │ │ │ ├── utility_legacy.go │ │ │ ├── validation │ │ │ │ ├── LICENSE │ │ │ │ ├── error.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ └── validation.go │ │ │ └── version.go │ │ │ ├── azure-pipelines.yml │ │ │ ├── doc.go │ │ │ ├── logger │ │ │ ├── LICENSE │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── logger.go │ │ │ └── tracing │ │ │ ├── LICENSE │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── tracing.go │ ├── Microsoft │ │ └── go-winio │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backup.go │ │ │ ├── ea.go │ │ │ ├── file.go │ │ │ ├── fileinfo.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hvsock.go │ │ │ ├── pipe.go │ │ │ ├── pkg │ │ │ └── guid │ │ │ │ └── guid.go │ │ │ ├── privilege.go │ │ │ ├── reparse.go │ │ │ ├── sd.go │ │ │ ├── syscall.go │ │ │ └── zsyscall_windows.go │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── purell.go │ │ └── urlesc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── urlesc.go │ ├── alecthomas │ │ ├── template │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── exec.go │ │ │ ├── funcs.go │ │ │ ├── go.mod │ │ │ ├── helper.go │ │ │ ├── parse │ │ │ │ ├── lex.go │ │ │ │ ├── node.go │ │ │ │ └── parse.go │ │ │ └── template.go │ │ └── units │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── bytes.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── si.go │ │ │ └── util.go │ ├── armon │ │ └── go-metrics │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── const_unix.go │ │ │ ├── const_windows.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── inmem.go │ │ │ ├── inmem_endpoint.go │ │ │ ├── inmem_signal.go │ │ │ ├── metrics.go │ │ │ ├── sink.go │ │ │ ├── start.go │ │ │ ├── statsd.go │ │ │ └── statsite.go │ ├── asaskevich │ │ └── govalidator │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arrays.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ ├── numerics.go │ │ │ ├── patterns.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ ├── validator.go │ │ │ └── wercker.yml │ ├── 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 │ │ │ │ └── no_op_retryer.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 │ │ │ │ ├── context_background_go1.5.go │ │ │ │ ├── context_background_go1.7.go │ │ │ │ ├── context_go1.5.go │ │ │ │ ├── context_go1.9.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 │ │ │ │ └── token_provider.go │ │ │ ├── endpoints │ │ │ │ ├── decode.go │ │ │ │ ├── defaults.go │ │ │ │ ├── dep_service_ids.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── legacy_regions.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 │ │ │ │ ├── credentials.go │ │ │ │ ├── custom_transport.go │ │ │ │ ├── custom_transport_go1.12.go │ │ │ │ ├── custom_transport_go1.5.go │ │ │ │ ├── custom_transport_go1.6.go │ │ │ │ ├── doc.go │ │ │ │ ├── env_config.go │ │ │ │ ├── session.go │ │ │ │ └── shared_config.go │ │ │ ├── signer │ │ │ │ └── v4 │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── request_context_go1.5.go │ │ │ │ │ ├── request_context_go1.7.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── uri_path.go │ │ │ │ │ └── v4.go │ │ │ ├── types.go │ │ │ ├── url.go │ │ │ ├── url_1_7.go │ │ │ └── version.go │ │ │ ├── internal │ │ │ ├── context │ │ │ │ └── background_go1.5.go │ │ │ ├── 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 │ │ │ │ ├── byte.go │ │ │ │ ├── io_go1.6.go │ │ │ │ └── io_go1.7.go │ │ │ ├── sdkmath │ │ │ │ ├── floor.go │ │ │ │ └── floor_go1.9.go │ │ │ ├── sdkrand │ │ │ │ ├── locked_source.go │ │ │ │ ├── read.go │ │ │ │ └── read_1_5.go │ │ │ ├── sdkuri │ │ │ │ └── path.go │ │ │ ├── shareddefaults │ │ │ │ ├── ecs_container.go │ │ │ │ └── shared_config.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ └── sync │ │ │ │ └── singleflight │ │ │ │ ├── LICENSE │ │ │ │ └── singleflight.go │ │ │ ├── private │ │ │ └── protocol │ │ │ │ ├── ec2query │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── host.go │ │ │ │ ├── host_prefix.go │ │ │ │ ├── idempotency.go │ │ │ │ ├── json │ │ │ │ └── jsonutil │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── payload.go │ │ │ │ ├── protocol.go │ │ │ │ ├── query │ │ │ │ ├── build.go │ │ │ │ ├── queryutil │ │ │ │ │ └── queryutil.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── rest │ │ │ │ ├── build.go │ │ │ │ ├── payload.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── unmarshal.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── xml │ │ │ │ └── xmlutil │ │ │ │ ├── build.go │ │ │ │ ├── sort.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── xml_to_struct.go │ │ │ └── service │ │ │ ├── ec2 │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── waiters.go │ │ │ └── sts │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── stsiface │ │ │ └── interface.go │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_other.go │ │ │ ├── xxhash_safe.go │ │ │ └── xxhash_unsafe.go │ ├── containerd │ │ └── containerd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── errdefs │ │ │ ├── errors.go │ │ │ └── grpc.go │ │ │ ├── log │ │ │ └── context.go │ │ │ └── platforms │ │ │ ├── compare.go │ │ │ ├── cpuinfo.go │ │ │ ├── database.go │ │ │ ├── defaults.go │ │ │ ├── defaults_unix.go │ │ │ ├── defaults_windows.go │ │ │ └── platforms.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── dgryski │ │ └── go-sip13 │ │ │ ├── LICENSE │ │ │ ├── sip13.go │ │ │ ├── sip13_amd64.s │ │ │ └── sip13_stub.go │ ├── digitalocean │ │ └── godo │ │ │ ├── .gitignore │ │ │ ├── .whitesource │ │ │ ├── 1-click.go │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── account.go │ │ │ ├── action.go │ │ │ ├── apps.gen.go │ │ │ ├── apps.go │ │ │ ├── balance.go │ │ │ ├── billing_history.go │ │ │ ├── cdn.go │ │ │ ├── certificates.go │ │ │ ├── databases.go │ │ │ ├── doc.go │ │ │ ├── domains.go │ │ │ ├── droplet_actions.go │ │ │ ├── droplets.go │ │ │ ├── errors.go │ │ │ ├── firewalls.go │ │ │ ├── floating_ips.go │ │ │ ├── floating_ips_actions.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── godo.go │ │ │ ├── image_actions.go │ │ │ ├── images.go │ │ │ ├── invoices.go │ │ │ ├── keys.go │ │ │ ├── kubernetes.go │ │ │ ├── links.go │ │ │ ├── load_balancers.go │ │ │ ├── meta.go │ │ │ ├── projects.go │ │ │ ├── regions.go │ │ │ ├── registry.go │ │ │ ├── sizes.go │ │ │ ├── snapshots.go │ │ │ ├── storage.go │ │ │ ├── storage_actions.go │ │ │ ├── strings.go │ │ │ ├── tags.go │ │ │ ├── timestamp.go │ │ │ └── vpcs.go │ ├── docker │ │ ├── distribution │ │ │ ├── LICENSE │ │ │ ├── digestset │ │ │ │ └── set.go │ │ │ ├── reference │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── reference.go │ │ │ │ └── regexp.go │ │ │ └── registry │ │ │ │ └── api │ │ │ │ └── errcode │ │ │ │ ├── errors.go │ │ │ │ ├── handler.go │ │ │ │ └── register.go │ │ ├── docker │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── common_unix.go │ │ │ │ ├── common_windows.go │ │ │ │ ├── swagger-gen.yaml │ │ │ │ ├── swagger.yaml │ │ │ │ └── types │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── blkiodev │ │ │ │ │ └── blkio.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── configs.go │ │ │ │ │ ├── container │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container_changes.go │ │ │ │ │ ├── container_create.go │ │ │ │ │ ├── container_top.go │ │ │ │ │ ├── container_update.go │ │ │ │ │ ├── container_wait.go │ │ │ │ │ ├── host_config.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ ├── hostconfig_windows.go │ │ │ │ │ └── waitcondition.go │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── error_response_ext.go │ │ │ │ │ ├── events │ │ │ │ │ └── events.go │ │ │ │ │ ├── filters │ │ │ │ │ └── parse.go │ │ │ │ │ ├── graph_driver_data.go │ │ │ │ │ ├── id_response.go │ │ │ │ │ ├── image │ │ │ │ │ └── image_history.go │ │ │ │ │ ├── image_delete_response_item.go │ │ │ │ │ ├── image_summary.go │ │ │ │ │ ├── mount │ │ │ │ │ └── mount.go │ │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_device.go │ │ │ │ │ ├── plugin_env.go │ │ │ │ │ ├── plugin_interface_type.go │ │ │ │ │ ├── plugin_mount.go │ │ │ │ │ ├── plugin_responses.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── registry │ │ │ │ │ ├── authenticate.go │ │ │ │ │ └── registry.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── strslice │ │ │ │ │ └── strslice.go │ │ │ │ │ ├── swarm │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ └── task.go │ │ │ │ │ ├── time │ │ │ │ │ ├── duration_convert.go │ │ │ │ │ └── timestamp.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── versions │ │ │ │ │ ├── README.md │ │ │ │ │ └── compare.go │ │ │ │ │ ├── volume.go │ │ │ │ │ └── volume │ │ │ │ │ ├── volume_create.go │ │ │ │ │ └── volume_list.go │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── build_cancel.go │ │ │ │ ├── build_prune.go │ │ │ │ ├── checkpoint_create.go │ │ │ │ ├── checkpoint_delete.go │ │ │ │ ├── checkpoint_list.go │ │ │ │ ├── client.go │ │ │ │ ├── client_deprecated.go │ │ │ │ ├── client_unix.go │ │ │ │ ├── client_windows.go │ │ │ │ ├── config_create.go │ │ │ │ ├── config_inspect.go │ │ │ │ ├── config_list.go │ │ │ │ ├── config_remove.go │ │ │ │ ├── config_update.go │ │ │ │ ├── container_attach.go │ │ │ │ ├── container_commit.go │ │ │ │ ├── container_copy.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_diff.go │ │ │ │ ├── container_exec.go │ │ │ │ ├── container_export.go │ │ │ │ ├── container_inspect.go │ │ │ │ ├── container_kill.go │ │ │ │ ├── container_list.go │ │ │ │ ├── container_logs.go │ │ │ │ ├── container_pause.go │ │ │ │ ├── container_prune.go │ │ │ │ ├── container_remove.go │ │ │ │ ├── container_rename.go │ │ │ │ ├── container_resize.go │ │ │ │ ├── container_restart.go │ │ │ │ ├── container_start.go │ │ │ │ ├── container_stats.go │ │ │ │ ├── container_stop.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_unpause.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── distribution_inspect.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── hijack.go │ │ │ │ ├── image_build.go │ │ │ │ ├── image_create.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_list.go │ │ │ │ ├── image_load.go │ │ │ │ ├── image_prune.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_remove.go │ │ │ │ ├── image_save.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── info.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_experimental.go │ │ │ │ ├── interface_stable.go │ │ │ │ ├── login.go │ │ │ │ ├── network_connect.go │ │ │ │ ├── network_create.go │ │ │ │ ├── network_disconnect.go │ │ │ │ ├── network_inspect.go │ │ │ │ ├── network_list.go │ │ │ │ ├── network_prune.go │ │ │ │ ├── network_remove.go │ │ │ │ ├── node_inspect.go │ │ │ │ ├── node_list.go │ │ │ │ ├── node_remove.go │ │ │ │ ├── node_update.go │ │ │ │ ├── options.go │ │ │ │ ├── ping.go │ │ │ │ ├── plugin_create.go │ │ │ │ ├── plugin_disable.go │ │ │ │ ├── plugin_enable.go │ │ │ │ ├── plugin_inspect.go │ │ │ │ ├── plugin_install.go │ │ │ │ ├── plugin_list.go │ │ │ │ ├── plugin_push.go │ │ │ │ ├── plugin_remove.go │ │ │ │ ├── plugin_set.go │ │ │ │ ├── plugin_upgrade.go │ │ │ │ ├── request.go │ │ │ │ ├── secret_create.go │ │ │ │ ├── secret_inspect.go │ │ │ │ ├── secret_list.go │ │ │ │ ├── secret_remove.go │ │ │ │ ├── secret_update.go │ │ │ │ ├── service_create.go │ │ │ │ ├── service_inspect.go │ │ │ │ ├── service_list.go │ │ │ │ ├── service_logs.go │ │ │ │ ├── service_remove.go │ │ │ │ ├── service_update.go │ │ │ │ ├── swarm_get_unlock_key.go │ │ │ │ ├── swarm_init.go │ │ │ │ ├── swarm_inspect.go │ │ │ │ ├── swarm_join.go │ │ │ │ ├── swarm_leave.go │ │ │ │ ├── swarm_unlock.go │ │ │ │ ├── swarm_update.go │ │ │ │ ├── task_inspect.go │ │ │ │ ├── task_list.go │ │ │ │ ├── task_logs.go │ │ │ │ ├── transport.go │ │ │ │ ├── utils.go │ │ │ │ ├── version.go │ │ │ │ ├── volume_create.go │ │ │ │ ├── volume_inspect.go │ │ │ │ ├── volume_list.go │ │ │ │ ├── volume_prune.go │ │ │ │ └── volume_remove.go │ │ │ └── errdefs │ │ │ │ ├── defs.go │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── http_helpers.go │ │ │ │ └── is.go │ │ ├── go-connections │ │ │ ├── LICENSE │ │ │ ├── nat │ │ │ │ ├── nat.go │ │ │ │ ├── parse.go │ │ │ │ └── sort.go │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── inmem_socket.go │ │ │ │ ├── proxy.go │ │ │ │ ├── sockets.go │ │ │ │ ├── sockets_unix.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── tcp_socket.go │ │ │ │ └── unix_socket.go │ │ │ └── tlsconfig │ │ │ │ ├── certpool_go17.go │ │ │ │ ├── certpool_other.go │ │ │ │ ├── config.go │ │ │ │ ├── config_client_ciphers.go │ │ │ │ └── config_legacy_client_ciphers.go │ │ └── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── size.go │ │ │ └── ulimit.go │ ├── edsrzf │ │ └── mmap-go │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── mmap.go │ │ │ ├── mmap_unix.go │ │ │ └── mmap_windows.go │ ├── evanphx │ │ └── json-patch │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── merge.go │ │ │ └── patch.go │ ├── fatih │ │ └── color │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ └── go.sum │ ├── form3tech-oss │ │ └── jwt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ └── yaml.go │ ├── go-kit │ │ └── kit │ │ │ ├── LICENSE │ │ │ └── log │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── json_logger.go │ │ │ ├── level │ │ │ ├── doc.go │ │ │ └── level.go │ │ │ ├── log.go │ │ │ ├── logfmt_logger.go │ │ │ ├── nop_logger.go │ │ │ ├── stdlib.go │ │ │ ├── sync.go │ │ │ └── value.go │ ├── go-logfmt │ │ └── logfmt │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── go.mod │ │ │ └── jsonstring.go │ ├── go-openapi │ │ ├── analysis │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── appveyor.yml │ │ │ ├── debug.go │ │ │ ├── doc.go │ │ │ ├── fixer.go │ │ │ ├── flatten.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internal │ │ │ │ ├── post_go18.go │ │ │ │ └── pre_go18.go │ │ │ ├── mixin.go │ │ │ └── schema.go │ │ ├── errors │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── auth.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── headers.go │ │ │ ├── middleware.go │ │ │ ├── parsing.go │ │ │ └── schema.go │ │ ├── jsonpointer │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── reference.go │ │ ├── loads │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── spec.go │ │ ├── runtime │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytestream.go │ │ │ ├── client_auth_info.go │ │ │ ├── client_operation.go │ │ │ ├── client_request.go │ │ │ ├── client_response.go │ │ │ ├── constants.go │ │ │ ├── csv.go │ │ │ ├── discard.go │ │ │ ├── file.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── headers.go │ │ │ ├── interfaces.go │ │ │ ├── json.go │ │ │ ├── request.go │ │ │ ├── statuses.go │ │ │ ├── text.go │ │ │ ├── values.go │ │ │ └── xml.go │ │ ├── spec │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bindata.go │ │ │ ├── cache.go │ │ │ ├── contact_info.go │ │ │ ├── debug.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── normalizer.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── properties.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── schema_loader.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ ├── unused.go │ │ │ └── xml_object.go │ │ ├── strfmt │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bson.go │ │ │ ├── date.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── format.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── time.go │ │ ├── swag │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── name_lexem.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── post_go18.go │ │ │ ├── post_go19.go │ │ │ ├── pre_go18.go │ │ │ ├── pre_go19.go │ │ │ ├── split.go │ │ │ ├── util.go │ │ │ └── yaml.go │ │ └── validate │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── debug.go │ │ │ ├── default_validator.go │ │ │ ├── doc.go │ │ │ ├── example_validator.go │ │ │ ├── formats.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── helpers.go │ │ │ ├── object_validator.go │ │ │ ├── options.go │ │ │ ├── result.go │ │ │ ├── rexp.go │ │ │ ├── schema.go │ │ │ ├── schema_messages.go │ │ │ ├── schema_option.go │ │ │ ├── schema_props.go │ │ │ ├── slice_validator.go │ │ │ ├── spec.go │ │ │ ├── spec_messages.go │ │ │ ├── type.go │ │ │ ├── update-fixtures.sh │ │ │ ├── validator.go │ │ │ └── values.go │ ├── go-stack │ │ └── stack │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── stack.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── plugin │ │ │ ├── compare │ │ │ │ ├── compare.go │ │ │ │ └── comparetest.go │ │ │ ├── defaultcheck │ │ │ │ └── defaultcheck.go │ │ │ ├── description │ │ │ │ ├── description.go │ │ │ │ └── descriptiontest.go │ │ │ ├── embedcheck │ │ │ │ └── embedcheck.go │ │ │ ├── enumstringer │ │ │ │ └── enumstringer.go │ │ │ ├── equal │ │ │ │ ├── equal.go │ │ │ │ └── equaltest.go │ │ │ ├── face │ │ │ │ ├── face.go │ │ │ │ └── facetest.go │ │ │ ├── gostring │ │ │ │ ├── gostring.go │ │ │ │ └── gostringtest.go │ │ │ ├── marshalto │ │ │ │ └── marshalto.go │ │ │ ├── oneofcheck │ │ │ │ └── oneofcheck.go │ │ │ ├── populate │ │ │ │ └── populate.go │ │ │ ├── size │ │ │ │ ├── size.go │ │ │ │ └── sizetest.go │ │ │ ├── stringer │ │ │ │ ├── stringer.go │ │ │ │ └── stringertest.go │ │ │ ├── testgen │ │ │ │ └── testgen.go │ │ │ ├── union │ │ │ │ ├── union.go │ │ │ │ └── uniontest.go │ │ │ └── unmarshal │ │ │ │ └── unmarshal.go │ │ │ ├── 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 │ │ │ ├── protoc-gen-gogo │ │ │ ├── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ └── helper.go │ │ │ ├── generator │ │ │ │ ├── generator.go │ │ │ │ ├── helper.go │ │ │ │ └── internal │ │ │ │ │ └── remap │ │ │ │ │ └── remap.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ └── plugin │ │ │ │ ├── Makefile │ │ │ │ └── plugin.pb.go │ │ │ ├── protoc-gen-gogofast │ │ │ └── main.go │ │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ │ └── vanity │ │ │ ├── command │ │ │ └── command.go │ │ │ ├── enum.go │ │ │ ├── field.go │ │ │ ├── file.go │ │ │ ├── foreach.go │ │ │ └── msg.go │ ├── golang │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ └── glog_file.go │ │ ├── groupcache │ │ │ ├── LICENSE │ │ │ └── lru │ │ │ │ └── lru.go │ │ ├── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── descriptor │ │ │ │ └── descriptor.go │ │ │ ├── jsonpb │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ └── json.go │ │ │ ├── proto │ │ │ │ ├── buffer.go │ │ │ │ ├── defaults.go │ │ │ │ ├── deprecated.go │ │ │ │ ├── discard.go │ │ │ │ ├── extensions.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto.go │ │ │ │ ├── registry.go │ │ │ │ ├── text_decode.go │ │ │ │ ├── text_encode.go │ │ │ │ ├── wire.go │ │ │ │ └── wrappers.go │ │ │ ├── protoc-gen-go │ │ │ │ ├── descriptor │ │ │ │ │ └── descriptor.pb.go │ │ │ │ └── plugin │ │ │ │ │ └── plugin.pb.go │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ └── any.pb.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ └── duration.pb.go │ │ │ │ ├── struct │ │ │ │ └── struct.pb.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp │ │ │ │ └── timestamp.pb.go │ │ └── snappy │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── decode.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_arm64.s │ │ │ ├── decode_asm.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_arm64.s │ │ │ ├── encode_asm.go │ │ │ ├── encode_other.go │ │ │ ├── go.mod │ │ │ └── snappy.go │ ├── google │ │ ├── go-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── compare.go │ │ │ │ ├── export_panic.go │ │ │ │ ├── export_unsafe.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── toolchain_legacy.go │ │ │ │ │ └── toolchain_recent.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── name.go │ │ │ │ │ ├── pointer_purego.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── sort.go │ │ │ │ │ └── zero.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── report.go │ │ │ │ ├── report_compare.go │ │ │ │ ├── report_references.go │ │ │ │ ├── report_reflect.go │ │ │ │ ├── report_slices.go │ │ │ │ ├── report_text.go │ │ │ │ └── report_value.go │ │ ├── go-querystring │ │ │ ├── LICENSE │ │ │ └── query │ │ │ │ └── encode.go │ │ ├── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── fuzz.go │ │ │ └── go.mod │ │ └── pprof │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── profile │ │ │ ├── encode.go │ │ │ ├── filter.go │ │ │ ├── index.go │ │ │ ├── legacy_java_profile.go │ │ │ ├── legacy_profile.go │ │ │ ├── merge.go │ │ │ ├── profile.go │ │ │ ├── proto.go │ │ │ └── prune.go │ ├── googleapis │ │ ├── gax-go │ │ │ └── v2 │ │ │ │ ├── LICENSE │ │ │ │ ├── call_option.go │ │ │ │ ├── gax.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── header.go │ │ │ │ └── invoke.go │ │ └── gnostic │ │ │ ├── LICENSE │ │ │ ├── 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 │ │ │ └── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ └── openapi-2.0.json │ ├── gophercloud │ │ └── gophercloud │ │ │ ├── .gitignore │ │ │ ├── .zuul.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth_options.go │ │ │ ├── auth_result.go │ │ │ ├── doc.go │ │ │ ├── endpoint_search.go │ │ │ ├── errors.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── openstack │ │ │ ├── auth_env.go │ │ │ ├── client.go │ │ │ ├── compute │ │ │ │ └── v2 │ │ │ │ │ ├── extensions │ │ │ │ │ ├── floatingips │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── hypervisors │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── servers │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── util.go │ │ │ ├── doc.go │ │ │ ├── endpoint_location.go │ │ │ ├── errors.go │ │ │ ├── identity │ │ │ │ ├── v2 │ │ │ │ │ ├── tenants │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── tokens │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ └── v3 │ │ │ │ │ ├── extensions │ │ │ │ │ ├── ec2tokens │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── oauth1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── tokens │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ └── utils │ │ │ │ ├── base_endpoint.go │ │ │ │ └── choose_version.go │ │ │ ├── pagination │ │ │ ├── http.go │ │ │ ├── linked.go │ │ │ ├── marker.go │ │ │ ├── pager.go │ │ │ ├── pkg.go │ │ │ └── single.go │ │ │ ├── params.go │ │ │ ├── provider_client.go │ │ │ ├── results.go │ │ │ ├── service_client.go │ │ │ └── util.go │ ├── grpc-ecosystem │ │ └── grpc-gateway │ │ │ ├── LICENSE.txt │ │ │ ├── codegenerator │ │ │ ├── BUILD.bazel │ │ │ ├── doc.go │ │ │ └── parse_req.go │ │ │ ├── internal │ │ │ ├── BUILD.bazel │ │ │ ├── casing │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── camel.go │ │ │ ├── errors.pb.go │ │ │ └── errors.proto │ │ │ ├── protoc-gen-grpc-gateway │ │ │ ├── BUILD.bazel │ │ │ ├── descriptor │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── grpc_api_configuration.go │ │ │ │ ├── grpc_api_service.go │ │ │ │ ├── registry.go │ │ │ │ ├── services.go │ │ │ │ └── types.go │ │ │ ├── generator │ │ │ │ ├── BUILD.bazel │ │ │ │ └── generator.go │ │ │ ├── httprule │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── compile.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── parse.go │ │ │ │ └── types.go │ │ │ ├── internal │ │ │ │ └── gengateway │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generator.go │ │ │ │ │ └── template.go │ │ │ └── main.go │ │ │ ├── protoc-gen-swagger │ │ │ ├── BUILD.bazel │ │ │ ├── defs.bzl │ │ │ ├── genswagger │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── doc.go │ │ │ │ ├── generator.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_go111_old.go │ │ │ │ ├── template.go │ │ │ │ └── types.go │ │ │ ├── main.go │ │ │ └── options │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── annotations.proto │ │ │ │ ├── openapiv2.pb.go │ │ │ │ └── openapiv2.proto │ │ │ └── utilities │ │ │ ├── BUILD.bazel │ │ │ ├── doc.go │ │ │ ├── pattern.go │ │ │ ├── readerfactory.go │ │ │ └── trie.go │ ├── hashicorp │ │ ├── consul │ │ │ └── api │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── acl.go │ │ │ │ ├── agent.go │ │ │ │ ├── api.go │ │ │ │ ├── catalog.go │ │ │ │ ├── config_entry.go │ │ │ │ ├── config_entry_discoverychain.go │ │ │ │ ├── config_entry_gateways.go │ │ │ │ ├── config_entry_intentions.go │ │ │ │ ├── connect.go │ │ │ │ ├── connect_ca.go │ │ │ │ ├── connect_intention.go │ │ │ │ ├── coordinate.go │ │ │ │ ├── debug.go │ │ │ │ ├── discovery_chain.go │ │ │ │ ├── event.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── health.go │ │ │ │ ├── kv.go │ │ │ │ ├── lock.go │ │ │ │ ├── namespace.go │ │ │ │ ├── operator.go │ │ │ │ ├── operator_area.go │ │ │ │ ├── operator_autopilot.go │ │ │ │ ├── operator_keyring.go │ │ │ │ ├── operator_license.go │ │ │ │ ├── operator_raft.go │ │ │ │ ├── operator_segment.go │ │ │ │ ├── prepared_query.go │ │ │ │ ├── raw.go │ │ │ │ ├── semaphore.go │ │ │ │ ├── session.go │ │ │ │ ├── snapshot.go │ │ │ │ ├── status.go │ │ │ │ └── txn.go │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ └── handlers.go │ │ ├── go-hclog │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorize_unix.go │ │ │ ├── colorize_windows.go │ │ │ ├── context.go │ │ │ ├── global.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── interceptlogger.go │ │ │ ├── intlogger.go │ │ │ ├── logger.go │ │ │ ├── nulllogger.go │ │ │ ├── stacktrace.go │ │ │ ├── stdlog.go │ │ │ └── writer.go │ │ ├── go-immutable-radix │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── edges.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── iradix.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ └── raw_iter.go │ │ ├── go-rootcerts │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── rootcerts.go │ │ │ ├── rootcerts_base.go │ │ │ └── rootcerts_darwin.go │ │ ├── golang-lru │ │ │ ├── .gitignore │ │ │ ├── 2q.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arc.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── lru.go │ │ │ └── simplelru │ │ │ │ ├── lru.go │ │ │ │ └── lru_interface.go │ │ └── serf │ │ │ ├── LICENSE │ │ │ └── coordinate │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── coordinate.go │ │ │ └── phantom.go │ ├── hetznercloud │ │ └── hcloud-go │ │ │ ├── LICENSE │ │ │ └── hcloud │ │ │ ├── action.go │ │ │ ├── certificate.go │ │ │ ├── client.go │ │ │ ├── datacenter.go │ │ │ ├── error.go │ │ │ ├── floating_ip.go │ │ │ ├── hcloud.go │ │ │ ├── helper.go │ │ │ ├── image.go │ │ │ ├── iso.go │ │ │ ├── load_balancer.go │ │ │ ├── load_balancer_type.go │ │ │ ├── location.go │ │ │ ├── network.go │ │ │ ├── pricing.go │ │ │ ├── schema.go │ │ │ ├── schema │ │ │ ├── action.go │ │ │ ├── certificate.go │ │ │ ├── datacenter.go │ │ │ ├── error.go │ │ │ ├── floating_ip.go │ │ │ ├── image.go │ │ │ ├── iso.go │ │ │ ├── load_balancer.go │ │ │ ├── load_balancer_type.go │ │ │ ├── location.go │ │ │ ├── meta.go │ │ │ ├── network.go │ │ │ ├── pricing.go │ │ │ ├── server.go │ │ │ ├── server_type.go │ │ │ ├── ssh_key.go │ │ │ └── volume.go │ │ │ ├── server.go │ │ │ ├── server_type.go │ │ │ ├── ssh_key.go │ │ │ └── volume.go │ ├── influxdata │ │ └── influxdb │ │ │ ├── LICENSE │ │ │ ├── client │ │ │ └── v2 │ │ │ │ ├── client.go │ │ │ │ ├── params.go │ │ │ │ └── udp.go │ │ │ ├── models │ │ │ ├── consistency.go │ │ │ ├── fieldtype_string.go │ │ │ ├── gen.go │ │ │ ├── inline_fnv.go │ │ │ ├── inline_strconv_parse.go │ │ │ ├── points.go │ │ │ ├── rows.go │ │ │ ├── statistic.go │ │ │ ├── tagkeysset.go │ │ │ ├── time.go │ │ │ └── uint_support.go │ │ │ └── pkg │ │ │ └── escape │ │ │ ├── bytes.go │ │ │ └── strings.go │ ├── jmespath │ │ └── go-jmespath │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── astnodetype_string.go │ │ │ ├── functions.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── interpreter.go │ │ │ ├── lexer.go │ │ │ ├── parser.go │ │ │ ├── toktype_string.go │ │ │ └── util.go │ ├── josharian │ │ └── intern │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── intern.go │ │ │ └── license.md │ ├── jpillora │ │ └── backoff │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ └── go.mod │ ├── 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 │ ├── julienschmidt │ │ └── httprouter │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── path.go │ │ │ ├── router.go │ │ │ └── tree.go │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── sequences.go │ │ │ └── sequences_dummy.go │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ └── jwriter │ │ │ └── writer.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_appengine.go │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ └── go-isatty │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ ├── isatty_windows.go │ │ │ └── renovate.json │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pbutil │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── miekg │ │ └── dns │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CODEOWNERS │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYRIGHT │ │ │ ├── LICENSE │ │ │ ├── Makefile.fuzz │ │ │ ├── Makefile.release │ │ │ ├── README.md │ │ │ ├── acceptfunc.go │ │ │ ├── client.go │ │ │ ├── clientconfig.go │ │ │ ├── dane.go │ │ │ ├── defaults.go │ │ │ ├── dns.go │ │ │ ├── dnssec.go │ │ │ ├── dnssec_keygen.go │ │ │ ├── dnssec_keyscan.go │ │ │ ├── dnssec_privkey.go │ │ │ ├── doc.go │ │ │ ├── duplicate.go │ │ │ ├── edns.go │ │ │ ├── format.go │ │ │ ├── fuzz.go │ │ │ ├── generate.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── labels.go │ │ │ ├── listen_go111.go │ │ │ ├── listen_go_not111.go │ │ │ ├── msg.go │ │ │ ├── msg_helpers.go │ │ │ ├── msg_truncate.go │ │ │ ├── nsecx.go │ │ │ ├── privaterr.go │ │ │ ├── reverse.go │ │ │ ├── sanitize.go │ │ │ ├── scan.go │ │ │ ├── scan_rr.go │ │ │ ├── serve_mux.go │ │ │ ├── server.go │ │ │ ├── sig0.go │ │ │ ├── singleinflight.go │ │ │ ├── smimea.go │ │ │ ├── svcb.go │ │ │ ├── tlsa.go │ │ │ ├── tsig.go │ │ │ ├── types.go │ │ │ ├── udp.go │ │ │ ├── udp_windows.go │ │ │ ├── update.go │ │ │ ├── version.go │ │ │ ├── xfr.go │ │ │ ├── zduplicate.go │ │ │ ├── zmsg.go │ │ │ └── ztypes.go │ ├── mitchellh │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── homedir.go │ │ └── mapstructure │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ └── mapstructure.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 │ ├── mwitkow │ │ └── go-conntrack │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dialer_reporter.go │ │ │ ├── dialer_wrapper.go │ │ │ ├── listener_reporter.go │ │ │ └── listener_wrapper.go │ ├── oklog │ │ ├── run │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actors.go │ │ │ ├── go.mod │ │ │ └── group.go │ │ └── ulid │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── ulid.go │ ├── opencontainers │ │ ├── go-digest │ │ │ ├── .mailmap │ │ │ ├── .pullapprove.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── algorithm.go │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ └── verifiers.go │ │ └── image-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ ├── v1 │ │ │ ├── annotations.go │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── index.go │ │ │ ├── layout.go │ │ │ ├── manifest.go │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ ├── opentracing-contrib │ │ └── go-stdlib │ │ │ ├── LICENSE │ │ │ └── nethttp │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── server.go │ │ │ └── status-code-tracker.go │ ├── opentracing │ │ └── opentracing-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ext.go │ │ │ ├── ext │ │ │ ├── field.go │ │ │ └── tags.go │ │ │ ├── globaltracer.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── gocontext.go │ │ │ ├── log │ │ │ ├── field.go │ │ │ └── util.go │ │ │ ├── noop.go │ │ │ ├── propagation.go │ │ │ ├── span.go │ │ │ └── tracer.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── prometheus │ │ ├── alertmanager │ │ │ ├── COPYRIGHT.txt │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── api │ │ │ │ └── v2 │ │ │ │ └── models │ │ │ │ ├── alert.go │ │ │ │ ├── alert_group.go │ │ │ │ ├── alert_groups.go │ │ │ │ ├── alert_status.go │ │ │ │ ├── alertmanager_config.go │ │ │ │ ├── alertmanager_status.go │ │ │ │ ├── cluster_status.go │ │ │ │ ├── gettable_alert.go │ │ │ │ ├── gettable_alerts.go │ │ │ │ ├── gettable_silence.go │ │ │ │ ├── gettable_silences.go │ │ │ │ ├── label_set.go │ │ │ │ ├── matcher.go │ │ │ │ ├── matchers.go │ │ │ │ ├── peer_status.go │ │ │ │ ├── postable_alert.go │ │ │ │ ├── postable_alerts.go │ │ │ │ ├── postable_silence.go │ │ │ │ ├── receiver.go │ │ │ │ ├── silence.go │ │ │ │ ├── silence_status.go │ │ │ │ └── version_info.go │ │ ├── client_golang │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ ├── client.go │ │ │ │ └── prometheus │ │ │ │ │ └── v1 │ │ │ │ │ └── api.go │ │ │ └── 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 │ │ │ │ ├── internal │ │ │ │ └── metric.go │ │ │ │ ├── labels.go │ │ │ │ ├── metric.go │ │ │ │ ├── observer.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── process_collector_other.go │ │ │ │ ├── process_collector_windows.go │ │ │ │ ├── promauto │ │ │ │ └── auto.go │ │ │ │ ├── promhttp │ │ │ │ ├── delegator.go │ │ │ │ ├── http.go │ │ │ │ ├── instrument_client.go │ │ │ │ └── instrument_server.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── testutil │ │ │ │ ├── lint.go │ │ │ │ ├── promlint │ │ │ │ │ └── promlint.go │ │ │ │ └── testutil.go │ │ │ │ ├── timer.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ └── wrap.go │ │ ├── client_model │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ └── http_config.go │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── openmetrics_create.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 │ │ │ ├── promlog │ │ │ │ ├── flag │ │ │ │ │ └── flag.go │ │ │ │ └── log.go │ │ │ ├── route │ │ │ │ └── route.go │ │ │ ├── server │ │ │ │ └── static_file_server.go │ │ │ └── version │ │ │ │ └── info.go │ │ ├── exporter-toolkit │ │ │ ├── LICENSE │ │ │ └── web │ │ │ │ ├── README.md │ │ │ │ ├── kingpinflag │ │ │ │ └── flag.go │ │ │ │ ├── tls_config.go │ │ │ │ ├── users.go │ │ │ │ └── web-config.yml │ │ └── 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 │ ├── samuel │ │ └── go-zookeeper │ │ │ ├── LICENSE │ │ │ └── zk │ │ │ ├── conn.go │ │ │ ├── constants.go │ │ │ ├── dnshostprovider.go │ │ │ ├── flw.go │ │ │ ├── lock.go │ │ │ ├── structs.go │ │ │ └── util.go │ ├── shurcooL │ │ ├── httpfs │ │ │ ├── LICENSE │ │ │ ├── filter │ │ │ │ ├── filter.go │ │ │ │ └── filters.go │ │ │ ├── union │ │ │ │ └── union.go │ │ │ └── vfsutil │ │ │ │ ├── file.go │ │ │ │ ├── vfsutil.go │ │ │ │ └── walk.go │ │ └── vfsgen │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── commentwriter.go │ │ │ ├── doc.go │ │ │ ├── generator.go │ │ │ ├── options.go │ │ │ └── stringwriter.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── buffer_pool.go │ │ │ ├── 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_js.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 │ ├── 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 │ └── uber │ │ ├── jaeger-client-go │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── baggage_setter.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_env.go │ │ │ └── options.go │ │ ├── constants.go │ │ ├── contrib_observer.go │ │ ├── doc.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── header.go │ │ ├── internal │ │ │ ├── baggage │ │ │ │ ├── remote │ │ │ │ │ ├── options.go │ │ │ │ │ └── restriction_manager.go │ │ │ │ └── restriction_manager.go │ │ │ ├── reporterstats │ │ │ │ └── stats.go │ │ │ ├── spanlog │ │ │ │ └── json.go │ │ │ └── throttler │ │ │ │ ├── remote │ │ │ │ ├── options.go │ │ │ │ └── throttler.go │ │ │ │ └── throttler.go │ │ ├── interop.go │ │ ├── jaeger_tag.go │ │ ├── jaeger_thrift_span.go │ │ ├── log │ │ │ └── logger.go │ │ ├── logger.go │ │ ├── metrics.go │ │ ├── observer.go │ │ ├── process.go │ │ ├── propagation.go │ │ ├── reference.go │ │ ├── reporter.go │ │ ├── reporter_options.go │ │ ├── rpcmetrics │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── metrics.go │ │ │ ├── normalizer.go │ │ │ └── observer.go │ │ ├── sampler.go │ │ ├── sampler_remote.go │ │ ├── sampler_remote_options.go │ │ ├── sampler_v2.go │ │ ├── span.go │ │ ├── span_allocator.go │ │ ├── span_context.go │ │ ├── thrift-gen │ │ │ ├── agent │ │ │ │ ├── agent.go │ │ │ │ ├── constants.go │ │ │ │ └── ttypes.go │ │ │ ├── baggage │ │ │ │ ├── baggagerestrictionmanager.go │ │ │ │ ├── constants.go │ │ │ │ └── ttypes.go │ │ │ ├── jaeger │ │ │ │ ├── agent.go │ │ │ │ ├── constants.go │ │ │ │ └── ttypes.go │ │ │ ├── sampling │ │ │ │ ├── constants.go │ │ │ │ ├── samplingmanager.go │ │ │ │ └── ttypes.go │ │ │ └── zipkincore │ │ │ │ ├── constants.go │ │ │ │ ├── ttypes.go │ │ │ │ └── zipkincollector.go │ │ ├── thrift │ │ │ ├── .nocover │ │ │ ├── README.md │ │ │ ├── application_exception.go │ │ │ ├── binary_protocol.go │ │ │ ├── compact_protocol.go │ │ │ ├── exception.go │ │ │ ├── memory_buffer.go │ │ │ ├── messagetype.go │ │ │ ├── numeric.go │ │ │ ├── processor.go │ │ │ ├── protocol.go │ │ │ ├── protocol_exception.go │ │ │ ├── protocol_factory.go │ │ │ ├── rich_transport.go │ │ │ ├── serializer.go │ │ │ ├── simple_json_protocol.go │ │ │ ├── transport.go │ │ │ ├── transport_exception.go │ │ │ ├── transport_factory.go │ │ │ └── type.go │ │ ├── tracer.go │ │ ├── tracer_options.go │ │ ├── transport.go │ │ ├── transport │ │ │ ├── doc.go │ │ │ └── http.go │ │ ├── transport_udp.go │ │ ├── utils │ │ │ ├── http_json.go │ │ │ ├── localip.go │ │ │ ├── rand.go │ │ │ ├── rate_limiter.go │ │ │ ├── reconnecting_udp_conn.go │ │ │ ├── udp_client.go │ │ │ └── utils.go │ │ ├── zipkin.go │ │ └── zipkin_thrift_span.go │ │ └── jaeger-lib │ │ ├── LICENSE │ │ └── metrics │ │ ├── counter.go │ │ ├── factory.go │ │ ├── gauge.go │ │ ├── histogram.go │ │ ├── keys.go │ │ ├── metrics.go │ │ ├── prometheus │ │ ├── cache.go │ │ └── factory.go │ │ ├── stopwatch.go │ │ └── timer.go ├── go.mongodb.org │ └── mongo-driver │ │ ├── LICENSE │ │ ├── bson │ │ ├── bson.go │ │ ├── bson_1_8.go │ │ ├── bsoncodec │ │ │ ├── bsoncodec.go │ │ │ ├── byte_slice_codec.go │ │ │ ├── cond_addr_codec.go │ │ │ ├── default_value_decoders.go │ │ │ ├── default_value_encoders.go │ │ │ ├── doc.go │ │ │ ├── empty_interface_codec.go │ │ │ ├── map_codec.go │ │ │ ├── mode.go │ │ │ ├── pointer_codec.go │ │ │ ├── proxy.go │ │ │ ├── registry.go │ │ │ ├── slice_codec.go │ │ │ ├── string_codec.go │ │ │ ├── struct_codec.go │ │ │ ├── struct_tag_parser.go │ │ │ ├── time_codec.go │ │ │ ├── types.go │ │ │ └── uint_codec.go │ │ ├── bsonoptions │ │ │ ├── byte_slice_codec_options.go │ │ │ ├── empty_interface_codec_options.go │ │ │ ├── map_codec_options.go │ │ │ ├── slice_codec_options.go │ │ │ ├── string_codec_options.go │ │ │ ├── struct_codec_options.go │ │ │ ├── time_codec_options.go │ │ │ └── uint_codec_options.go │ │ ├── bsonrw │ │ │ ├── copier.go │ │ │ ├── doc.go │ │ │ ├── extjson_parser.go │ │ │ ├── extjson_reader.go │ │ │ ├── extjson_tables.go │ │ │ ├── extjson_wrappers.go │ │ │ ├── extjson_writer.go │ │ │ ├── json_scanner.go │ │ │ ├── mode.go │ │ │ ├── reader.go │ │ │ ├── value_reader.go │ │ │ ├── value_writer.go │ │ │ └── writer.go │ │ ├── bsontype │ │ │ └── bsontype.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── marshal.go │ │ ├── primitive │ │ │ ├── decimal.go │ │ │ ├── objectid.go │ │ │ └── primitive.go │ │ ├── primitive_codecs.go │ │ ├── raw.go │ │ ├── raw_element.go │ │ ├── raw_value.go │ │ ├── registry.go │ │ ├── types.go │ │ └── unmarshal.go │ │ └── x │ │ └── bsonx │ │ └── bsoncore │ │ ├── bsoncore.go │ │ ├── document.go │ │ ├── document_sequence.go │ │ ├── element.go │ │ ├── tables.go │ │ └── value.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 │ │ └── metricproducer │ │ │ ├── manager.go │ │ │ └── producer.go │ ├── opencensus.go │ ├── plugin │ │ └── 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 │ ├── 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 ├── go.uber.org │ ├── atomic │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_ext.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration_ext.go │ │ ├── error.go │ │ ├── error_ext.go │ │ ├── float64.go │ │ ├── float64_ext.go │ │ ├── gen.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── int32.go │ │ ├── int64.go │ │ ├── nocmp.go │ │ ├── string.go │ │ ├── string_ext.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ └── value.go │ └── goleak │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── glide.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ └── stack │ │ │ └── stacks.go │ │ ├── leaks.go │ │ ├── options.go │ │ ├── testmain.go │ │ └── tools.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ └── bcrypt.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── ed25519_go113.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── crypto.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ └── rc2.go │ │ │ ├── mac.go │ │ │ ├── pbkdf.go │ │ │ ├── pkcs12.go │ │ │ └── safebags.go │ │ └── ssh │ │ │ └── terminal │ │ │ └── terminal.go │ │ ├── lint │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── golint │ │ │ ├── golint.go │ │ │ ├── import.go │ │ │ └── importcomment.go │ │ └── lint.go │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── module │ │ │ └── module.go │ │ └── semver │ │ │ └── semver.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── setter.go │ │ │ ├── vm.go │ │ │ └── vm_instructions.go │ │ ├── context │ │ │ ├── context.go │ │ │ ├── ctxhttp │ │ │ │ └── ctxhttp.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.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.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ └── const.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── cmsghdr_unix.go │ │ │ │ ├── cmsghdr_zos_s390x.go │ │ │ │ ├── empty.s │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── msghdr_zos_s390x.go │ │ │ │ ├── norace.go │ │ │ │ ├── race.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── socket.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_const_unix.go │ │ │ │ ├── sys_const_zos.go │ │ │ │ ├── sys_linkname.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_riscv64.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── sys_zos_s390x.go │ │ │ │ ├── sys_zos_s390x.s │ │ │ │ ├── zsys_aix_ppc64.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_freebsd_arm64.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_riscv64.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_netbsd_arm64.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ ├── zsys_openbsd_arm64.go │ │ │ │ ├── zsys_openbsd_mips64.go │ │ │ │ ├── zsys_solaris_amd64.go │ │ │ │ └── zsys_zos_s390x.go │ │ │ ├── socks │ │ │ │ ├── client.go │ │ │ │ └── socks.go │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── control_zos.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── packet.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_aix.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── sys_zos.go │ │ │ ├── zsys_aix_ppc64.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_freebsd_arm64.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_riscv64.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ ├── zsys_solaris.go │ │ │ └── zsys_zos_s390x.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_windows.go │ │ │ ├── icmp_zos.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_aix.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── sys_zos.go │ │ │ ├── zsys_aix_ppc64.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_freebsd_arm64.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_riscv64.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ ├── zsys_solaris.go │ │ │ └── zsys_zos_s390x.go │ │ ├── netutil │ │ │ └── listen.go │ │ ├── proxy │ │ │ ├── dial.go │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── 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 │ │ └── errgroup │ │ │ └── errgroup.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── unsafeheader │ │ │ │ └── unsafeheader.go │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── asm_plan9_arm.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ ├── zsyscall_plan9_arm.go │ │ │ └── zsysnum_plan9.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 │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.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 │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapierrors_windows.go │ │ │ ├── str.go │ │ │ ├── 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 │ │ ├── term │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── term.go │ │ ├── term_plan9.go │ │ ├── term_solaris.go │ │ ├── term_unix.go │ │ ├── term_unix_aix.go │ │ ├── term_unix_bsd.go │ │ ├── term_unix_linux.go │ │ ├── term_unix_zos.go │ │ ├── term_unsupported.go │ │ ├── term_windows.go │ │ └── terminal.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── 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 │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.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 │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ └── width │ │ │ ├── kind_string.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ ├── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ │ └── rate.go │ │ ├── tools │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cmd │ │ │ └── goimports │ │ │ │ ├── doc.go │ │ │ │ ├── goimports.go │ │ │ │ ├── goimports_gc.go │ │ │ │ └── goimports_not_gc.go │ │ ├── go │ │ │ ├── ast │ │ │ │ └── astutil │ │ │ │ │ ├── enclosing.go │ │ │ │ │ ├── imports.go │ │ │ │ │ ├── rewrite.go │ │ │ │ │ └── util.go │ │ │ ├── gcexportdata │ │ │ │ ├── gcexportdata.go │ │ │ │ └── importer.go │ │ │ └── internal │ │ │ │ └── gcimporter │ │ │ │ ├── bexport.go │ │ │ │ ├── bimport.go │ │ │ │ ├── exportdata.go │ │ │ │ ├── gcimporter.go │ │ │ │ ├── iexport.go │ │ │ │ ├── iimport.go │ │ │ │ ├── newInterface10.go │ │ │ │ └── newInterface11.go │ │ └── internal │ │ │ ├── event │ │ │ ├── core │ │ │ │ ├── event.go │ │ │ │ ├── export.go │ │ │ │ └── fast.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── keys │ │ │ │ ├── keys.go │ │ │ │ └── standard.go │ │ │ └── label │ │ │ │ └── label.go │ │ │ ├── fastwalk │ │ │ ├── fastwalk.go │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ ├── fastwalk_dirent_ino.go │ │ │ ├── fastwalk_dirent_namlen_bsd.go │ │ │ ├── fastwalk_dirent_namlen_linux.go │ │ │ ├── fastwalk_portable.go │ │ │ └── fastwalk_unix.go │ │ │ ├── gocommand │ │ │ ├── invoke.go │ │ │ ├── vendor.go │ │ │ └── version.go │ │ │ ├── gopathwalk │ │ │ └── walk.go │ │ │ └── imports │ │ │ ├── fix.go │ │ │ ├── imports.go │ │ │ ├── mod.go │ │ │ ├── mod_cache.go │ │ │ ├── sortimports.go │ │ │ └── zstdlib.go │ │ └── xerrors │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── adaptor.go │ │ ├── codereview.cfg │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fmt.go │ │ ├── format.go │ │ ├── frame.go │ │ ├── go.mod │ │ ├── internal │ │ └── internal.go │ │ └── wrap.go ├── google.golang.org │ ├── api │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── compute │ │ │ └── v1 │ │ │ │ ├── compute-api.json │ │ │ │ └── compute-gen.go │ │ ├── googleapi │ │ │ ├── googleapi.go │ │ │ ├── transport │ │ │ │ └── apikey.go │ │ │ └── types.go │ │ ├── internal │ │ │ ├── conn_pool.go │ │ │ ├── creds.go │ │ │ ├── gensupport │ │ │ │ ├── buffer.go │ │ │ │ ├── doc.go │ │ │ │ ├── json.go │ │ │ │ ├── jsonfloat.go │ │ │ │ ├── media.go │ │ │ │ ├── params.go │ │ │ │ ├── resumable.go │ │ │ │ ├── retryable_linux.go │ │ │ │ ├── send.go │ │ │ │ └── version.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ ├── settings.go │ │ │ └── third_party │ │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ ├── option │ │ │ ├── credentials_go19.go │ │ │ ├── credentials_notgo19.go │ │ │ ├── internaloption │ │ │ │ └── internaloption.go │ │ │ └── option.go │ │ └── transport │ │ │ ├── cert │ │ │ └── default_cert.go │ │ │ ├── http │ │ │ ├── default_transport_go113.go │ │ │ ├── default_transport_not_go113.go │ │ │ ├── dial.go │ │ │ ├── dial_appengine.go │ │ │ └── internal │ │ │ │ └── propagation │ │ │ │ └── http.go │ │ │ └── internal │ │ │ └── dca │ │ │ └── dca.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 │ │ │ ├── transaction.go │ │ │ └── urlfetch │ │ │ │ ├── urlfetch_service.pb.go │ │ │ │ └── urlfetch_service.proto │ │ ├── namespace.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 │ │ │ └── rpc │ │ │ └── status │ │ │ └── status.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 │ │ │ ├── balancer.go │ │ │ ├── base │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ ├── grpclb │ │ │ │ └── state │ │ │ │ │ └── state.go │ │ │ └── roundrobin │ │ │ │ └── roundrobin.go │ │ ├── balancer_conn_wrappers.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 │ │ │ ├── credentials.go │ │ │ ├── go12.go │ │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ └── proto │ │ │ │ └── proto.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── grpclog │ │ │ ├── component.go │ │ │ ├── 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 │ │ │ │ └── sink.go │ │ │ ├── buffer │ │ │ │ └── unbounded.go │ │ │ ├── channelz │ │ │ │ ├── funcs.go │ │ │ │ ├── logging.go │ │ │ │ ├── types.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_nonlinux.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_nonlinux.go │ │ │ ├── credentials │ │ │ │ ├── spiffe.go │ │ │ │ ├── spiffe_appengine.go │ │ │ │ ├── syscallconn.go │ │ │ │ ├── syscallconn_appengine.go │ │ │ │ └── util.go │ │ │ ├── envconfig │ │ │ │ └── envconfig.go │ │ │ ├── grpclog │ │ │ │ ├── grpclog.go │ │ │ │ └── prefixLogger.go │ │ │ ├── grpcrand │ │ │ │ └── grpcrand.go │ │ │ ├── grpcsync │ │ │ │ └── event.go │ │ │ ├── grpcutil │ │ │ │ ├── encode_duration.go │ │ │ │ ├── metadata.go │ │ │ │ ├── method.go │ │ │ │ └── target.go │ │ │ ├── internal.go │ │ │ ├── resolver │ │ │ │ ├── dns │ │ │ │ │ ├── dns_resolver.go │ │ │ │ │ └── go113.go │ │ │ │ └── passthrough │ │ │ │ │ └── passthrough.go │ │ │ ├── serviceconfig │ │ │ │ └── serviceconfig.go │ │ │ ├── status │ │ │ │ └── status.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 │ │ │ │ └── transport.go │ │ ├── keepalive │ │ │ └── keepalive.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── peer │ │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── pickfirst.go │ │ ├── preloader.go │ │ ├── proxy.go │ │ ├── regenerate.sh │ │ ├── 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 │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── protojson │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── well_known_types.go │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── json │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ └── encode.go │ │ │ ├── messageset │ │ │ │ └── messageset.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── text │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── is_go112.go │ │ │ └── is_go113.go │ │ ├── fieldsort │ │ │ └── fieldsort.go │ │ ├── filedesc │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ └── placeholder.go │ │ ├── filetype │ │ │ └── build.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_map_go111.go │ │ │ ├── codec_map_go112.go │ │ │ ├── codec_message.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_reflect.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── extension.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── validate.go │ │ │ └── weak.go │ │ ├── mapsort │ │ │ └── mapsort.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ ├── strings_pure.go │ │ │ └── strings_unsafe.go │ │ └── version │ │ │ └── version.go │ │ ├── proto │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ └── wrappers.go │ │ ├── reflect │ │ ├── protodesc │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ └── proto.go │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_pure.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ ├── descriptorpb │ │ └── descriptor.pb.go │ │ ├── known │ │ ├── anypb │ │ │ └── any.pb.go │ │ ├── durationpb │ │ │ └── duration.pb.go │ │ ├── structpb │ │ │ └── struct.pb.go │ │ └── timestamppb │ │ │ └── timestamp.pb.go │ │ └── pluginpb │ │ └── plugin.pb.go ├── gopkg.in │ ├── alecthomas │ │ └── kingpin.v2 │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── actions.go │ │ │ ├── app.go │ │ │ ├── args.go │ │ │ ├── cmd.go │ │ │ ├── completions.go │ │ │ ├── doc.go │ │ │ ├── envar.go │ │ │ ├── flags.go │ │ │ ├── global.go │ │ │ ├── guesswidth.go │ │ │ ├── guesswidth_unix.go │ │ │ ├── model.go │ │ │ ├── parser.go │ │ │ ├── parsers.go │ │ │ ├── templates.go │ │ │ ├── usage.go │ │ │ ├── values.go │ │ │ ├── values.json │ │ │ └── values_generated.go │ ├── fsnotify │ │ └── 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 │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── 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 │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v2beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v2alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── certificates │ │ │ ├── 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 │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── annotation_key_constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── lifecycle.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── register.go │ │ │ │ ├── resource.go │ │ │ │ ├── taint.go │ │ │ │ ├── toleration.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── well_known_taints.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── discovery │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── events │ │ │ ├── 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 │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── flowcontrol │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ │ ├── well_known_annotations.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── node │ │ │ ├── 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 │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apimachinery │ │ ├── LICENSE │ │ ├── pkg │ │ │ ├── api │ │ │ │ ├── errors │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── meta │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── conditions.go │ │ │ │ │ ├── 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 │ │ │ │ │ ├── internalversion │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_fuzz.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.conversion.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 │ │ │ │ ├── mapper.go │ │ │ │ ├── negotiate.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 │ │ │ │ │ ├── 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 │ │ │ │ ├── cache │ │ │ │ │ ├── expiring.go │ │ │ │ │ └── lruexpirecache.go │ │ │ │ ├── clock │ │ │ │ │ └── clock.go │ │ │ │ ├── diff │ │ │ │ │ └── diff.go │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── framer │ │ │ │ │ └── framer.go │ │ │ │ ├── intstr │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── instr_fuzz.go │ │ │ │ │ └── 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 │ │ │ │ │ ├── int32.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 │ │ │ ├── fake │ │ │ │ └── discovery.go │ │ │ └── helper.go │ │ ├── kubernetes │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── import.go │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apiserverinternal_client.go │ │ │ │ │ └── fake_storageversion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── storageversion.go │ │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── tokenreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── tokenreview.go │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ └── fake_job.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ │ └── fake_certificatesigningrequest.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ │ └── fake_lease.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_lease.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_componentstatus.go │ │ │ │ │ ├── fake_configmap.go │ │ │ │ │ ├── fake_core_client.go │ │ │ │ │ ├── fake_endpoints.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ ├── fake_limitrange.go │ │ │ │ │ ├── fake_namespace.go │ │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ │ ├── fake_node.go │ │ │ │ │ ├── fake_node_expansion.go │ │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ │ ├── fake_pod.go │ │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ │ ├── fake_podtemplate.go │ │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ │ ├── fake_resourcequota.go │ │ │ │ │ ├── fake_secret.go │ │ │ │ │ ├── fake_service.go │ │ │ │ │ ├── fake_service_expansion.go │ │ │ │ │ └── fake_serviceaccount.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 │ │ │ │ ├── discovery │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_event.go │ │ │ │ │ │ └── fake_events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ │ ├── fake_extensions_client.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ │ └── fake_replicaset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── replicaset.go │ │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ │ └── fake_networkpolicy.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ └── fake_networking_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ └── networking_client.go │ │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── policy │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── policy_client.go │ │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_csidriver.go │ │ │ │ ├── fake_csinode.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ ├── fake_storageclass.go │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── clientauthentication │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── 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 │ │ │ │ └── metrics.go │ │ ├── rest │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── exec.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── plugin.go │ │ │ ├── request.go │ │ │ ├── transport.go │ │ │ ├── url_utils.go │ │ │ ├── urlbackoff.go │ │ │ ├── warnings.go │ │ │ ├── watch │ │ │ │ ├── decoder.go │ │ │ │ └── encoder.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── testing │ │ │ ├── actions.go │ │ │ ├── fake.go │ │ │ └── fixture.go │ │ ├── tools │ │ │ ├── cache │ │ │ │ ├── OWNERS │ │ │ │ ├── controller.go │ │ │ │ ├── delta_fifo.go │ │ │ │ ├── doc.go │ │ │ │ ├── expiration_cache.go │ │ │ │ ├── expiration_cache_fakes.go │ │ │ │ ├── fake_custom_store.go │ │ │ │ ├── fifo.go │ │ │ │ ├── heap.go │ │ │ │ ├── index.go │ │ │ │ ├── listers.go │ │ │ │ ├── listwatch.go │ │ │ │ ├── mutation_cache.go │ │ │ │ ├── mutation_detector.go │ │ │ │ ├── reflector.go │ │ │ │ ├── reflector_metrics.go │ │ │ │ ├── shared_informer.go │ │ │ │ ├── store.go │ │ │ │ ├── thread_safe_store.go │ │ │ │ └── undelta_store.go │ │ │ ├── clientcmd │ │ │ │ └── api │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── pager │ │ │ │ └── pager.go │ │ │ └── reference │ │ │ │ └── ref.go │ │ ├── transport │ │ │ ├── OWNERS │ │ │ ├── cache.go │ │ │ ├── cert_rotation.go │ │ │ ├── config.go │ │ │ ├── round_trippers.go │ │ │ ├── token_source.go │ │ │ └── transport.go │ │ └── util │ │ │ ├── cert │ │ │ ├── OWNERS │ │ │ ├── cert.go │ │ │ ├── csr.go │ │ │ ├── io.go │ │ │ ├── pem.go │ │ │ └── server_inspection.go │ │ │ ├── connrotation │ │ │ └── connrotation.go │ │ │ ├── flowcontrol │ │ │ ├── backoff.go │ │ │ └── throttle.go │ │ │ ├── keyutil │ │ │ ├── OWNERS │ │ │ └── key.go │ │ │ └── workqueue │ │ │ ├── default_rate_limiters.go │ │ │ ├── delaying_queue.go │ │ │ ├── doc.go │ │ │ ├── metrics.go │ │ │ ├── parallelizer.go │ │ │ ├── queue.go │ │ │ └── rate_limiting_queue.go │ ├── klog │ │ ├── .errcheck_excludes │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── klog.go │ │ ├── renovate.json │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── klog.go │ ├── kube-openapi │ │ ├── LICENSE │ │ └── pkg │ │ │ └── util │ │ │ └── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ └── openapi.go │ └── utils │ │ ├── LICENSE │ │ ├── buffer │ │ └── ring_growing.go │ │ ├── integer │ │ └── integer.go │ │ └── trace │ │ ├── README.md │ │ └── trace.go ├── modules.txt └── sigs.k8s.io │ ├── structured-merge-diff │ └── v4 │ │ ├── LICENSE │ │ └── value │ │ ├── allocator.go │ │ ├── doc.go │ │ ├── fields.go │ │ ├── jsontagutil.go │ │ ├── list.go │ │ ├── listreflect.go │ │ ├── listunstructured.go │ │ ├── map.go │ │ ├── mapreflect.go │ │ ├── mapunstructured.go │ │ ├── reflectcache.go │ │ ├── scalar.go │ │ ├── structreflect.go │ │ ├── value.go │ │ ├── valuereflect.go │ │ └── valueunstructured.go │ └── yaml │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── fields.go │ ├── go.mod │ ├── go.sum │ ├── yaml.go │ └── yaml_go110.go ├── web ├── api │ └── v1 │ │ ├── api.go │ │ └── api_test.go ├── federate.go ├── federate_test.go ├── ui │ ├── README.md │ ├── assets_generate.go │ ├── doc.go │ ├── react-app │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── Navbar.test.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── components │ │ │ │ ├── Checkbox.test.tsx │ │ │ │ ├── Checkbox.tsx │ │ │ │ ├── ToggleMoreLess.test.tsx │ │ │ │ ├── ToggleMoreLess.tsx │ │ │ │ └── withStatusIndicator.tsx │ │ │ ├── constants │ │ │ │ └── constants.tsx │ │ │ ├── contexts │ │ │ │ └── PathPrefixContext.tsx │ │ │ ├── globals.ts │ │ │ ├── hooks │ │ │ │ ├── useFetch.ts │ │ │ │ ├── useLocalStorage.test.tsx │ │ │ │ └── useLocalStorage.tsx │ │ │ ├── index.tsx │ │ │ ├── pages │ │ │ │ ├── alerts │ │ │ │ │ ├── AlertContents.test.tsx │ │ │ │ │ ├── AlertContents.tsx │ │ │ │ │ ├── Alerts.tsx │ │ │ │ │ ├── CollapsibleAlertPanel.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── AlertContents.test.tsx.snap │ │ │ │ ├── config │ │ │ │ │ ├── Config.css │ │ │ │ │ └── Config.tsx │ │ │ │ ├── flags │ │ │ │ │ ├── Flags.test.tsx │ │ │ │ │ ├── Flags.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── Flags.test.tsx.snap │ │ │ │ ├── graph │ │ │ │ │ ├── DataTable.test.tsx │ │ │ │ │ ├── DataTable.tsx │ │ │ │ │ ├── ExpressionInput.test.tsx │ │ │ │ │ ├── ExpressionInput.tsx │ │ │ │ │ ├── Graph.test.tsx │ │ │ │ │ ├── Graph.tsx │ │ │ │ │ ├── GraphControls.test.tsx │ │ │ │ │ ├── GraphControls.tsx │ │ │ │ │ ├── GraphHelpers.test.ts │ │ │ │ │ ├── GraphHelpers.ts │ │ │ │ │ ├── GraphTabContent.test.tsx │ │ │ │ │ ├── GraphTabContent.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Panel.test.tsx │ │ │ │ │ ├── Panel.tsx │ │ │ │ │ ├── PanelList.test.tsx │ │ │ │ │ ├── PanelList.tsx │ │ │ │ │ ├── QueryStatsView.css │ │ │ │ │ ├── QueryStatsView.test.tsx │ │ │ │ │ ├── QueryStatsView.tsx │ │ │ │ │ ├── SeriesName.test.tsx │ │ │ │ │ ├── SeriesName.tsx │ │ │ │ │ ├── TimeInput.test.tsx │ │ │ │ │ └── TimeInput.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── rules │ │ │ │ │ ├── Rules.tsx │ │ │ │ │ └── RulesContent.tsx │ │ │ │ ├── serviceDiscovery │ │ │ │ │ ├── LabelsTable.tsx │ │ │ │ │ └── Services.tsx │ │ │ │ ├── status │ │ │ │ │ ├── Status.test.tsx │ │ │ │ │ ├── Status.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── Status.test.tsx.snap │ │ │ │ ├── targets │ │ │ │ │ ├── EndpointLink.test.tsx │ │ │ │ │ ├── EndpointLink.tsx │ │ │ │ │ ├── Filter.module.css │ │ │ │ │ ├── Filter.test.tsx │ │ │ │ │ ├── Filter.tsx │ │ │ │ │ ├── ScrapePoolList.test.tsx │ │ │ │ │ ├── ScrapePoolList.tsx │ │ │ │ │ ├── ScrapePoolPanel.module.css │ │ │ │ │ ├── ScrapePoolPanel.test.tsx │ │ │ │ │ ├── ScrapePoolPanel.tsx │ │ │ │ │ ├── TargetLabels.module.css │ │ │ │ │ ├── TargetLabels.test.tsx │ │ │ │ │ ├── TargetLabels.tsx │ │ │ │ │ ├── Targets.test.tsx │ │ │ │ │ ├── Targets.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TargetLabels.test.tsx.snap │ │ │ │ │ ├── __testdata__ │ │ │ │ │ │ └── testdata.ts │ │ │ │ │ ├── target.test.ts │ │ │ │ │ └── target.ts │ │ │ │ └── tsdbStatus │ │ │ │ │ ├── TSDBStatus.test.tsx │ │ │ │ │ └── TSDBStatus.tsx │ │ │ ├── react-app-env.d.ts │ │ │ ├── setupTests.ts │ │ │ ├── types │ │ │ │ ├── index.d.ts │ │ │ │ └── types.ts │ │ │ ├── utils │ │ │ │ ├── index.ts │ │ │ │ └── utils.test.ts │ │ │ └── vendor │ │ │ │ └── flot │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ └── jquery.flot.time.js │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── static │ │ ├── css │ │ │ ├── alerts.css │ │ │ ├── config.css │ │ │ ├── graph.css │ │ │ ├── prom_console.css │ │ │ ├── prometheus.css │ │ │ ├── rules.css │ │ │ └── targets.css │ │ ├── img │ │ │ ├── ajax-loader.gif │ │ │ └── favicon.ico │ │ ├── js │ │ │ ├── alerts.js │ │ │ ├── config.js │ │ │ ├── graph │ │ │ │ ├── graph_template.handlebar │ │ │ │ └── index.js │ │ │ ├── prom_console.js │ │ │ └── targets.js │ │ └── vendor │ │ │ ├── bootstrap-4.5.2 │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── bootstrap3-typeahead │ │ │ └── bootstrap3-typeahead.min.js │ │ │ ├── bootstrap4-glyphicons │ │ │ ├── css │ │ │ │ ├── bootstrap-glyphicons.css │ │ │ │ └── bootstrap-glyphicons.min.css │ │ │ ├── fonts │ │ │ │ ├── fontawesome │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ │ └── glyphicons │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── maps │ │ │ │ ├── glyphicons-fontawesome.css │ │ │ │ ├── glyphicons-fontawesome.less │ │ │ │ └── glyphicons-fontawesome.min.css │ │ │ ├── eonasdan-bootstrap-datetimepicker │ │ │ ├── bootstrap-datetimepicker.min.css │ │ │ └── bootstrap-datetimepicker.min.js │ │ │ ├── fuzzy │ │ │ └── fuzzy.js │ │ │ ├── js │ │ │ ├── jquery-3.5.1.min.js │ │ │ ├── jquery.hotkeys.js │ │ │ ├── jquery.selection.js │ │ │ └── popper.min.js │ │ │ ├── moment │ │ │ ├── moment-timezone-with-data.min.js │ │ │ └── moment.min.js │ │ │ ├── mustache │ │ │ └── mustache.min.js │ │ │ └── rickshaw │ │ │ ├── rickshaw.min.css │ │ │ ├── rickshaw.min.js │ │ │ └── vendor │ │ │ ├── d3.layout.min.js │ │ │ └── d3.v3.js │ ├── templates │ │ ├── _base.html │ │ ├── alerts.html │ │ ├── config.html │ │ ├── flags.html │ │ ├── graph.html │ │ ├── rules.html │ │ ├── service-discovery.html │ │ ├── status.html │ │ └── targets.html │ └── ui.go ├── web.go └── web_test.go └── 原README.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/funcbench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/workflows/funcbench.yml -------------------------------------------------------------------------------- /.github/workflows/fuzzing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/workflows/fuzzing.yml -------------------------------------------------------------------------------- /.github/workflows/prombench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.github/workflows/prombench.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.promu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/.promu.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/Makefile.common -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.24.0 2 | -------------------------------------------------------------------------------- /cmd/prometheus/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/prometheus/main.go -------------------------------------------------------------------------------- /cmd/prometheus/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/prometheus/main_test.go -------------------------------------------------------------------------------- /cmd/prometheus/main_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/prometheus/main_unix_test.go -------------------------------------------------------------------------------- /cmd/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/prometheus/prometheus.yml -------------------------------------------------------------------------------- /cmd/prometheus/query_log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/prometheus/query_log_test.go -------------------------------------------------------------------------------- /cmd/promtool/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/archive.go -------------------------------------------------------------------------------- /cmd/promtool/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/backfill.go -------------------------------------------------------------------------------- /cmd/promtool/backfill_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/backfill_test.go -------------------------------------------------------------------------------- /cmd/promtool/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/debug.go -------------------------------------------------------------------------------- /cmd/promtool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/main.go -------------------------------------------------------------------------------- /cmd/promtool/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/main_test.go -------------------------------------------------------------------------------- /cmd/promtool/testdata/bad-promql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/testdata/bad-promql.yml -------------------------------------------------------------------------------- /cmd/promtool/testdata/failing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/testdata/failing.yml -------------------------------------------------------------------------------- /cmd/promtool/testdata/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/testdata/rules.yml -------------------------------------------------------------------------------- /cmd/promtool/testdata/unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/testdata/unittest.yml -------------------------------------------------------------------------------- /cmd/promtool/tsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/tsdb.go -------------------------------------------------------------------------------- /cmd/promtool/unittest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/unittest.go -------------------------------------------------------------------------------- /cmd/promtool/unittest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/cmd/promtool/unittest_test.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/config_default_test.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/config_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/config_windows_test.go -------------------------------------------------------------------------------- /config/testdata/bearertoken.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/bearertoken.bad.yml -------------------------------------------------------------------------------- /config/testdata/conf.good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/conf.good.yml -------------------------------------------------------------------------------- /config/testdata/empty_rr_config.bad.yml: -------------------------------------------------------------------------------- 1 | remote_read: 2 | - 3 | -------------------------------------------------------------------------------- /config/testdata/empty_rw_config.bad.yml: -------------------------------------------------------------------------------- 1 | remote_write: 2 | - 3 | -------------------------------------------------------------------------------- /config/testdata/empty_scrape_config.bad.yml: -------------------------------------------------------------------------------- 1 | scrape_configs: 2 | - -------------------------------------------------------------------------------- /config/testdata/first.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/first.rules -------------------------------------------------------------------------------- /config/testdata/hetzner_role.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/hetzner_role.bad.yml -------------------------------------------------------------------------------- /config/testdata/jobname.bad.yml: -------------------------------------------------------------------------------- 1 | scrape_configs: 2 | - job_name: 3 | -------------------------------------------------------------------------------- /config/testdata/jobname_dup.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/jobname_dup.bad.yml -------------------------------------------------------------------------------- /config/testdata/labeldrop.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labeldrop.bad.yml -------------------------------------------------------------------------------- /config/testdata/labeldrop2.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labeldrop2.bad.yml -------------------------------------------------------------------------------- /config/testdata/labeldrop3.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labeldrop3.bad.yml -------------------------------------------------------------------------------- /config/testdata/labeldrop4.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labeldrop4.bad.yml -------------------------------------------------------------------------------- /config/testdata/labeldrop5.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labeldrop5.bad.yml -------------------------------------------------------------------------------- /config/testdata/labelkeep.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labelkeep.bad.yml -------------------------------------------------------------------------------- /config/testdata/labelkeep2.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labelkeep2.bad.yml -------------------------------------------------------------------------------- /config/testdata/labelkeep3.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labelkeep3.bad.yml -------------------------------------------------------------------------------- /config/testdata/labelkeep4.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labelkeep4.bad.yml -------------------------------------------------------------------------------- /config/testdata/labelkeep5.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labelkeep5.bad.yml -------------------------------------------------------------------------------- /config/testdata/labelmap.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/labelmap.bad.yml -------------------------------------------------------------------------------- /config/testdata/labelname.bad.yml: -------------------------------------------------------------------------------- 1 | global: 2 | external_labels: 3 | not$allowed: value 4 | -------------------------------------------------------------------------------- /config/testdata/labelname2.bad.yml: -------------------------------------------------------------------------------- 1 | global: 2 | external_labels: 3 | 'not:allowed': value 4 | -------------------------------------------------------------------------------- /config/testdata/labelvalue.bad.yml: -------------------------------------------------------------------------------- 1 | global: 2 | external_labels: 3 | name: !!binary "/w==" -------------------------------------------------------------------------------- /config/testdata/regex.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/regex.bad.yml -------------------------------------------------------------------------------- /config/testdata/remote_read_url_missing.bad.yml: -------------------------------------------------------------------------------- 1 | remote_read: 2 | - url: 3 | -------------------------------------------------------------------------------- /config/testdata/remote_write_url_missing.bad.yml: -------------------------------------------------------------------------------- 1 | remote_write: 2 | - url: 3 | -------------------------------------------------------------------------------- /config/testdata/roundtrip.good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/roundtrip.good.yml -------------------------------------------------------------------------------- /config/testdata/rules.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/rules.bad.yml -------------------------------------------------------------------------------- /config/testdata/static_config.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/static_config.bad.yml -------------------------------------------------------------------------------- /config/testdata/unknown_attr.bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/config/testdata/unknown_attr.bad.yml -------------------------------------------------------------------------------- /config/testdata/unknown_global_attr.bad.yml: -------------------------------------------------------------------------------- 1 | global: 2 | nonexistent_field: test 3 | -------------------------------------------------------------------------------- /console_libraries/menu.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/console_libraries/menu.lib -------------------------------------------------------------------------------- /console_libraries/prom.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/console_libraries/prom.lib -------------------------------------------------------------------------------- /consoles/index.html.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/consoles/index.html.example -------------------------------------------------------------------------------- /consoles/node-cpu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/consoles/node-cpu.html -------------------------------------------------------------------------------- /consoles/node-disk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/consoles/node-disk.html -------------------------------------------------------------------------------- /consoles/node-overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/consoles/node-overview.html -------------------------------------------------------------------------------- /consoles/node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/consoles/node.html -------------------------------------------------------------------------------- /consoles/prometheus-overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/consoles/prometheus-overview.html -------------------------------------------------------------------------------- /consoles/prometheus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/consoles/prometheus.html -------------------------------------------------------------------------------- /discovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/README.md -------------------------------------------------------------------------------- /discovery/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/azure/azure.go -------------------------------------------------------------------------------- /discovery/azure/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/azure/azure_test.go -------------------------------------------------------------------------------- /discovery/consul/consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/consul/consul.go -------------------------------------------------------------------------------- /discovery/consul/consul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/consul/consul_test.go -------------------------------------------------------------------------------- /discovery/digitalocean/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/digitalocean/mock_test.go -------------------------------------------------------------------------------- /discovery/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/discovery.go -------------------------------------------------------------------------------- /discovery/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dns/dns.go -------------------------------------------------------------------------------- /discovery/dns/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dns/dns_test.go -------------------------------------------------------------------------------- /discovery/dockerswarm/dockerswarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dockerswarm/dockerswarm.go -------------------------------------------------------------------------------- /discovery/dockerswarm/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dockerswarm/mock_test.go -------------------------------------------------------------------------------- /discovery/dockerswarm/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dockerswarm/network.go -------------------------------------------------------------------------------- /discovery/dockerswarm/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dockerswarm/nodes.go -------------------------------------------------------------------------------- /discovery/dockerswarm/nodes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dockerswarm/nodes_test.go -------------------------------------------------------------------------------- /discovery/dockerswarm/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dockerswarm/services.go -------------------------------------------------------------------------------- /discovery/dockerswarm/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dockerswarm/tasks.go -------------------------------------------------------------------------------- /discovery/dockerswarm/tasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/dockerswarm/tasks_test.go -------------------------------------------------------------------------------- /discovery/dockerswarm/testdata/swarmprom/_ping.json: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /discovery/ec2/ec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/ec2/ec2.go -------------------------------------------------------------------------------- /discovery/eureka/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/eureka/client.go -------------------------------------------------------------------------------- /discovery/eureka/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/eureka/client_test.go -------------------------------------------------------------------------------- /discovery/eureka/eureka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/eureka/eureka.go -------------------------------------------------------------------------------- /discovery/eureka/eureka_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/eureka/eureka_test.go -------------------------------------------------------------------------------- /discovery/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/file/file.go -------------------------------------------------------------------------------- /discovery/file/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/file/file_test.go -------------------------------------------------------------------------------- /discovery/file/fixtures/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/file/fixtures/valid.json -------------------------------------------------------------------------------- /discovery/file/fixtures/valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/file/fixtures/valid.yml -------------------------------------------------------------------------------- /discovery/file/fixtures/valid2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/file/fixtures/valid2.yml -------------------------------------------------------------------------------- /discovery/file/fixtures/valid3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/file/fixtures/valid3.yml -------------------------------------------------------------------------------- /discovery/gce/gce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/gce/gce.go -------------------------------------------------------------------------------- /discovery/hetzner/hcloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/hetzner/hcloud.go -------------------------------------------------------------------------------- /discovery/hetzner/hcloud_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/hetzner/hcloud_test.go -------------------------------------------------------------------------------- /discovery/hetzner/hetzner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/hetzner/hetzner.go -------------------------------------------------------------------------------- /discovery/hetzner/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/hetzner/mock_test.go -------------------------------------------------------------------------------- /discovery/hetzner/robot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/hetzner/robot.go -------------------------------------------------------------------------------- /discovery/hetzner/robot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/hetzner/robot_test.go -------------------------------------------------------------------------------- /discovery/install/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/install/install.go -------------------------------------------------------------------------------- /discovery/kubernetes/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/endpoints.go -------------------------------------------------------------------------------- /discovery/kubernetes/endpointslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/endpointslice.go -------------------------------------------------------------------------------- /discovery/kubernetes/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/ingress.go -------------------------------------------------------------------------------- /discovery/kubernetes/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/ingress_test.go -------------------------------------------------------------------------------- /discovery/kubernetes/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/kubernetes.go -------------------------------------------------------------------------------- /discovery/kubernetes/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/node.go -------------------------------------------------------------------------------- /discovery/kubernetes/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/node_test.go -------------------------------------------------------------------------------- /discovery/kubernetes/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/pod.go -------------------------------------------------------------------------------- /discovery/kubernetes/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/pod_test.go -------------------------------------------------------------------------------- /discovery/kubernetes/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/service.go -------------------------------------------------------------------------------- /discovery/kubernetes/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/kubernetes/service_test.go -------------------------------------------------------------------------------- /discovery/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/manager.go -------------------------------------------------------------------------------- /discovery/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/manager_test.go -------------------------------------------------------------------------------- /discovery/marathon/marathon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/marathon/marathon.go -------------------------------------------------------------------------------- /discovery/marathon/marathon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/marathon/marathon_test.go -------------------------------------------------------------------------------- /discovery/openstack/hypervisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/openstack/hypervisor.go -------------------------------------------------------------------------------- /discovery/openstack/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/openstack/instance.go -------------------------------------------------------------------------------- /discovery/openstack/instance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/openstack/instance_test.go -------------------------------------------------------------------------------- /discovery/openstack/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/openstack/mock_test.go -------------------------------------------------------------------------------- /discovery/openstack/openstack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/openstack/openstack.go -------------------------------------------------------------------------------- /discovery/refresh/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/refresh/refresh.go -------------------------------------------------------------------------------- /discovery/refresh/refresh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/refresh/refresh_test.go -------------------------------------------------------------------------------- /discovery/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/registry.go -------------------------------------------------------------------------------- /discovery/targetgroup/targetgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/targetgroup/targetgroup.go -------------------------------------------------------------------------------- /discovery/triton/triton.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/triton/triton.go -------------------------------------------------------------------------------- /discovery/triton/triton_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/triton/triton_test.go -------------------------------------------------------------------------------- /discovery/zookeeper/zookeeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/zookeeper/zookeeper.go -------------------------------------------------------------------------------- /discovery/zookeeper/zookeeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/discovery/zookeeper/zookeeper_test.go -------------------------------------------------------------------------------- /docs/configuration/alerting_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/configuration/alerting_rules.md -------------------------------------------------------------------------------- /docs/configuration/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/configuration/configuration.md -------------------------------------------------------------------------------- /docs/configuration/https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/configuration/https.md -------------------------------------------------------------------------------- /docs/configuration/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Configuration 3 | sort_rank: 3 4 | --- 5 | -------------------------------------------------------------------------------- /docs/configuration/recording_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/configuration/recording_rules.md -------------------------------------------------------------------------------- /docs/federation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/federation.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/images/remote_integrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/images/remote_integrations.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/management_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/management_api.md -------------------------------------------------------------------------------- /docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/migration.md -------------------------------------------------------------------------------- /docs/querying/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/querying/api.md -------------------------------------------------------------------------------- /docs/querying/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/querying/basics.md -------------------------------------------------------------------------------- /docs/querying/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/querying/examples.md -------------------------------------------------------------------------------- /docs/querying/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/querying/functions.md -------------------------------------------------------------------------------- /docs/querying/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Querying 3 | sort_rank: 4 4 | --- 5 | -------------------------------------------------------------------------------- /docs/querying/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/querying/operators.md -------------------------------------------------------------------------------- /docs/stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/stability.md -------------------------------------------------------------------------------- /docs/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/docs/storage.md -------------------------------------------------------------------------------- /documentation/examples/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/documentation/examples/prometheus.yml -------------------------------------------------------------------------------- /documentation/examples/rbac-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/documentation/examples/rbac-setup.yml -------------------------------------------------------------------------------- /documentation/examples/web-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/documentation/examples/web-config.yml -------------------------------------------------------------------------------- /documentation/images/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/documentation/images/architecture.svg -------------------------------------------------------------------------------- /documentation/images/architecture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/documentation/images/architecture.xml -------------------------------------------------------------------------------- /documentation/images/diagram_note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/documentation/images/diagram_note.md -------------------------------------------------------------------------------- /documentation/prometheus-mixin/.gitignore: -------------------------------------------------------------------------------- 1 | *.yaml 2 | dashboards_out 3 | vendor 4 | jsonnetfile.lock.json 5 | -------------------------------------------------------------------------------- /documentation/prometheus-mixin/alerts.jsonnet: -------------------------------------------------------------------------------- 1 | std.manifestYamlDoc((import 'mixin.libsonnet').prometheusAlerts) 2 | -------------------------------------------------------------------------------- /documentation/prometheus-mixin/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/documentation/prometheus-mixin/go.mod -------------------------------------------------------------------------------- /documentation/prometheus-mixin/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/documentation/prometheus-mixin/go.sum -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/go.sum -------------------------------------------------------------------------------- /models/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/models/config.go -------------------------------------------------------------------------------- /models/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/models/mysql.go -------------------------------------------------------------------------------- /notifier/notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/notifier/notifier.go -------------------------------------------------------------------------------- /notifier/notifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/notifier/notifier_test.go -------------------------------------------------------------------------------- /pkg/exemplar/exemplar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/exemplar/exemplar.go -------------------------------------------------------------------------------- /pkg/gate/gate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/gate/gate.go -------------------------------------------------------------------------------- /pkg/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/labels/labels.go -------------------------------------------------------------------------------- /pkg/labels/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/labels/labels_test.go -------------------------------------------------------------------------------- /pkg/labels/matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/labels/matcher.go -------------------------------------------------------------------------------- /pkg/labels/matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/labels/matcher_test.go -------------------------------------------------------------------------------- /pkg/labels/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/labels/regexp.go -------------------------------------------------------------------------------- /pkg/labels/regexp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/labels/regexp_test.go -------------------------------------------------------------------------------- /pkg/labels/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/labels/test_utils.go -------------------------------------------------------------------------------- /pkg/logging/dedupe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/logging/dedupe.go -------------------------------------------------------------------------------- /pkg/logging/dedupe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/logging/dedupe_test.go -------------------------------------------------------------------------------- /pkg/logging/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/logging/file.go -------------------------------------------------------------------------------- /pkg/logging/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/logging/file_test.go -------------------------------------------------------------------------------- /pkg/logging/ratelimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/logging/ratelimit.go -------------------------------------------------------------------------------- /pkg/modtimevfs/modtimevfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/modtimevfs/modtimevfs.go -------------------------------------------------------------------------------- /pkg/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/pool/pool.go -------------------------------------------------------------------------------- /pkg/pool/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/pool/pool_test.go -------------------------------------------------------------------------------- /pkg/relabel/relabel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/relabel/relabel.go -------------------------------------------------------------------------------- /pkg/relabel/relabel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/relabel/relabel_test.go -------------------------------------------------------------------------------- /pkg/rulefmt/rulefmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/rulefmt/rulefmt.go -------------------------------------------------------------------------------- /pkg/rulefmt/rulefmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/rulefmt/rulefmt_test.go -------------------------------------------------------------------------------- /pkg/rulefmt/testdata/noexpr.bad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/rulefmt/testdata/noexpr.bad.yaml -------------------------------------------------------------------------------- /pkg/rulefmt/testdata/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/rulefmt/testdata/test.yaml -------------------------------------------------------------------------------- /pkg/runtime/limits_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/limits_default.go -------------------------------------------------------------------------------- /pkg/runtime/limits_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/limits_windows.go -------------------------------------------------------------------------------- /pkg/runtime/statfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/statfs.go -------------------------------------------------------------------------------- /pkg/runtime/statfs_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/statfs_default.go -------------------------------------------------------------------------------- /pkg/runtime/statfs_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/statfs_linux_386.go -------------------------------------------------------------------------------- /pkg/runtime/statfs_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/statfs_uint32.go -------------------------------------------------------------------------------- /pkg/runtime/uname_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/uname_default.go -------------------------------------------------------------------------------- /pkg/runtime/uname_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/uname_linux.go -------------------------------------------------------------------------------- /pkg/runtime/vmlimits_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/vmlimits_default.go -------------------------------------------------------------------------------- /pkg/runtime/vmlimits_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/runtime/vmlimits_openbsd.go -------------------------------------------------------------------------------- /pkg/textparse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/README.md -------------------------------------------------------------------------------- /pkg/textparse/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/interface.go -------------------------------------------------------------------------------- /pkg/textparse/openmetricslex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/openmetricslex.l -------------------------------------------------------------------------------- /pkg/textparse/openmetricslex.l.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/openmetricslex.l.go -------------------------------------------------------------------------------- /pkg/textparse/openmetricsparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/openmetricsparse.go -------------------------------------------------------------------------------- /pkg/textparse/promlex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/promlex.l -------------------------------------------------------------------------------- /pkg/textparse/promlex.l.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/promlex.l.go -------------------------------------------------------------------------------- /pkg/textparse/promparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/promparse.go -------------------------------------------------------------------------------- /pkg/textparse/promparse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/promparse_test.go -------------------------------------------------------------------------------- /pkg/textparse/promtestdata.nometa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/promtestdata.nometa.txt -------------------------------------------------------------------------------- /pkg/textparse/promtestdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/textparse/promtestdata.txt -------------------------------------------------------------------------------- /pkg/timestamp/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/timestamp/timestamp.go -------------------------------------------------------------------------------- /pkg/value/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/pkg/value/value.go -------------------------------------------------------------------------------- /prompb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/prompb/README.md -------------------------------------------------------------------------------- /prompb/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/prompb/custom.go -------------------------------------------------------------------------------- /prompb/remote.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/prompb/remote.pb.go -------------------------------------------------------------------------------- /prompb/remote.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/prompb/remote.proto -------------------------------------------------------------------------------- /prompb/types.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/prompb/types.pb.go -------------------------------------------------------------------------------- /prompb/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/prompb/types.proto -------------------------------------------------------------------------------- /promql/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/bench_test.go -------------------------------------------------------------------------------- /promql/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/engine.go -------------------------------------------------------------------------------- /promql/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/engine_test.go -------------------------------------------------------------------------------- /promql/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/functions.go -------------------------------------------------------------------------------- /promql/functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/functions_test.go -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_1: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_10: -------------------------------------------------------------------------------- 1 | 0755 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_11: -------------------------------------------------------------------------------- 1 | +5.5e-3 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_12: -------------------------------------------------------------------------------- 1 | -0755 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_13: -------------------------------------------------------------------------------- 1 | 1 + 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_14: -------------------------------------------------------------------------------- 1 | 1 - 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_15: -------------------------------------------------------------------------------- 1 | 1 * 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_16: -------------------------------------------------------------------------------- 1 | 1 % 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_17: -------------------------------------------------------------------------------- 1 | 1 / 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_18: -------------------------------------------------------------------------------- 1 | 1 == 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_19: -------------------------------------------------------------------------------- 1 | 1 != 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_2: -------------------------------------------------------------------------------- 1 | +Inf 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_20: -------------------------------------------------------------------------------- 1 | 1 > 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_21: -------------------------------------------------------------------------------- 1 | 1 >= 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_22: -------------------------------------------------------------------------------- 1 | 1 < 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_23: -------------------------------------------------------------------------------- 1 | 1 <= 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_24: -------------------------------------------------------------------------------- 1 | +1 + -2 * 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_25: -------------------------------------------------------------------------------- 1 | 1 + 2/(3*1) 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_26: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_27: -------------------------------------------------------------------------------- 1 | #comment 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_28: -------------------------------------------------------------------------------- 1 | foo * bar 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_29: -------------------------------------------------------------------------------- 1 | foo == 1 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_3: -------------------------------------------------------------------------------- 1 | -Inf 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_30: -------------------------------------------------------------------------------- 1 | 2.5 / bar 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_31: -------------------------------------------------------------------------------- 1 | foo and bar 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_32: -------------------------------------------------------------------------------- 1 | foo or bar 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_33: -------------------------------------------------------------------------------- 1 | foo + bar or bla and blub 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_4: -------------------------------------------------------------------------------- 1 | .5 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_5: -------------------------------------------------------------------------------- 1 | 5. 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_6: -------------------------------------------------------------------------------- 1 | 123.4567 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_7: -------------------------------------------------------------------------------- 1 | 5e-3 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_8: -------------------------------------------------------------------------------- 1 | 5e3 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseExpr/corpus/from_tests_9: -------------------------------------------------------------------------------- 1 | 0xc 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseMetric/corpus/exposition_formats_2: -------------------------------------------------------------------------------- 1 | metric_without_timestamp_and_labels 12.47 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseMetric/corpus/exposition_formats_3: -------------------------------------------------------------------------------- 1 | something_weird{problem="division by zero"} +Inf -3982045 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseMetric/corpus/exposition_formats_4: -------------------------------------------------------------------------------- 1 | http_request_duration_seconds_bucket{le="+Inf"} 144320 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseMetric/corpus/exposition_formats_5: -------------------------------------------------------------------------------- 1 | go_gc_duration_seconds{ quantile="0.9", a="b"} 8.3835e-05 2 | -------------------------------------------------------------------------------- /promql/fuzz-data/ParseMetric/corpus/exposition_formats_6: -------------------------------------------------------------------------------- 1 | go_gc_duration_seconds{ quantile="1.0", a="b" } 8.3835e-05 2 | -------------------------------------------------------------------------------- /promql/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/fuzz.go -------------------------------------------------------------------------------- /promql/parser/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/ast.go -------------------------------------------------------------------------------- /promql/parser/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/functions.go -------------------------------------------------------------------------------- /promql/parser/generated_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/generated_parser.y -------------------------------------------------------------------------------- /promql/parser/generated_parser.y.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/generated_parser.y.go -------------------------------------------------------------------------------- /promql/parser/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/lex.go -------------------------------------------------------------------------------- /promql/parser/lex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/lex_test.go -------------------------------------------------------------------------------- /promql/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/parse.go -------------------------------------------------------------------------------- /promql/parser/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/parse_test.go -------------------------------------------------------------------------------- /promql/parser/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/printer.go -------------------------------------------------------------------------------- /promql/parser/printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/printer_test.go -------------------------------------------------------------------------------- /promql/parser/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/parser/value.go -------------------------------------------------------------------------------- /promql/promql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/promql_test.go -------------------------------------------------------------------------------- /promql/quantile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/quantile.go -------------------------------------------------------------------------------- /promql/query_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/query_logger.go -------------------------------------------------------------------------------- /promql/query_logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/query_logger_test.go -------------------------------------------------------------------------------- /promql/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/test.go -------------------------------------------------------------------------------- /promql/test_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/test_test.go -------------------------------------------------------------------------------- /promql/testdata/aggregators.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/aggregators.test -------------------------------------------------------------------------------- /promql/testdata/collision.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/collision.test -------------------------------------------------------------------------------- /promql/testdata/functions.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/functions.test -------------------------------------------------------------------------------- /promql/testdata/histograms.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/histograms.test -------------------------------------------------------------------------------- /promql/testdata/literals.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/literals.test -------------------------------------------------------------------------------- /promql/testdata/operators.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/operators.test -------------------------------------------------------------------------------- /promql/testdata/selectors.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/selectors.test -------------------------------------------------------------------------------- /promql/testdata/staleness.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/staleness.test -------------------------------------------------------------------------------- /promql/testdata/subquery.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/testdata/subquery.test -------------------------------------------------------------------------------- /promql/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/promql/value.go -------------------------------------------------------------------------------- /rules/alerting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/alerting.go -------------------------------------------------------------------------------- /rules/alerting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/alerting_test.go -------------------------------------------------------------------------------- /rules/fixtures/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/fixtures/rules.yaml -------------------------------------------------------------------------------- /rules/fixtures/rules2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/fixtures/rules2.yaml -------------------------------------------------------------------------------- /rules/fixtures/rules2_copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/fixtures/rules2_copy.yaml -------------------------------------------------------------------------------- /rules/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/manager.go -------------------------------------------------------------------------------- /rules/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/manager_test.go -------------------------------------------------------------------------------- /rules/recording.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/recording.go -------------------------------------------------------------------------------- /rules/recording_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/rules/recording_test.go -------------------------------------------------------------------------------- /scrape/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/helpers_test.go -------------------------------------------------------------------------------- /scrape/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/manager.go -------------------------------------------------------------------------------- /scrape/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/manager_test.go -------------------------------------------------------------------------------- /scrape/scrape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/scrape.go -------------------------------------------------------------------------------- /scrape/scrape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/scrape_test.go -------------------------------------------------------------------------------- /scrape/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/target.go -------------------------------------------------------------------------------- /scrape/target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/target_test.go -------------------------------------------------------------------------------- /scrape/testdata/bearertoken.txt: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /scrape/testdata/ca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/testdata/ca.cer -------------------------------------------------------------------------------- /scrape/testdata/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/testdata/ca.key -------------------------------------------------------------------------------- /scrape/testdata/client.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/testdata/client.cer -------------------------------------------------------------------------------- /scrape/testdata/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/testdata/client.key -------------------------------------------------------------------------------- /scrape/testdata/server.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/testdata/server.cer -------------------------------------------------------------------------------- /scrape/testdata/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/testdata/server.key -------------------------------------------------------------------------------- /scrape/testdata/servername.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/testdata/servername.cer -------------------------------------------------------------------------------- /scrape/testdata/servername.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scrape/testdata/servername.key -------------------------------------------------------------------------------- /scripts/build_react_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scripts/build_react_app.sh -------------------------------------------------------------------------------- /scripts/errcheck_excludes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scripts/errcheck_excludes.txt -------------------------------------------------------------------------------- /scripts/genproto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scripts/genproto.sh -------------------------------------------------------------------------------- /scripts/sync_repo_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scripts/sync_repo_files.sh -------------------------------------------------------------------------------- /scripts/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/scripts/tools.go -------------------------------------------------------------------------------- /storage/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/buffer.go -------------------------------------------------------------------------------- /storage/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/buffer_test.go -------------------------------------------------------------------------------- /storage/fanout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/fanout.go -------------------------------------------------------------------------------- /storage/fanout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/fanout_test.go -------------------------------------------------------------------------------- /storage/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/generic.go -------------------------------------------------------------------------------- /storage/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/interface.go -------------------------------------------------------------------------------- /storage/lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/lazy.go -------------------------------------------------------------------------------- /storage/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/merge.go -------------------------------------------------------------------------------- /storage/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/merge_test.go -------------------------------------------------------------------------------- /storage/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/noop.go -------------------------------------------------------------------------------- /storage/remote/chunked.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/chunked.go -------------------------------------------------------------------------------- /storage/remote/chunked_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/chunked_test.go -------------------------------------------------------------------------------- /storage/remote/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/client.go -------------------------------------------------------------------------------- /storage/remote/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/client_test.go -------------------------------------------------------------------------------- /storage/remote/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/codec.go -------------------------------------------------------------------------------- /storage/remote/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/codec_test.go -------------------------------------------------------------------------------- /storage/remote/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/ewma.go -------------------------------------------------------------------------------- /storage/remote/intern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/intern.go -------------------------------------------------------------------------------- /storage/remote/intern_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/intern_test.go -------------------------------------------------------------------------------- /storage/remote/max_timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/max_timestamp.go -------------------------------------------------------------------------------- /storage/remote/metadata_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/metadata_watcher.go -------------------------------------------------------------------------------- /storage/remote/queue_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/queue_manager.go -------------------------------------------------------------------------------- /storage/remote/queue_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/queue_manager_test.go -------------------------------------------------------------------------------- /storage/remote/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/read.go -------------------------------------------------------------------------------- /storage/remote/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/read_test.go -------------------------------------------------------------------------------- /storage/remote/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/storage.go -------------------------------------------------------------------------------- /storage/remote/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/storage_test.go -------------------------------------------------------------------------------- /storage/remote/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/write.go -------------------------------------------------------------------------------- /storage/remote/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/remote/write_test.go -------------------------------------------------------------------------------- /storage/secondary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/secondary.go -------------------------------------------------------------------------------- /storage/series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/storage/series.go -------------------------------------------------------------------------------- /template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/template/template.go -------------------------------------------------------------------------------- /template/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/template/template_test.go -------------------------------------------------------------------------------- /tsdb/.gitignore: -------------------------------------------------------------------------------- 1 | benchout/ 2 | -------------------------------------------------------------------------------- /tsdb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/CHANGELOG.md -------------------------------------------------------------------------------- /tsdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/README.md -------------------------------------------------------------------------------- /tsdb/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/block.go -------------------------------------------------------------------------------- /tsdb/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/block_test.go -------------------------------------------------------------------------------- /tsdb/blockwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/blockwriter.go -------------------------------------------------------------------------------- /tsdb/blockwriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/blockwriter_test.go -------------------------------------------------------------------------------- /tsdb/chunkenc/bstream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunkenc/bstream.go -------------------------------------------------------------------------------- /tsdb/chunkenc/bstream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunkenc/bstream_test.go -------------------------------------------------------------------------------- /tsdb/chunkenc/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunkenc/chunk.go -------------------------------------------------------------------------------- /tsdb/chunkenc/chunk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunkenc/chunk_test.go -------------------------------------------------------------------------------- /tsdb/chunkenc/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunkenc/xor.go -------------------------------------------------------------------------------- /tsdb/chunks/chunks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunks/chunks.go -------------------------------------------------------------------------------- /tsdb/chunks/chunks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunks/chunks_test.go -------------------------------------------------------------------------------- /tsdb/chunks/head_chunks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunks/head_chunks.go -------------------------------------------------------------------------------- /tsdb/chunks/head_chunks_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunks/head_chunks_other.go -------------------------------------------------------------------------------- /tsdb/chunks/head_chunks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunks/head_chunks_test.go -------------------------------------------------------------------------------- /tsdb/chunks/head_chunks_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/chunks/head_chunks_windows.go -------------------------------------------------------------------------------- /tsdb/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/compact.go -------------------------------------------------------------------------------- /tsdb/compact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/compact_test.go -------------------------------------------------------------------------------- /tsdb/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/db.go -------------------------------------------------------------------------------- /tsdb/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/db_test.go -------------------------------------------------------------------------------- /tsdb/docs/format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/docs/format/README.md -------------------------------------------------------------------------------- /tsdb/docs/format/chunks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/docs/format/chunks.md -------------------------------------------------------------------------------- /tsdb/docs/format/head_chunks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/docs/format/head_chunks.md -------------------------------------------------------------------------------- /tsdb/docs/format/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/docs/format/index.md -------------------------------------------------------------------------------- /tsdb/docs/format/tombstones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/docs/format/tombstones.md -------------------------------------------------------------------------------- /tsdb/docs/format/wal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/docs/format/wal.md -------------------------------------------------------------------------------- /tsdb/encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/encoding/encoding.go -------------------------------------------------------------------------------- /tsdb/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/errors/errors.go -------------------------------------------------------------------------------- /tsdb/fileutil/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/dir.go -------------------------------------------------------------------------------- /tsdb/fileutil/dir_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/dir_unix.go -------------------------------------------------------------------------------- /tsdb/fileutil/dir_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/dir_windows.go -------------------------------------------------------------------------------- /tsdb/fileutil/fileutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/fileutil.go -------------------------------------------------------------------------------- /tsdb/fileutil/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/flock.go -------------------------------------------------------------------------------- /tsdb/fileutil/flock_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/flock_plan9.go -------------------------------------------------------------------------------- /tsdb/fileutil/flock_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/flock_solaris.go -------------------------------------------------------------------------------- /tsdb/fileutil/flock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/flock_test.go -------------------------------------------------------------------------------- /tsdb/fileutil/flock_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/flock_unix.go -------------------------------------------------------------------------------- /tsdb/fileutil/flock_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/flock_windows.go -------------------------------------------------------------------------------- /tsdb/fileutil/mmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/mmap.go -------------------------------------------------------------------------------- /tsdb/fileutil/mmap_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/mmap_386.go -------------------------------------------------------------------------------- /tsdb/fileutil/mmap_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/mmap_amd64.go -------------------------------------------------------------------------------- /tsdb/fileutil/mmap_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/mmap_unix.go -------------------------------------------------------------------------------- /tsdb/fileutil/mmap_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/mmap_windows.go -------------------------------------------------------------------------------- /tsdb/fileutil/preallocate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/preallocate.go -------------------------------------------------------------------------------- /tsdb/fileutil/preallocate_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/preallocate_darwin.go -------------------------------------------------------------------------------- /tsdb/fileutil/preallocate_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/preallocate_linux.go -------------------------------------------------------------------------------- /tsdb/fileutil/preallocate_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/preallocate_other.go -------------------------------------------------------------------------------- /tsdb/fileutil/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/sync.go -------------------------------------------------------------------------------- /tsdb/fileutil/sync_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/sync_darwin.go -------------------------------------------------------------------------------- /tsdb/fileutil/sync_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/fileutil/sync_linux.go -------------------------------------------------------------------------------- /tsdb/goversion/goversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/goversion/goversion.go -------------------------------------------------------------------------------- /tsdb/goversion/goversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/goversion/goversion_test.go -------------------------------------------------------------------------------- /tsdb/goversion/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/goversion/init.go -------------------------------------------------------------------------------- /tsdb/head.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/head.go -------------------------------------------------------------------------------- /tsdb/head_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/head_bench_test.go -------------------------------------------------------------------------------- /tsdb/head_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/head_test.go -------------------------------------------------------------------------------- /tsdb/index/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/index/index.go -------------------------------------------------------------------------------- /tsdb/index/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/index/index_test.go -------------------------------------------------------------------------------- /tsdb/index/postings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/index/postings.go -------------------------------------------------------------------------------- /tsdb/index/postings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/index/postings_test.go -------------------------------------------------------------------------------- /tsdb/index/postingsstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/index/postingsstats.go -------------------------------------------------------------------------------- /tsdb/index/postingsstats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/index/postingsstats_test.go -------------------------------------------------------------------------------- /tsdb/isolation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/isolation.go -------------------------------------------------------------------------------- /tsdb/isolation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/isolation_test.go -------------------------------------------------------------------------------- /tsdb/mocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/mocks_test.go -------------------------------------------------------------------------------- /tsdb/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/querier.go -------------------------------------------------------------------------------- /tsdb/querier_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/querier_bench_test.go -------------------------------------------------------------------------------- /tsdb/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/querier_test.go -------------------------------------------------------------------------------- /tsdb/record/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/record/record.go -------------------------------------------------------------------------------- /tsdb/record/record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/record/record_test.go -------------------------------------------------------------------------------- /tsdb/repair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/repair.go -------------------------------------------------------------------------------- /tsdb/repair_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/repair_test.go -------------------------------------------------------------------------------- /tsdb/test/conv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/test/conv_test.go -------------------------------------------------------------------------------- /tsdb/test/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/test/hash_test.go -------------------------------------------------------------------------------- /tsdb/test/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/test/labels_test.go -------------------------------------------------------------------------------- /tsdb/testdata/20kseries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/testdata/20kseries.json -------------------------------------------------------------------------------- /tsdb/testdata/index_format_v1/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/testdata/index_format_v1/index -------------------------------------------------------------------------------- /tsdb/tombstones/tombstones.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/tombstones/tombstones.go -------------------------------------------------------------------------------- /tsdb/tombstones/tombstones_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/tombstones/tombstones_test.go -------------------------------------------------------------------------------- /tsdb/tsdbblockutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/tsdbblockutil.go -------------------------------------------------------------------------------- /tsdb/tsdbutil/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/tsdbutil/buffer.go -------------------------------------------------------------------------------- /tsdb/tsdbutil/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/tsdbutil/buffer_test.go -------------------------------------------------------------------------------- /tsdb/tsdbutil/chunks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/tsdbutil/chunks.go -------------------------------------------------------------------------------- /tsdb/wal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal.go -------------------------------------------------------------------------------- /tsdb/wal/checkpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/checkpoint.go -------------------------------------------------------------------------------- /tsdb/wal/checkpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/checkpoint_test.go -------------------------------------------------------------------------------- /tsdb/wal/live_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/live_reader.go -------------------------------------------------------------------------------- /tsdb/wal/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/reader.go -------------------------------------------------------------------------------- /tsdb/wal/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/reader_test.go -------------------------------------------------------------------------------- /tsdb/wal/wal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/wal.go -------------------------------------------------------------------------------- /tsdb/wal/wal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/wal_test.go -------------------------------------------------------------------------------- /tsdb/wal/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/watcher.go -------------------------------------------------------------------------------- /tsdb/wal/watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal/watcher_test.go -------------------------------------------------------------------------------- /tsdb/wal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/tsdb/wal_test.go -------------------------------------------------------------------------------- /util/httputil/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/httputil/compression.go -------------------------------------------------------------------------------- /util/httputil/compression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/httputil/compression_test.go -------------------------------------------------------------------------------- /util/httputil/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/httputil/context.go -------------------------------------------------------------------------------- /util/httputil/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/httputil/cors.go -------------------------------------------------------------------------------- /util/httputil/cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/httputil/cors_test.go -------------------------------------------------------------------------------- /util/stats/query_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/stats/query_stats.go -------------------------------------------------------------------------------- /util/stats/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/stats/stats_test.go -------------------------------------------------------------------------------- /util/stats/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/stats/timer.go -------------------------------------------------------------------------------- /util/strutil/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/strutil/quote.go -------------------------------------------------------------------------------- /util/strutil/quote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/strutil/quote_test.go -------------------------------------------------------------------------------- /util/strutil/strconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/strutil/strconv.go -------------------------------------------------------------------------------- /util/strutil/strconv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/strutil/strconv_test.go -------------------------------------------------------------------------------- /util/teststorage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/teststorage/storage.go -------------------------------------------------------------------------------- /util/testutil/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/testutil/context.go -------------------------------------------------------------------------------- /util/testutil/directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/testutil/directory.go -------------------------------------------------------------------------------- /util/testutil/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/testutil/logging.go -------------------------------------------------------------------------------- /util/testutil/roundtrip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/testutil/roundtrip.go -------------------------------------------------------------------------------- /util/testutil/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/testutil/testing.go -------------------------------------------------------------------------------- /util/treecache/treecache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/util/treecache/treecache.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/alecthomas/template 2 | -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/asaskevich/govalidator 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cespare/xxhash/v2 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/fatih/color/go.mod -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/fatih/color/go.sum -------------------------------------------------------------------------------- /vendor/github.com/form3tech-oss/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/go-kit/kit/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logfmt/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/golang/snappy 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/gofuzz 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/gophercloud/gophercloud/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.swp 2 | .idea 3 | .vscode 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-cleanhttp/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/go-cleanhttp 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/.gitignore: -------------------------------------------------------------------------------- 1 | .idea* -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/golang-lru 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/models/gen.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | //go:generate stringer -type=FieldType 4 | -------------------------------------------------------------------------------- /vendor/github.com/josharian/intern/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/josharian/intern 2 | 3 | go 1.5 4 | -------------------------------------------------------------------------------- /vendor/github.com/jpillora/backoff/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jpillora/backoff 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /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/julienschmidt/httprouter/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/julienschmidt/httprouter 2 | 3 | go 1.7 4 | -------------------------------------------------------------------------------- /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/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @miekg @tmthrgd 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/README.md -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/client.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/dane.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/dnssec.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/edns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/format.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/go.mod -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/go.sum -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/labels.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/scan.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/server.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/sig0.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/smimea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/smimea.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/svcb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/svcb.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/tsig.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/types.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/update.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/ztypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/miekg/dns/ztypes.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-homedir 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /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/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/oklog/run/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/oklog/run/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/oklog/run/README.md -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/actors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/oklog/run/actors.go -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/oklog/run 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/oklog/run/group.go -------------------------------------------------------------------------------- /vendor/github.com/oklog/ulid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/oklog/ulid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oklog/ulid/ulid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/oklog/ulid/ulid.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/opencontainers/go-digest 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/opentracing/opentracing-go/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/github.com/uber/jaeger-client-go/thrift/.nocover: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/.travis.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/go.mod -------------------------------------------------------------------------------- /vendor/go.opencensus.io/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/go.sum -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/bool_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/duration.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/float64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/go.mod -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/go.sum -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/go.mod -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/go.sum -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/leaks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/leaks.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/testmain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/testmain.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/go.uber.org/goleak/tools.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/lint/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/lint/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/lint/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/lint/go.mod -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/lint/go.sum -------------------------------------------------------------------------------- /vendor/golang.org/x/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/lint/lint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /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/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sync/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/go.mod -------------------------------------------------------------------------------- /vendor/golang.org/x/term/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/go.sum -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/tools/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/README -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/xerrors 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/.golangci.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/go.mod -------------------------------------------------------------------------------- /vendor/k8s.io/klog/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/go.sum -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/renovate.json -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/v2/go.mod -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/v2/go.sum -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/go.mod -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/go.sum -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /web/api/v1/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/api/v1/api.go -------------------------------------------------------------------------------- /web/api/v1/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/api/v1/api_test.go -------------------------------------------------------------------------------- /web/federate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/federate.go -------------------------------------------------------------------------------- /web/federate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/federate_test.go -------------------------------------------------------------------------------- /web/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/README.md -------------------------------------------------------------------------------- /web/ui/assets_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/assets_generate.go -------------------------------------------------------------------------------- /web/ui/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/doc.go -------------------------------------------------------------------------------- /web/ui/react-app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/.eslintrc.json -------------------------------------------------------------------------------- /web/ui/react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/.gitignore -------------------------------------------------------------------------------- /web/ui/react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/README.md -------------------------------------------------------------------------------- /web/ui/react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/package.json -------------------------------------------------------------------------------- /web/ui/react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/public/index.html -------------------------------------------------------------------------------- /web/ui/react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/src/App.css -------------------------------------------------------------------------------- /web/ui/react-app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/src/App.test.tsx -------------------------------------------------------------------------------- /web/ui/react-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/src/App.tsx -------------------------------------------------------------------------------- /web/ui/react-app/src/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/src/Navbar.tsx -------------------------------------------------------------------------------- /web/ui/react-app/src/constants/constants.tsx: -------------------------------------------------------------------------------- 1 | export const API_PATH = 'api/v1'; 2 | -------------------------------------------------------------------------------- /web/ui/react-app/src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/src/globals.ts -------------------------------------------------------------------------------- /web/ui/react-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/src/index.tsx -------------------------------------------------------------------------------- /web/ui/react-app/src/pages/targets/TargetLabels.module.css: -------------------------------------------------------------------------------- 1 | .discovered { 2 | white-space: nowrap; 3 | } 4 | -------------------------------------------------------------------------------- /web/ui/react-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/ui/react-app/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/src/setupTests.ts -------------------------------------------------------------------------------- /web/ui/react-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/tsconfig.json -------------------------------------------------------------------------------- /web/ui/react-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/react-app/yarn.lock -------------------------------------------------------------------------------- /web/ui/static/css/alerts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/css/alerts.css -------------------------------------------------------------------------------- /web/ui/static/css/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/css/config.css -------------------------------------------------------------------------------- /web/ui/static/css/graph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/css/graph.css -------------------------------------------------------------------------------- /web/ui/static/css/prom_console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/css/prom_console.css -------------------------------------------------------------------------------- /web/ui/static/css/prometheus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/css/prometheus.css -------------------------------------------------------------------------------- /web/ui/static/css/rules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/css/rules.css -------------------------------------------------------------------------------- /web/ui/static/css/targets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/css/targets.css -------------------------------------------------------------------------------- /web/ui/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /web/ui/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/img/favicon.ico -------------------------------------------------------------------------------- /web/ui/static/js/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/js/alerts.js -------------------------------------------------------------------------------- /web/ui/static/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/js/config.js -------------------------------------------------------------------------------- /web/ui/static/js/graph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/js/graph/index.js -------------------------------------------------------------------------------- /web/ui/static/js/prom_console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/js/prom_console.js -------------------------------------------------------------------------------- /web/ui/static/js/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/static/js/targets.js -------------------------------------------------------------------------------- /web/ui/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/templates/_base.html -------------------------------------------------------------------------------- /web/ui/templates/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/templates/alerts.html -------------------------------------------------------------------------------- /web/ui/templates/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/templates/config.html -------------------------------------------------------------------------------- /web/ui/templates/flags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/templates/flags.html -------------------------------------------------------------------------------- /web/ui/templates/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/templates/graph.html -------------------------------------------------------------------------------- /web/ui/templates/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/templates/rules.html -------------------------------------------------------------------------------- /web/ui/templates/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/templates/status.html -------------------------------------------------------------------------------- /web/ui/templates/targets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/templates/targets.html -------------------------------------------------------------------------------- /web/ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/ui/ui.go -------------------------------------------------------------------------------- /web/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/web.go -------------------------------------------------------------------------------- /web/web_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/web/web_test.go -------------------------------------------------------------------------------- /原README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangwei2013/prometheus/HEAD/原README.md --------------------------------------------------------------------------------