├── .asf.yaml ├── .codecov.yml ├── .dependency_license ├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug-report.md │ ├── 2-feature-request.md │ ├── 3-improvement-request.md │ └── config.yml ├── actions │ ├── assign-triage-role │ │ ├── README.rst │ │ ├── assign_triage_role │ │ │ ├── __main__.py │ │ │ ├── constants.py │ │ │ ├── templates │ │ │ │ ├── apache_license.yml │ │ │ │ ├── pr_template.md │ │ │ │ ├── single_contributor.md │ │ │ │ └── single_pr.md │ │ │ └── triage_role_assigner.py │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── tests │ │ │ └── test_triage_role_assigner.py │ ├── build-ats-test-rpm │ │ ├── README.md │ │ ├── action.yaml │ │ └── main.js │ ├── build-ciab │ │ ├── README.md │ │ ├── action.yaml │ │ └── build-ciab.js │ ├── build-rpms │ │ ├── README.md │ │ ├── action.yaml │ │ └── build-rpms.sh │ ├── cache-config-integration-tests │ │ ├── README.md │ │ ├── action.yml │ │ └── main.js │ ├── check-go-modules │ │ ├── README.md │ │ └── entrypoint.sh │ ├── chromedriver-updater │ │ ├── README.rst │ │ ├── action.yml │ │ ├── chromedriver_updater │ │ │ ├── __main__.py │ │ │ ├── constants.py │ │ │ └── templates │ │ │ │ └── pr.md │ │ ├── entrypoint.sh │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ └── setup.py │ ├── go-fmt │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── go-test │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── health-client-integration-tests │ │ ├── README.md │ │ ├── action.yml │ │ └── main.js │ ├── license-file-coverage │ │ └── atc_coverage_test.go │ ├── pr-to-update-go │ │ ├── README.rst │ │ ├── pr_to_update_go │ │ │ ├── __main__.py │ │ │ ├── constants.py │ │ │ ├── go_pr_maker.py │ │ │ ├── pr_template.md │ │ │ └── update_golang_org_x.sh │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── tests │ │ │ └── test_go_pr_maker.py │ ├── repo-info │ │ ├── README.md │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── run-ciab │ │ ├── README.md │ │ ├── action.yaml │ │ ├── run-ciab.js │ │ └── run-ciab.sh │ ├── save-alpine-tar │ │ ├── README.md │ │ └── entrypoint.sh │ ├── tm-integration-tests │ │ ├── README.md │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── to-api-contract-tests │ │ ├── README.md │ │ ├── action.yml │ │ ├── cdn.json │ │ ├── database.json │ │ ├── dbconf.yml │ │ └── entrypoint.sh │ ├── to-integration-tests │ │ ├── .gitignore │ │ ├── README.md │ │ ├── action.yml │ │ ├── cdn.json │ │ ├── database.json │ │ ├── dbconf.yml │ │ ├── entrypoint.sh │ │ ├── intermediate.crt.pem │ │ ├── intermediate.key.pem │ │ ├── rootca.crt.pem │ │ ├── rootca.key.pem │ │ ├── server.crt.pem │ │ ├── server.key.pem │ │ └── traffic-ops-test.json │ ├── todb-init │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ ├── dbconf.yml │ │ └── entrypoint.sh │ ├── todb-tests │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── tp-integration-tests │ │ ├── README.md │ │ ├── action.yml │ │ ├── cdn.json │ │ ├── config.js │ │ ├── database.json │ │ ├── dbconf.yml │ │ └── entrypoint.sh │ ├── tpv2-integration-tests │ │ ├── README.md │ │ ├── action.yml │ │ ├── cdn.json │ │ ├── database.json │ │ ├── dbconf.yml │ │ └── entrypoint.sh │ └── tvdb-init │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ ├── dbconf.yml │ │ └── entrypoint.sh ├── containers │ └── trafficserver-alpine │ │ ├── .env │ │ ├── Dockerfile │ │ └── docker-compose.yml └── workflows │ ├── ansible.molecule.fo.yml │ ├── ansible.molecule.todb.yml │ ├── assign-triage-role.yml │ ├── cache-config-tests.yml │ ├── cache-config.unit.tests.yml │ ├── check-go-modules.yml │ ├── chromdriver-update.yml │ ├── ciab.yaml │ ├── codeql.cpp.yml │ ├── codeql.go.yml │ ├── codeql.java.yml │ ├── codeql.javascript.yml │ ├── codeql.python.yml │ ├── container-trafficserver-alpine.yml │ ├── docs.yml │ ├── go.fmt.yml │ ├── go.lib.unit.tests.yml │ ├── go.vet.yml │ ├── grove.unit.tests.yml │ ├── health-client-tests.yml │ ├── license-file-coverage.yml │ ├── postinstall.tests.yml │ ├── pr-to-update-go.yml │ ├── tm.integration.tests.yml │ ├── tm.unit.tests.yml │ ├── to.api.contract.tests.yml │ ├── to.integration.tests.yml │ ├── to.unit.tests.yml │ ├── tp.integration.tests.yml │ ├── tpv2.yml │ ├── tr-ultimate-test-harness.yml │ ├── tr.tests.yaml │ ├── traffic-stats.unit.tests.yml │ ├── traffic.ops.database.yml │ └── weasel.yml ├── .gitignore ├── .golangci.yml ├── .mailmap ├── .readthedocs.yaml ├── BUILD.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GO_VERSION ├── LICENSE ├── Makefile ├── NOTICE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── SECURITY.md ├── VERSION ├── blueprints ├── BLUEPRINT_TEMPLATE.md ├── api.guidelines.md ├── client-certificate-auth.md ├── client-steering-diversity.md ├── configurable-tp-columns.md ├── delivery.service.tls.versions.md ├── distributed-traffic-monitor.md ├── ds-active.md ├── flexible-topologies.md ├── img │ ├── ds-tls-versions-sample.checked.png │ ├── ds-tls-versions-sample.unchecked.png │ ├── multi-interface-ui-sample.png │ ├── profile-param-compare-manage.png │ └── to-soa.png ├── layered-profile-server.md ├── multi-interface-servers.md ├── ort-rewrite-unix-style.md ├── profile-param-compare-manage.md ├── refetch-invalidation.md ├── server-capabilitites.md ├── to-locks.md ├── to_soa.md ├── tr-load-tests.md ├── trafficvault-interface.md ├── user.permissions.md └── varnish-support.md ├── cache-config ├── .gitignore ├── Makefile ├── README.md ├── build │ ├── atstccfg.logrotate │ ├── build_rpm.sh │ └── trafficcontrol-cache-config.spec ├── t3c-apply │ ├── README.md │ ├── config │ │ └── config.go │ ├── t3c-apply.go │ ├── torequest │ │ ├── cmd.go │ │ ├── torequest.go │ │ └── torequest_test.go │ └── util │ │ ├── gitutil.go │ │ └── util.go ├── t3c-check-refs │ ├── README.md │ ├── config │ │ └── config.go │ ├── t3c-check-refs.go │ ├── t3c-check-refs_test.go │ └── test-files │ │ ├── etc │ │ ├── astats.config │ │ ├── bad-plugin.config │ │ ├── bad-remap-multiline.config │ │ ├── bad-remap.config │ │ ├── bg_fetch.config │ │ ├── dscp │ │ │ └── set_dscp_8.config │ │ ├── hdr_rw.config │ │ ├── hdr_rw_mid_bar.config │ │ ├── plugin.config │ │ ├── regex_remap.config │ │ ├── regex_revalidate.config │ │ ├── remap-multiline.config │ │ ├── remap.config │ │ └── url_sig.config │ │ └── libexec │ │ ├── astats_over_http.so │ │ ├── background_fetch.so │ │ ├── cachekey.so │ │ ├── header_rewrite.so │ │ ├── plugin.so │ │ ├── regex_remap.so │ │ ├── regex_revalidate.so │ │ ├── remap_stats.so │ │ └── url_sig.so ├── t3c-check-reload │ ├── README.md │ └── t3c-check-reload.go ├── t3c-check │ ├── README.md │ └── t3c-check.go ├── t3c-diff │ ├── README.md │ └── t3c-diff.go ├── t3c-generate │ ├── .gitignore │ ├── README.md │ ├── cfgfile │ │ ├── all.go │ │ ├── cfgfile_test.go │ │ ├── routing.go │ │ ├── sslkeys.go │ │ ├── varnish.go │ │ └── wrappers.go │ ├── config │ │ └── config.go │ ├── plugin │ │ ├── README.md │ │ ├── hello_world.go │ │ ├── plugin.go │ │ └── plugin_test.go │ ├── t3c-generate.go │ └── update-to-client │ │ └── update-to-client.go ├── t3c-preprocess │ ├── README.md │ ├── t3c-preprocess.go │ ├── t3c-preprocess_test.go │ └── util │ │ └── util.go ├── t3c-request │ ├── README.md │ ├── config │ │ └── config.go │ └── t3c-request.go ├── t3c-tail │ ├── README.md │ └── t3c-tail.go ├── t3c-update │ ├── README.md │ ├── config │ │ └── config.go │ └── t3c-update.go ├── t3c │ ├── README.md │ └── t3c.go ├── t3cutil │ ├── actionlog.go │ ├── enum.go │ ├── getdata.go │ ├── getdatacfg.go │ ├── t3cutil.go │ ├── t3cutil_test.go │ └── toreq │ │ ├── client.go │ │ ├── client_test.go │ │ ├── clientfuncs.go │ │ ├── clienthlp.go │ │ ├── conversions.go │ │ ├── toreqold │ │ ├── client.go │ │ ├── clientfuncs.go │ │ ├── clienthlp.go │ │ └── conversions.go │ │ └── torequtil │ │ ├── torequtil.go │ │ └── torequtil_test.go └── testing │ ├── README.md │ ├── docker │ ├── .env │ ├── docker-compose-ats-build.yml │ ├── docker-compose.yml │ ├── ort_test │ │ ├── Dockerfile │ │ ├── Ort-test.repo │ │ ├── run.sh │ │ └── systemctl.sh │ ├── traffic_ops │ │ ├── Dockerfile │ │ ├── profile.origin.traffic_ops │ │ └── run.sh │ ├── trafficserver │ │ ├── .dependency_license │ │ ├── Dockerfile │ │ ├── cjose.pic.patch │ │ ├── jansson.pic.patch │ │ ├── run.sh │ │ ├── traffic_server_jemalloc │ │ ├── trafficserver.env │ │ └── trafficserver.spec │ ├── variables.env │ └── yumserver │ │ ├── Dockerfile │ │ ├── run.sh │ │ └── test-rpms │ │ └── README.md │ └── ort-tests │ ├── baseline-configs │ ├── astats.config │ ├── hdr_rw_first_ds-top.config │ ├── hosting.config │ ├── parent.config │ ├── records.config │ ├── remap.config │ ├── storage.config │ └── volume.config │ ├── conf │ ├── docker-edge-cache.conf │ └── edge-host.conf │ ├── config │ └── config.go │ ├── defaults_test.go │ ├── t3c-action-log_test.go │ ├── t3c-apply-diff_test.go │ ├── t3c-apply-unset-update_test.go │ ├── t3c-apply-wait-for-parents_test.go │ ├── t3c-check-reload_test.go │ ├── t3c-create-empty-file_test.go │ ├── t3c-create-metadata-file_test.go │ ├── t3c-dirs_test.go │ ├── t3c-dns-local-bind_test.go │ ├── t3c-fail-log_test.go │ ├── t3c-git_test.go │ ├── t3c-ims_test.go │ ├── t3c-ip-origin_test.go │ ├── t3c-jobs_test.go │ ├── t3c-lockfile_test.go │ ├── t3c-no-outgoing-ip-flag_test.go │ ├── t3c-os-hostname-short_test.go │ ├── t3c-reload_test.go │ ├── t3c-tail_test.go │ ├── t3c_mode_test.go │ ├── t3c_update_to_flags_test.go │ ├── tc-fixtures.json │ ├── tcdata │ ├── fixtures.go │ ├── servers.go │ ├── session.go │ ├── tcdata.go │ ├── todb.go │ └── withobjs.go │ ├── to_requester_test.go │ ├── to_updater_test.go │ ├── traffic_ops_ort_test.go │ └── util │ └── util.go ├── dev ├── README.md ├── atc.dev.sh ├── t3c │ ├── Dockerfile │ └── run.sh ├── tpv2 │ ├── Dockerfile │ ├── proxy.json │ └── run.sh ├── traffic_monitor │ ├── .gitignore │ ├── Dockerfile │ ├── ops.config.json │ ├── run.sh │ └── tm.config.json ├── traffic_ops │ ├── .pgpass │ ├── Dockerfile │ ├── cdn.json │ ├── db.config.json │ ├── dbconf.yml │ ├── run.sh │ ├── seed.psql │ └── traffic.vault.dbconf.yml ├── traffic_portal │ ├── Dockerfile │ ├── config.js │ └── run.sh └── traffic_router │ ├── .gitignore │ ├── Dockerfile │ ├── conf │ ├── https.properties │ ├── keyStore.jks │ ├── log4j2.xml │ ├── logging.properties │ ├── server.xml │ ├── traffic_monitor.properties │ ├── traffic_ops.properties │ ├── trafficrouter.dev.ciab.test.crt │ └── web.xml │ ├── czf.json │ ├── lib │ ├── run.sh │ ├── settings.xml │ └── webapps │ └── ROOT ├── doap_Traffic_Control.rdf ├── docker-compose.yml ├── docs ├── Makefile ├── README.md ├── requirements.txt ├── source │ ├── _ext │ │ └── atc.py │ ├── _static │ │ └── theme_overrides.css │ ├── _templates │ │ └── layout.html │ ├── admin │ │ ├── ansible-labs │ │ │ ├── ATC.Installation.dependencies.svg │ │ │ ├── ATC.lab.layers.svg │ │ │ └── ansible_labs.rst │ │ ├── cdni.rst │ │ ├── environment_creation.rst │ │ ├── images │ │ │ ├── bad.png │ │ │ └── good.png │ │ ├── index.rst │ │ ├── quick_howto │ │ │ ├── anonymous_blocking.rst │ │ │ ├── anonymous_blocking │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── cachegroup_fallback.rst │ │ │ ├── cachegroup_fallback │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ └── 05.png │ │ │ ├── ciab.rst │ │ │ ├── client_cert_auth.rst │ │ │ ├── content_invalidation.rst │ │ │ ├── content_invalidation │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ └── 04.png │ │ │ ├── dnssec.rst │ │ │ ├── dnssec │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ └── 06.png │ │ │ ├── ds_requests.rst │ │ │ ├── federations.rst │ │ │ ├── federations │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ └── 04.png │ │ │ ├── index.rst │ │ │ ├── kickstart.rst │ │ │ ├── multi_site.rst │ │ │ ├── multi_site │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── ds_profile.png │ │ │ │ ├── ds_profile_parameters.png │ │ │ │ └── mso-enable.png │ │ │ ├── oauth_login.rst │ │ │ ├── profile_compare_mgmt.rst │ │ │ ├── profile_compare_mgmt │ │ │ │ ├── compare_profiles_menu.png │ │ │ │ ├── compare_profiles_table.png │ │ │ │ └── select_profiles_dialog.png │ │ │ ├── regionalgeo.rst │ │ │ ├── regionalgeo │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── server_capabililty.rst │ │ │ ├── server_capability │ │ │ │ ├── ds_required_capability.png │ │ │ │ ├── server_caps_table.png │ │ │ │ └── server_server_caps_table.png │ │ │ ├── static_dns.rst │ │ │ ├── static_dns │ │ │ │ ├── 00.png │ │ │ │ └── 01.png │ │ │ ├── steering.rst │ │ │ └── steering │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ ├── t3c │ │ │ ├── .gitignore │ │ │ └── index.rst │ │ ├── traffic_monitor.rst │ │ ├── traffic_ops.rst │ │ ├── traffic_portal │ │ │ ├── images │ │ │ │ ├── changelog_dialog.png │ │ │ │ ├── changelog_page.png │ │ │ │ ├── logout_button.png │ │ │ │ ├── popout_button.png │ │ │ │ ├── profile_button.png │ │ │ │ ├── release_info_button.png │ │ │ │ ├── tp_menu.png │ │ │ │ ├── tp_menu_configure.png │ │ │ │ ├── tp_menu_monitor.png │ │ │ │ ├── tp_menu_other.png │ │ │ │ ├── tp_menu_services.png │ │ │ │ ├── tp_menu_tools.png │ │ │ │ ├── tp_menu_topology.png │ │ │ │ ├── tp_menu_user_admin.png │ │ │ │ ├── tp_table_ds.png │ │ │ │ ├── tp_table_ds_requests.png │ │ │ │ └── tp_table_server.png │ │ │ ├── index.rst │ │ │ └── usingtrafficportal.rst │ │ ├── traffic_router.rst │ │ ├── traffic_router │ │ │ └── images │ │ │ │ └── edge_tr_example.png │ │ ├── traffic_server.rst │ │ ├── traffic_stats.rst │ │ └── traffic_vault.rst │ ├── api │ │ ├── index.rst │ │ ├── v3 │ │ │ ├── about.rst │ │ │ ├── acme_accounts.rst │ │ │ ├── acme_accounts_provider_email.rst │ │ │ ├── api_capabilities.rst │ │ │ ├── asns.rst │ │ │ ├── asns_id.rst │ │ │ ├── cache_stats.rst │ │ │ ├── cachegroupparameters.rst │ │ │ ├── cachegroupparameters_id_parameterID.rst │ │ │ ├── cachegroups.rst │ │ │ ├── cachegroups_id.rst │ │ │ ├── cachegroups_id_deliveryservices.rst │ │ │ ├── cachegroups_id_parameters.rst │ │ │ ├── cachegroups_id_queue_update.rst │ │ │ ├── caches_stats.rst │ │ │ ├── capabilities.rst │ │ │ ├── cdns.rst │ │ │ ├── cdns_capacity.rst │ │ │ ├── cdns_dnsseckeys_generate.rst │ │ │ ├── cdns_dnsseckeys_refresh.rst │ │ │ ├── cdns_domains.rst │ │ │ ├── cdns_health.rst │ │ │ ├── cdns_id.rst │ │ │ ├── cdns_id_queue_update.rst │ │ │ ├── cdns_name_configs_monitoring.rst │ │ │ ├── cdns_name_dnsseckeys_ksk_generate.rst │ │ │ ├── cdns_name_federations.rst │ │ │ ├── cdns_name_federations_id.rst │ │ │ ├── cdns_name_health.rst │ │ │ ├── cdns_name_name.rst │ │ │ ├── cdns_name_name_dnsseckeys.rst │ │ │ ├── cdns_name_name_sslkeys.rst │ │ │ ├── cdns_name_snapshot.rst │ │ │ ├── cdns_name_snapshot_new.rst │ │ │ ├── cdns_routing.rst │ │ │ ├── consistenthash.rst │ │ │ ├── coordinates.rst │ │ │ ├── current_stats.rst │ │ │ ├── dbdump.rst │ │ │ ├── deliveryservice_request_comments.rst │ │ │ ├── deliveryservice_requests.rst │ │ │ ├── deliveryservice_requests_id_assign.rst │ │ │ ├── deliveryservice_requests_id_status.rst │ │ │ ├── deliveryservice_stats.rst │ │ │ ├── deliveryservices.rst │ │ │ ├── deliveryservices_id.rst │ │ │ ├── deliveryservices_id_capacity.rst │ │ │ ├── deliveryservices_id_health.rst │ │ │ ├── deliveryservices_id_regexes.rst │ │ │ ├── deliveryservices_id_regexes_rid.rst │ │ │ ├── deliveryservices_id_routing.rst │ │ │ ├── deliveryservices_id_safe.rst │ │ │ ├── deliveryservices_id_servers.rst │ │ │ ├── deliveryservices_id_servers_eligible.rst │ │ │ ├── deliveryservices_id_urlkeys.rst │ │ │ ├── deliveryservices_regexes.rst │ │ │ ├── deliveryservices_request.rst │ │ │ ├── deliveryservices_required_capabilities.rst │ │ │ ├── deliveryservices_sslkeys_add.rst │ │ │ ├── deliveryservices_sslkeys_generate.rst │ │ │ ├── deliveryservices_sslkeys_generate_letsencrypt.rst │ │ │ ├── deliveryservices_xmlid_servers.rst │ │ │ ├── deliveryservices_xmlid_urisignkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_sslkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_sslkeys_renew.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys_copyfromxmlid_copyfromxmlid.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys_generate.rst │ │ │ ├── deliveryserviceserver.rst │ │ │ ├── deliveryserviceserver_dsid_serverid.rst │ │ │ ├── divisions.rst │ │ │ ├── divisions_id.rst │ │ │ ├── federation_resolvers.rst │ │ │ ├── federations.rst │ │ │ ├── federations_all.rst │ │ │ ├── federations_id_deliveryservices.rst │ │ │ ├── federations_id_deliveryservices_id.rst │ │ │ ├── federations_id_federation_resolvers.rst │ │ │ ├── federations_id_users.rst │ │ │ ├── federations_id_users_id.rst │ │ │ ├── isos.rst │ │ │ ├── jobs.rst │ │ │ ├── letsencrypt_autorenew.rst │ │ │ ├── letsencrypt_dnsrecords.rst │ │ │ ├── logs.rst │ │ │ ├── logs_newcount.rst │ │ │ ├── origins.rst │ │ │ ├── osversions.rst │ │ │ ├── parameterprofile.rst │ │ │ ├── parameters.rst │ │ │ ├── parameters_id.rst │ │ │ ├── phys_locations.rst │ │ │ ├── phys_locations_id.rst │ │ │ ├── ping.rst │ │ │ ├── plugins.rst │ │ │ ├── profileparameter.rst │ │ │ ├── profileparameters.rst │ │ │ ├── profileparameters_profileID_parameterID.rst │ │ │ ├── profiles.rst │ │ │ ├── profiles_id.rst │ │ │ ├── profiles_id_export.rst │ │ │ ├── profiles_id_parameters.rst │ │ │ ├── profiles_import.rst │ │ │ ├── profiles_name_name_copy_copy.rst │ │ │ ├── profiles_name_name_parameters.rst │ │ │ ├── regions.rst │ │ │ ├── regions_id.rst │ │ │ ├── roles.rst │ │ │ ├── server_capabilities.rst │ │ │ ├── server_server_capabilities.rst │ │ │ ├── servercheck.rst │ │ │ ├── servercheck_extensions.rst │ │ │ ├── servercheck_extensions_id.rst │ │ │ ├── servers.rst │ │ │ ├── servers_details.rst │ │ │ ├── servers_hostname_update.rst │ │ │ ├── servers_hostname_update_status.rst │ │ │ ├── servers_id.rst │ │ │ ├── servers_id_deliveryservices.rst │ │ │ ├── servers_id_queue_update.rst │ │ │ ├── servers_id_status.rst │ │ │ ├── servicecategories.rst │ │ │ ├── snapshot.rst │ │ │ ├── staticdnsentries.rst │ │ │ ├── stats_summary.rst │ │ │ ├── statuses.rst │ │ │ ├── statuses_id.rst │ │ │ ├── steering.rst │ │ │ ├── steering_id_targets.rst │ │ │ ├── steering_id_targets_targetID.rst │ │ │ ├── system_info.rst │ │ │ ├── tenants.rst │ │ │ ├── tenants_id.rst │ │ │ ├── topologies.rst │ │ │ ├── topologies_name_queue_update.rst │ │ │ ├── types.rst │ │ │ ├── types_id.rst │ │ │ ├── user_current.rst │ │ │ ├── user_login.rst │ │ │ ├── user_login_oauth.rst │ │ │ ├── user_login_token.rst │ │ │ ├── user_logout.rst │ │ │ ├── user_reset_password.rst │ │ │ ├── users.rst │ │ │ ├── users_id.rst │ │ │ ├── users_register.rst │ │ │ ├── vault_bucket_bucket_key_key_values.rst │ │ │ └── vault_ping.rst │ │ ├── v4 │ │ │ ├── about.rst │ │ │ ├── acme_accounts.rst │ │ │ ├── acme_accounts_provider_email.rst │ │ │ ├── acme_accounts_providers.rst │ │ │ ├── acme_autorenew.rst │ │ │ ├── asns.rst │ │ │ ├── asns_id.rst │ │ │ ├── async_status.rst │ │ │ ├── cache_stats.rst │ │ │ ├── cachegroups.rst │ │ │ ├── cachegroups_id.rst │ │ │ ├── cachegroups_id_deliveryservices.rst │ │ │ ├── cachegroups_id_queue_update.rst │ │ │ ├── caches_stats.rst │ │ │ ├── cdn_locks.rst │ │ │ ├── cdn_notifications.rst │ │ │ ├── cdns.rst │ │ │ ├── cdns_capacity.rst │ │ │ ├── cdns_dnsseckeys_generate.rst │ │ │ ├── cdns_dnsseckeys_refresh.rst │ │ │ ├── cdns_domains.rst │ │ │ ├── cdns_health.rst │ │ │ ├── cdns_id.rst │ │ │ ├── cdns_id_queue_update.rst │ │ │ ├── cdns_name_configs_monitoring.rst │ │ │ ├── cdns_name_dnsseckeys_ksk_generate.rst │ │ │ ├── cdns_name_federations.rst │ │ │ ├── cdns_name_federations_id.rst │ │ │ ├── cdns_name_health.rst │ │ │ ├── cdns_name_name.rst │ │ │ ├── cdns_name_name_dnsseckeys.rst │ │ │ ├── cdns_name_name_sslkeys.rst │ │ │ ├── cdns_name_snapshot.rst │ │ │ ├── cdns_name_snapshot_new.rst │ │ │ ├── cdns_routing.rst │ │ │ ├── consistenthash.rst │ │ │ ├── coordinates.rst │ │ │ ├── current_stats.rst │ │ │ ├── dbdump.rst │ │ │ ├── deliveryservice_request_comments.rst │ │ │ ├── deliveryservice_requests.rst │ │ │ ├── deliveryservice_requests_id_assign.rst │ │ │ ├── deliveryservice_requests_id_status.rst │ │ │ ├── deliveryservice_stats.rst │ │ │ ├── deliveryservices.rst │ │ │ ├── deliveryservices_id.rst │ │ │ ├── deliveryservices_id_capacity.rst │ │ │ ├── deliveryservices_id_health.rst │ │ │ ├── deliveryservices_id_regexes.rst │ │ │ ├── deliveryservices_id_regexes_rid.rst │ │ │ ├── deliveryservices_id_routing.rst │ │ │ ├── deliveryservices_id_safe.rst │ │ │ ├── deliveryservices_id_servers.rst │ │ │ ├── deliveryservices_id_servers_eligible.rst │ │ │ ├── deliveryservices_id_urlkeys.rst │ │ │ ├── deliveryservices_regexes.rst │ │ │ ├── deliveryservices_required_capabilities.rst │ │ │ ├── deliveryservices_sslkeys_add.rst │ │ │ ├── deliveryservices_sslkeys_generate.rst │ │ │ ├── deliveryservices_sslkeys_generate_acme.rst │ │ │ ├── deliveryservices_sslkeys_generate_letsencrypt.rst │ │ │ ├── deliveryservices_xmlid_servers.rst │ │ │ ├── deliveryservices_xmlid_urisignkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_sslkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_sslkeys_renew.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys_copyfromxmlid_copyfromxmlid.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys_generate.rst │ │ │ ├── deliveryserviceserver.rst │ │ │ ├── deliveryserviceserver_dsid_serverid.rst │ │ │ ├── divisions.rst │ │ │ ├── divisions_id.rst │ │ │ ├── federation_resolvers.rst │ │ │ ├── federations.rst │ │ │ ├── federations_all.rst │ │ │ ├── federations_id_deliveryservices.rst │ │ │ ├── federations_id_deliveryservices_id.rst │ │ │ ├── federations_id_federation_resolvers.rst │ │ │ ├── federations_id_users.rst │ │ │ ├── federations_id_users_id.rst │ │ │ ├── isos.rst │ │ │ ├── jobs.rst │ │ │ ├── letsencrypt_autorenew.rst │ │ │ ├── letsencrypt_dnsrecords.rst │ │ │ ├── logs.rst │ │ │ ├── logs_newcount.rst │ │ │ ├── multiple_servers_capabilities.rst │ │ │ ├── oc_ci_configuration.rst │ │ │ ├── oc_ci_configuration_host.rst │ │ │ ├── oc_ci_configuration_request_id_approved.rst │ │ │ ├── oc_ci_configuration_requests.rst │ │ │ ├── oc_fci_advertisement.rst │ │ │ ├── origins.rst │ │ │ ├── osversions.rst │ │ │ ├── parameterprofile.rst │ │ │ ├── parameters.rst │ │ │ ├── parameters_id.rst │ │ │ ├── phys_locations.rst │ │ │ ├── phys_locations_id.rst │ │ │ ├── ping.rst │ │ │ ├── plugins.rst │ │ │ ├── profileparameter.rst │ │ │ ├── profileparameters.rst │ │ │ ├── profileparameters_profileID_parameterID.rst │ │ │ ├── profiles.rst │ │ │ ├── profiles_id.rst │ │ │ ├── profiles_id_export.rst │ │ │ ├── profiles_id_parameters.rst │ │ │ ├── profiles_import.rst │ │ │ ├── profiles_name_name_copy_copy.rst │ │ │ ├── profiles_name_name_parameters.rst │ │ │ ├── regions.rst │ │ │ ├── regions_id.rst │ │ │ ├── roles.rst │ │ │ ├── server_capabilities.rst │ │ │ ├── server_server_capabilities.rst │ │ │ ├── servercheck.rst │ │ │ ├── servercheck_extensions.rst │ │ │ ├── servercheck_extensions_id.rst │ │ │ ├── servers.rst │ │ │ ├── servers_hostname_update.rst │ │ │ ├── servers_hostname_update_status.rst │ │ │ ├── servers_id.rst │ │ │ ├── servers_id_deliveryservices.rst │ │ │ ├── servers_id_queue_update.rst │ │ │ ├── servers_id_status.rst │ │ │ ├── service_categories.rst │ │ │ ├── service_categories_name.rst │ │ │ ├── snapshot.rst │ │ │ ├── sslkey_expirations.rst │ │ │ ├── staticdnsentries.rst │ │ │ ├── stats_summary.rst │ │ │ ├── statuses.rst │ │ │ ├── statuses_id.rst │ │ │ ├── steering.rst │ │ │ ├── steering_id_targets.rst │ │ │ ├── steering_id_targets_targetID.rst │ │ │ ├── system_info.rst │ │ │ ├── tenants.rst │ │ │ ├── tenants_id.rst │ │ │ ├── topologies.rst │ │ │ ├── topologies_name_queue_update.rst │ │ │ ├── types.rst │ │ │ ├── types_id.rst │ │ │ ├── user_current.rst │ │ │ ├── user_login.rst │ │ │ ├── user_login_oauth.rst │ │ │ ├── user_login_token.rst │ │ │ ├── user_logout.rst │ │ │ ├── user_reset_password.rst │ │ │ ├── users.rst │ │ │ ├── users_id.rst │ │ │ ├── users_register.rst │ │ │ └── vault_ping.rst │ │ └── v5 │ │ │ ├── about.rst │ │ │ ├── acme_accounts.rst │ │ │ ├── acme_accounts_provider_email.rst │ │ │ ├── acme_accounts_providers.rst │ │ │ ├── acme_autorenew.rst │ │ │ ├── asns.rst │ │ │ ├── asns_id.rst │ │ │ ├── async_status.rst │ │ │ ├── cache_stats.rst │ │ │ ├── cachegroups.rst │ │ │ ├── cachegroups_id.rst │ │ │ ├── cachegroups_id_deliveryservices.rst │ │ │ ├── cachegroups_id_queue_update.rst │ │ │ ├── caches_stats.rst │ │ │ ├── cdn_locks.rst │ │ │ ├── cdn_notifications.rst │ │ │ ├── cdns.rst │ │ │ ├── cdns_capacity.rst │ │ │ ├── cdns_dnsseckeys_generate.rst │ │ │ ├── cdns_dnsseckeys_refresh.rst │ │ │ ├── cdns_domains.rst │ │ │ ├── cdns_health.rst │ │ │ ├── cdns_id.rst │ │ │ ├── cdns_id_queue_update.rst │ │ │ ├── cdns_name_configs_monitoring.rst │ │ │ ├── cdns_name_dnsseckeys_ksk_generate.rst │ │ │ ├── cdns_name_federations.rst │ │ │ ├── cdns_name_federations_id.rst │ │ │ ├── cdns_name_health.rst │ │ │ ├── cdns_name_name.rst │ │ │ ├── cdns_name_name_dnsseckeys.rst │ │ │ ├── cdns_name_name_sslkeys.rst │ │ │ ├── cdns_name_snapshot.rst │ │ │ ├── cdns_name_snapshot_new.rst │ │ │ ├── cdns_routing.rst │ │ │ ├── consistenthash.rst │ │ │ ├── coordinates.rst │ │ │ ├── current_stats.rst │ │ │ ├── dbdump.rst │ │ │ ├── deliveryservice_request_comments.rst │ │ │ ├── deliveryservice_requests.rst │ │ │ ├── deliveryservice_requests_id_assign.rst │ │ │ ├── deliveryservice_requests_id_status.rst │ │ │ ├── deliveryservice_stats.rst │ │ │ ├── deliveryservices.rst │ │ │ ├── deliveryservices_id.rst │ │ │ ├── deliveryservices_id_capacity.rst │ │ │ ├── deliveryservices_id_health.rst │ │ │ ├── deliveryservices_id_regexes.rst │ │ │ ├── deliveryservices_id_regexes_rid.rst │ │ │ ├── deliveryservices_id_routing.rst │ │ │ ├── deliveryservices_id_safe.rst │ │ │ ├── deliveryservices_id_servers.rst │ │ │ ├── deliveryservices_id_servers_eligible.rst │ │ │ ├── deliveryservices_id_urlkeys.rst │ │ │ ├── deliveryservices_regexes.rst │ │ │ ├── deliveryservices_sslkeys_add.rst │ │ │ ├── deliveryservices_sslkeys_generate.rst │ │ │ ├── deliveryservices_sslkeys_generate_acme.rst │ │ │ ├── deliveryservices_sslkeys_generate_letsencrypt.rst │ │ │ ├── deliveryservices_xmlid_servers.rst │ │ │ ├── deliveryservices_xmlid_urisignkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_sslkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_sslkeys_renew.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys_copyfromxmlid_copyfromxmlid.rst │ │ │ ├── deliveryservices_xmlid_xmlid_urlkeys_generate.rst │ │ │ ├── deliveryserviceserver.rst │ │ │ ├── deliveryserviceserver_dsid_serverid.rst │ │ │ ├── divisions.rst │ │ │ ├── divisions_id.rst │ │ │ ├── federation_resolvers.rst │ │ │ ├── federations.rst │ │ │ ├── federations_all.rst │ │ │ ├── federations_id_deliveryservices.rst │ │ │ ├── federations_id_deliveryservices_id.rst │ │ │ ├── federations_id_federation_resolvers.rst │ │ │ ├── federations_id_users.rst │ │ │ ├── federations_id_users_id.rst │ │ │ ├── isos.rst │ │ │ ├── jobs.rst │ │ │ ├── letsencrypt_autorenew.rst │ │ │ ├── letsencrypt_dnsrecords.rst │ │ │ ├── logs.rst │ │ │ ├── logs_newcount.rst │ │ │ ├── multiple_servers_capabilities.rst │ │ │ ├── oc_ci_configuration.rst │ │ │ ├── oc_ci_configuration_host.rst │ │ │ ├── oc_ci_configuration_request_id_approved.rst │ │ │ ├── oc_ci_configuration_requests.rst │ │ │ ├── oc_fci_advertisement.rst │ │ │ ├── origins.rst │ │ │ ├── osversions.rst │ │ │ ├── parameterprofile.rst │ │ │ ├── parameters.rst │ │ │ ├── parameters_id.rst │ │ │ ├── phys_locations.rst │ │ │ ├── phys_locations_id.rst │ │ │ ├── ping.rst │ │ │ ├── plugins.rst │ │ │ ├── profileparameter.rst │ │ │ ├── profileparameters.rst │ │ │ ├── profileparameters_profileID_parameterID.rst │ │ │ ├── profiles.rst │ │ │ ├── profiles_id.rst │ │ │ ├── profiles_id_export.rst │ │ │ ├── profiles_id_parameters.rst │ │ │ ├── profiles_import.rst │ │ │ ├── profiles_name_name_copy_copy.rst │ │ │ ├── profiles_name_name_parameters.rst │ │ │ ├── regions.rst │ │ │ ├── regions_id.rst │ │ │ ├── roles.rst │ │ │ ├── server_capabilities.rst │ │ │ ├── server_server_capabilities.rst │ │ │ ├── servercheck.rst │ │ │ ├── servercheck_extensions.rst │ │ │ ├── servercheck_extensions_id.rst │ │ │ ├── servers.rst │ │ │ ├── servers_hostname_update.rst │ │ │ ├── servers_hostname_update_status.rst │ │ │ ├── servers_id.rst │ │ │ ├── servers_id_deliveryservices.rst │ │ │ ├── servers_id_queue_update.rst │ │ │ ├── servers_id_status.rst │ │ │ ├── service_categories.rst │ │ │ ├── service_categories_name.rst │ │ │ ├── snapshot.rst │ │ │ ├── sslkey_expirations.rst │ │ │ ├── staticdnsentries.rst │ │ │ ├── stats_summary.rst │ │ │ ├── statuses.rst │ │ │ ├── statuses_id.rst │ │ │ ├── steering.rst │ │ │ ├── steering_id_targets.rst │ │ │ ├── steering_id_targets_targetID.rst │ │ │ ├── system_info.rst │ │ │ ├── tenants.rst │ │ │ ├── tenants_id.rst │ │ │ ├── topologies.rst │ │ │ ├── topologies_name_queue_update.rst │ │ │ ├── types.rst │ │ │ ├── types_id.rst │ │ │ ├── user_current.rst │ │ │ ├── user_login.rst │ │ │ ├── user_login_oauth.rst │ │ │ ├── user_login_token.rst │ │ │ ├── user_logout.rst │ │ │ ├── user_reset_password.rst │ │ │ ├── users.rst │ │ │ ├── users_id.rst │ │ │ ├── users_register.rst │ │ │ └── vault_ping.rst │ ├── basics │ │ ├── cache_revalidation.rst │ │ ├── content_delivery_networks.rst │ │ ├── fwda.png │ │ ├── http_11.rst │ │ └── index.rst │ ├── conf.py │ ├── development │ │ ├── api_guidelines.rst │ │ ├── building.rst │ │ ├── debugging.rst │ │ ├── documentation_guidelines.rst │ │ ├── environment_variables.rst │ │ ├── godocs.rst │ │ ├── index.rst │ │ ├── traffic_monitor.rst │ │ ├── traffic_monitor │ │ │ ├── Health_Pipeline.png │ │ │ ├── Health_Pipeline.svg │ │ │ ├── Monitor_Pipeline.png │ │ │ ├── Monitor_Pipeline.svg │ │ │ ├── Ops-Config_Pipeline.png │ │ │ ├── Ops-Config_Pipeline.svg │ │ │ ├── Peer_Pipeline.png │ │ │ ├── Peer_Pipeline.svg │ │ │ ├── Pipeline.png │ │ │ ├── Pipeline.svg │ │ │ ├── Stat_Pipeline.png │ │ │ ├── Stat_Pipeline.svg │ │ │ └── traffic_monitor_api.rst │ │ ├── traffic_ops.rst │ │ ├── traffic_portal.rst │ │ ├── traffic_router.rst │ │ ├── traffic_router │ │ │ └── traffic_router_api.rst │ │ └── traffic_stats.rst │ ├── docutils.conf │ ├── faq.rst │ ├── favicon.ico │ ├── glossary.rst │ ├── index.rst │ ├── overview │ │ ├── cache_groups.rst │ │ ├── delivery_service_requests.rst │ │ ├── delivery_services.rst │ │ ├── images │ │ │ ├── cg_hierarchy.png │ │ │ ├── cg_hierarchy.svg │ │ │ ├── topography.png │ │ │ ├── topography.svg │ │ │ ├── traffic.control.overview.png │ │ │ └── traffic.control.overview.svg │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── jobs.rst │ │ ├── profiles_and_parameters.rst │ │ ├── roles.rst │ │ ├── traffic_monitor.rst │ │ ├── traffic_ops.rst │ │ ├── traffic_portal.rst │ │ ├── traffic_router.rst │ │ ├── traffic_stats.rst │ │ └── traffic_vault.rst │ ├── requirements.txt │ └── tools │ │ ├── atstccfg.rst │ │ ├── index.rst │ │ ├── python_client.rst │ │ ├── toaccess.rst │ │ └── traffic_vault_util.rst └── wiki │ └── GitHub-Flow.png ├── experimental ├── certificate_auth │ ├── certs │ │ └── generate_certs.go │ └── example │ │ ├── client │ │ └── client.go │ │ └── server │ │ └── server.go ├── emulated_vault │ ├── README.md │ ├── etc │ │ └── systemd │ │ │ └── system │ │ │ └── emulated-vault.service │ └── opt │ │ └── emulated-vault │ │ ├── conf │ │ └── cfg.ini │ │ ├── storage │ │ ├── __init__.py │ │ ├── adapter_base.py │ │ └── fs_adapter.py │ │ ├── vault-debug │ │ ├── vault-server │ │ └── vault │ │ ├── __init__.py │ │ └── db.py ├── graphql.sample │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ ├── launch.pgmodeler.rc │ └── volumes │ │ ├── common │ │ └── .gitignore │ │ ├── pg-db │ │ └── .gitignore │ │ ├── pgadmin │ │ └── .gitignore │ │ └── postgraphile │ │ └── .gitignore ├── postgrest │ ├── Postgrest_Dockerfile │ └── Postgrest_Dockerfile_run.sh ├── traffic-portal │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── build │ │ ├── build_rpm.sh │ │ ├── config.json │ │ ├── etc │ │ │ ├── init.d │ │ │ │ └── traffic-portal │ │ │ └── logrotate.d │ │ │ │ └── traffic-portal │ │ ├── package-lock.json │ │ ├── package.json │ │ └── traffic_portal_v2.spec │ ├── cypress.config.ts │ ├── cypress │ │ ├── .gitignore │ │ ├── README.md │ │ ├── e2e │ │ │ ├── cacheGroups │ │ │ │ ├── asns │ │ │ │ │ ├── detail.cy.ts │ │ │ │ │ └── table.cy.ts │ │ │ │ ├── coordinates │ │ │ │ │ ├── detail.cy.ts │ │ │ │ │ └── table.cy.ts │ │ │ │ ├── detail.cy.ts │ │ │ │ ├── divisions │ │ │ │ │ ├── detail.cy.ts │ │ │ │ │ └── table.cy.ts │ │ │ │ ├── regions │ │ │ │ │ ├── detail.cy.ts │ │ │ │ │ └── table.cy.ts │ │ │ │ └── table.cy.ts │ │ │ ├── cdns │ │ │ │ └── detail.cy.ts │ │ │ ├── deliveryServices │ │ │ │ ├── ds.card.cy.ts │ │ │ │ ├── ds.details.cy.ts │ │ │ │ └── ds.invalidate.cy.ts │ │ │ ├── login.cy.ts │ │ │ ├── parameters │ │ │ │ ├── detail.cy.ts │ │ │ │ └── table.cy.ts │ │ │ ├── profiles │ │ │ │ ├── detail.cy.ts │ │ │ │ └── table.cy.ts │ │ │ ├── servers │ │ │ │ ├── capabilities │ │ │ │ │ ├── detail.cy.ts │ │ │ │ │ └── table.cy.ts │ │ │ │ ├── physical.location │ │ │ │ │ ├── detail.cy.ts │ │ │ │ │ └── table.cy.ts │ │ │ │ ├── servers.detail.cy.ts │ │ │ │ └── servers.table.cy.ts │ │ │ ├── statuses │ │ │ │ ├── detail.cy.ts │ │ │ │ └── table.cy.ts │ │ │ ├── types │ │ │ │ ├── detail.cy.ts │ │ │ │ └── table.cy.ts │ │ │ └── users │ │ │ │ ├── changeLogs.cy.ts │ │ │ │ ├── role │ │ │ │ ├── detail.cy.ts │ │ │ │ └── table.cy.ts │ │ │ │ ├── tenant │ │ │ │ ├── detail.cy.ts │ │ │ │ └── table.cy.ts │ │ │ │ └── users.cy.ts │ │ ├── fixtures │ │ │ ├── login.json │ │ │ └── to.config.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ ├── e2e.ts │ │ │ └── testing.data.ts │ │ └── tsconfig.json │ ├── documentation.styles │ │ └── style.css │ ├── karma.conf.js │ ├── middleware.ts │ ├── package-lock.json │ ├── package.json │ ├── proxy.json │ ├── server.config.ts │ ├── server.ts │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ ├── base-api.service.spec.ts │ │ │ │ ├── base-api.service.ts │ │ │ │ ├── cache-group.service.spec.ts │ │ │ │ ├── cache-group.service.ts │ │ │ │ ├── cdn.service.spec.ts │ │ │ │ ├── cdn.service.ts │ │ │ │ ├── change-logs.service.spec.ts │ │ │ │ ├── change-logs.service.ts │ │ │ │ ├── delivery-service.service.spec.ts │ │ │ │ ├── delivery-service.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── invalidation-job.service.spec.ts │ │ │ │ ├── invalidation-job.service.ts │ │ │ │ ├── misc-apis.service.spec.ts │ │ │ │ ├── misc-apis.service.ts │ │ │ │ ├── origin.service.spec.ts │ │ │ │ ├── origin.service.ts │ │ │ │ ├── physical-location.service.spec.ts │ │ │ │ ├── physical-location.service.ts │ │ │ │ ├── profile.service.spec.ts │ │ │ │ ├── profile.service.ts │ │ │ │ ├── server.service.spec.ts │ │ │ │ ├── server.service.ts │ │ │ │ ├── testing │ │ │ │ │ ├── cache-group.service.ts │ │ │ │ │ ├── cdn.service.ts │ │ │ │ │ ├── change-logs.service.ts │ │ │ │ │ ├── delivery-service.service.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── invalidation-job.service.ts │ │ │ │ │ ├── misc-apis.service.spec.ts │ │ │ │ │ ├── misc-apis.service.ts │ │ │ │ │ ├── origin.service.ts │ │ │ │ │ ├── physical-location.service.ts │ │ │ │ │ ├── profile.service.ts │ │ │ │ │ ├── server.service.ts │ │ │ │ │ ├── topology.service.ts │ │ │ │ │ ├── type.service.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── topology.service.spec.ts │ │ │ │ ├── topology.service.ts │ │ │ │ ├── type.service.spec.ts │ │ │ │ ├── type.service.ts │ │ │ │ ├── user.service.spec.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.server.module.ts │ │ │ ├── app.ui.module.ts │ │ │ ├── core │ │ │ │ ├── cache-groups │ │ │ │ │ ├── asns │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── asn-detail.component.html │ │ │ │ │ │ │ ├── asn-detail.component.scss │ │ │ │ │ │ │ ├── asn-detail.component.spec.ts │ │ │ │ │ │ │ └── asn-detail.component.ts │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── asns-table.component.html │ │ │ │ │ │ │ ├── asns-table.component.scss │ │ │ │ │ │ │ ├── asns-table.component.spec.ts │ │ │ │ │ │ │ └── asns-table.component.ts │ │ │ │ │ ├── cache-group-details │ │ │ │ │ │ ├── cache-group-details.component.html │ │ │ │ │ │ ├── cache-group-details.component.scss │ │ │ │ │ │ ├── cache-group-details.component.spec.ts │ │ │ │ │ │ └── cache-group-details.component.ts │ │ │ │ │ ├── cache-group-table │ │ │ │ │ │ ├── cache-group-table.component.html │ │ │ │ │ │ ├── cache-group-table.component.scss │ │ │ │ │ │ ├── cache-group-table.component.spec.ts │ │ │ │ │ │ └── cache-group-table.component.ts │ │ │ │ │ ├── coordinates │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── coordinate-detail.component.html │ │ │ │ │ │ │ ├── coordinate-detail.component.scss │ │ │ │ │ │ │ ├── coordinate-detail.component.spec.ts │ │ │ │ │ │ │ └── coordinate-detail.component.ts │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── coordinates-table.component.html │ │ │ │ │ │ │ ├── coordinates-table.component.scss │ │ │ │ │ │ │ ├── coordinates-table.component.spec.ts │ │ │ │ │ │ │ └── coordinates-table.component.ts │ │ │ │ │ ├── divisions │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── division-detail.component.html │ │ │ │ │ │ │ ├── division-detail.component.spec.ts │ │ │ │ │ │ │ └── division-detail.component.ts │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── divisions-table.component.html │ │ │ │ │ │ │ ├── divisions-table.component.scss │ │ │ │ │ │ │ ├── divisions-table.component.spec.ts │ │ │ │ │ │ │ └── divisions-table.component.ts │ │ │ │ │ └── regions │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── region-detail.component.html │ │ │ │ │ │ ├── region-detail.component.scss │ │ │ │ │ │ ├── region-detail.component.spec.ts │ │ │ │ │ │ └── region-detail.component.ts │ │ │ │ │ │ └── table │ │ │ │ │ │ ├── regions-table.component.html │ │ │ │ │ │ ├── regions-table.component.scss │ │ │ │ │ │ ├── regions-table.component.spec.ts │ │ │ │ │ │ └── regions-table.component.ts │ │ │ │ ├── cdns │ │ │ │ │ ├── cdn-detail │ │ │ │ │ │ ├── cdn-detail.component.html │ │ │ │ │ │ ├── cdn-detail.component.scss │ │ │ │ │ │ ├── cdn-detail.component.spec.ts │ │ │ │ │ │ └── cdn-detail.component.ts │ │ │ │ │ └── cdn-table │ │ │ │ │ │ ├── cdn-table.component.html │ │ │ │ │ │ ├── cdn-table.component.scss │ │ │ │ │ │ ├── cdn-table.component.spec.ts │ │ │ │ │ │ └── cdn-table.component.ts │ │ │ │ ├── certs │ │ │ │ │ ├── cert-author │ │ │ │ │ │ ├── cert-author.component.html │ │ │ │ │ │ ├── cert-author.component.scss │ │ │ │ │ │ ├── cert-author.component.spec.ts │ │ │ │ │ │ └── cert-author.component.ts │ │ │ │ │ ├── cert-detail │ │ │ │ │ │ ├── cert-detail.component.html │ │ │ │ │ │ ├── cert-detail.component.scss │ │ │ │ │ │ ├── cert-detail.component.spec.ts │ │ │ │ │ │ └── cert-detail.component.ts │ │ │ │ │ ├── cert-viewer │ │ │ │ │ │ ├── cert-viewer.component.html │ │ │ │ │ │ ├── cert-viewer.component.scss │ │ │ │ │ │ ├── cert-viewer.component.spec.ts │ │ │ │ │ │ └── cert-viewer.component.ts │ │ │ │ │ ├── cert.util.spec.ts │ │ │ │ │ ├── cert.util.ts │ │ │ │ │ └── certs.module.ts │ │ │ │ ├── change-logs │ │ │ │ │ ├── change-logs.component.html │ │ │ │ │ ├── change-logs.component.scss │ │ │ │ │ ├── change-logs.component.spec.ts │ │ │ │ │ ├── change-logs.component.ts │ │ │ │ │ └── last-days │ │ │ │ │ │ ├── last-days.component.html │ │ │ │ │ │ ├── last-days.component.scss │ │ │ │ │ │ ├── last-days.component.spec.ts │ │ │ │ │ │ └── last-days.component.ts │ │ │ │ ├── core.module.ts │ │ │ │ ├── currentuser │ │ │ │ │ ├── currentuser.component.html │ │ │ │ │ ├── currentuser.component.scss │ │ │ │ │ ├── currentuser.component.spec.ts │ │ │ │ │ ├── currentuser.component.ts │ │ │ │ │ └── update-password-dialog │ │ │ │ │ │ ├── update-password-dialog.component.html │ │ │ │ │ │ ├── update-password-dialog.component.scss │ │ │ │ │ │ ├── update-password-dialog.component.spec.ts │ │ │ │ │ │ └── update-password-dialog.component.ts │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ └── dashboard.component.ts │ │ │ │ ├── deliveryservice │ │ │ │ │ ├── deliveryservice.component.html │ │ │ │ │ ├── deliveryservice.component.scss │ │ │ │ │ ├── deliveryservice.component.spec.ts │ │ │ │ │ ├── deliveryservice.component.ts │ │ │ │ │ ├── ds-card │ │ │ │ │ │ ├── ds-card.component.html │ │ │ │ │ │ ├── ds-card.component.scss │ │ │ │ │ │ ├── ds-card.component.spec.ts │ │ │ │ │ │ └── ds-card.component.ts │ │ │ │ │ ├── invalidation-jobs │ │ │ │ │ │ ├── invalidation-jobs.component.html │ │ │ │ │ │ ├── invalidation-jobs.component.scss │ │ │ │ │ │ ├── invalidation-jobs.component.spec.ts │ │ │ │ │ │ ├── invalidation-jobs.component.ts │ │ │ │ │ │ └── new-invalidation-job-dialog │ │ │ │ │ │ │ ├── new-invalidation-job-dialog.component.html │ │ │ │ │ │ │ ├── new-invalidation-job-dialog.component.scss │ │ │ │ │ │ │ ├── new-invalidation-job-dialog.component.spec.ts │ │ │ │ │ │ │ └── new-invalidation-job-dialog.component.ts │ │ │ │ │ └── new-delivery-service │ │ │ │ │ │ ├── new-delivery-service.component.html │ │ │ │ │ │ ├── new-delivery-service.component.scss │ │ │ │ │ │ ├── new-delivery-service.component.spec.ts │ │ │ │ │ │ └── new-delivery-service.component.ts │ │ │ │ ├── misc │ │ │ │ │ └── isogeneration-form │ │ │ │ │ │ ├── isogeneration-form.component.html │ │ │ │ │ │ ├── isogeneration-form.component.scss │ │ │ │ │ │ ├── isogeneration-form.component.spec.ts │ │ │ │ │ │ └── isogeneration-form.component.ts │ │ │ │ ├── origins │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── origin-detail.component.html │ │ │ │ │ │ ├── origin-detail.component.scss │ │ │ │ │ │ ├── origin-detail.component.spec.ts │ │ │ │ │ │ └── origin-detail.component.ts │ │ │ │ │ └── table │ │ │ │ │ │ ├── origins-table.component.html │ │ │ │ │ │ ├── origins-table.component.scss │ │ │ │ │ │ ├── origins-table.component.spec.ts │ │ │ │ │ │ └── origins-table.component.ts │ │ │ │ ├── parameters │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── parameter-detail.component.html │ │ │ │ │ │ ├── parameter-detail.component.scss │ │ │ │ │ │ ├── parameter-detail.component.spec.ts │ │ │ │ │ │ └── parameter-detail.component.ts │ │ │ │ │ └── table │ │ │ │ │ │ ├── parameters-table.component.html │ │ │ │ │ │ ├── parameters-table.component.scss │ │ │ │ │ │ ├── parameters-table.component.spec.ts │ │ │ │ │ │ └── parameters-table.component.ts │ │ │ │ ├── profiles │ │ │ │ │ ├── profile-detail │ │ │ │ │ │ ├── profile-detail.component.html │ │ │ │ │ │ ├── profile-detail.component.scss │ │ │ │ │ │ ├── profile-detail.component.spec.ts │ │ │ │ │ │ └── profile-detail.component.ts │ │ │ │ │ └── profile-table │ │ │ │ │ │ ├── profile-table.component.html │ │ │ │ │ │ ├── profile-table.component.scss │ │ │ │ │ │ ├── profile-table.component.spec.ts │ │ │ │ │ │ └── profile-table.component.ts │ │ │ │ ├── servers │ │ │ │ │ ├── capabilities │ │ │ │ │ │ ├── capabilities.component.html │ │ │ │ │ │ ├── capabilities.component.scss │ │ │ │ │ │ ├── capabilities.component.spec.ts │ │ │ │ │ │ ├── capabilities.component.ts │ │ │ │ │ │ └── capability-details │ │ │ │ │ │ │ ├── capability-details.component.html │ │ │ │ │ │ │ ├── capability-details.component.scss │ │ │ │ │ │ │ ├── capability-details.component.spec.ts │ │ │ │ │ │ │ └── capability-details.component.ts │ │ │ │ │ ├── phys-loc │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── phys-loc-detail.component.html │ │ │ │ │ │ │ ├── phys-loc-detail.component.scss │ │ │ │ │ │ │ ├── phys-loc-detail.component.spec.ts │ │ │ │ │ │ │ └── phys-loc-detail.component.ts │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── phys-loc-table.component.html │ │ │ │ │ │ │ ├── phys-loc-table.component.scss │ │ │ │ │ │ │ ├── phys-loc-table.component.spec.ts │ │ │ │ │ │ │ └── phys-loc-table.component.ts │ │ │ │ │ ├── server-details │ │ │ │ │ │ ├── _server-details-theme.scss │ │ │ │ │ │ ├── server-details.component.html │ │ │ │ │ │ ├── server-details.component.scss │ │ │ │ │ │ ├── server-details.component.spec.ts │ │ │ │ │ │ └── server-details.component.ts │ │ │ │ │ ├── servers-table │ │ │ │ │ │ ├── servers-table.component.html │ │ │ │ │ │ ├── servers-table.component.scss │ │ │ │ │ │ ├── servers-table.component.spec.ts │ │ │ │ │ │ └── servers-table.component.ts │ │ │ │ │ └── update-status │ │ │ │ │ │ ├── update-status.component.html │ │ │ │ │ │ ├── update-status.component.scss │ │ │ │ │ │ ├── update-status.component.spec.ts │ │ │ │ │ │ └── update-status.component.ts │ │ │ │ ├── statuses │ │ │ │ │ ├── status-details │ │ │ │ │ │ ├── status-details.component.html │ │ │ │ │ │ ├── status-details.component.scss │ │ │ │ │ │ ├── status-details.component.spec.ts │ │ │ │ │ │ └── status-details.component.ts │ │ │ │ │ └── statuses-table │ │ │ │ │ │ ├── statuses-table.component.html │ │ │ │ │ │ ├── statuses-table.component.scss │ │ │ │ │ │ ├── statuses-table.component.spec.ts │ │ │ │ │ │ └── statuses-table.component.ts │ │ │ │ ├── topologies │ │ │ │ │ └── topology-details │ │ │ │ │ │ ├── topology-details.component.html │ │ │ │ │ │ ├── topology-details.component.scss │ │ │ │ │ │ ├── topology-details.component.spec.ts │ │ │ │ │ │ └── topology-details.component.ts │ │ │ │ ├── types │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── type-detail.component.html │ │ │ │ │ │ ├── type-detail.component.scss │ │ │ │ │ │ ├── type-detail.component.spec.ts │ │ │ │ │ │ └── type-detail.component.ts │ │ │ │ │ └── table │ │ │ │ │ │ ├── types-table.component.html │ │ │ │ │ │ ├── types-table.component.scss │ │ │ │ │ │ ├── types-table.component.spec.ts │ │ │ │ │ │ └── types-table.component.ts │ │ │ │ └── users │ │ │ │ │ ├── roles │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── role-detail.component.html │ │ │ │ │ │ ├── role-detail.component.spec.ts │ │ │ │ │ │ └── role-detail.component.ts │ │ │ │ │ └── table │ │ │ │ │ │ ├── roles-table.component.html │ │ │ │ │ │ ├── roles-table.component.scss │ │ │ │ │ │ ├── roles-table.component.spec.ts │ │ │ │ │ │ └── roles-table.component.ts │ │ │ │ │ ├── tenants │ │ │ │ │ ├── tenant-details │ │ │ │ │ │ ├── tenant-details.component.html │ │ │ │ │ │ ├── tenant-details.component.spec.ts │ │ │ │ │ │ └── tenant-details.component.ts │ │ │ │ │ ├── tenants.component.html │ │ │ │ │ ├── tenants.component.scss │ │ │ │ │ ├── tenants.component.spec.ts │ │ │ │ │ └── tenants.component.ts │ │ │ │ │ ├── user-details │ │ │ │ │ ├── user-details.component.html │ │ │ │ │ ├── user-details.component.scss │ │ │ │ │ ├── user-details.component.spec.ts │ │ │ │ │ └── user-details.component.ts │ │ │ │ │ ├── user-registration-dialog │ │ │ │ │ ├── user-registration-dialog.component.html │ │ │ │ │ ├── user-registration-dialog.component.scss │ │ │ │ │ ├── user-registration-dialog.component.spec.ts │ │ │ │ │ └── user-registration-dialog.component.ts │ │ │ │ │ ├── users.component.html │ │ │ │ │ ├── users.component.scss │ │ │ │ │ ├── users.component.spec.ts │ │ │ │ │ └── users.component.ts │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ └── custom.module.ts │ │ │ ├── guards │ │ │ │ ├── authenticated-guard.service.ts │ │ │ │ └── authenticated.guard.spec.ts │ │ │ ├── login │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.spec.ts │ │ │ │ ├── login.component.ts │ │ │ │ └── reset-password-dialog │ │ │ │ │ ├── reset-password-dialog.component.html │ │ │ │ │ ├── reset-password-dialog.component.scss │ │ │ │ │ ├── reset-password-dialog.component.spec.ts │ │ │ │ │ └── reset-password-dialog.component.ts │ │ │ ├── models │ │ │ │ ├── data.ts │ │ │ │ ├── index.ts │ │ │ │ └── tree-select.model.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert.component.html │ │ │ │ │ ├── alert.component.scss │ │ │ │ │ ├── alert.component.spec.ts │ │ │ │ │ ├── alert.component.ts │ │ │ │ │ └── alert.service.ts │ │ │ │ ├── charts │ │ │ │ │ ├── linechart.directive.spec.ts │ │ │ │ │ └── linechart.directive.ts │ │ │ │ ├── current-user │ │ │ │ │ ├── current-user.service.spec.ts │ │ │ │ │ ├── current-user.service.ts │ │ │ │ │ └── current-user.testing-service.spec.ts │ │ │ │ ├── dialogs │ │ │ │ │ ├── collection-choice-dialog │ │ │ │ │ │ ├── collection-choice-dialog.component.html │ │ │ │ │ │ ├── collection-choice-dialog.component.scss │ │ │ │ │ │ ├── collection-choice-dialog.component.spec.ts │ │ │ │ │ │ └── collection-choice-dialog.component.ts │ │ │ │ │ ├── decision-dialog │ │ │ │ │ │ ├── decision-dialog.component.html │ │ │ │ │ │ ├── decision-dialog.component.scss │ │ │ │ │ │ ├── decision-dialog.component.spec.ts │ │ │ │ │ │ └── decision-dialog.component.ts │ │ │ │ │ └── text-dialog │ │ │ │ │ │ ├── text-dialog.component.html │ │ │ │ │ │ ├── text-dialog.component.scss │ │ │ │ │ │ ├── text-dialog.component.spec.ts │ │ │ │ │ │ └── text-dialog.component.ts │ │ │ │ ├── file-utils.service.spec.ts │ │ │ │ ├── file-utils.service.ts │ │ │ │ ├── generic-table │ │ │ │ │ ├── download-options │ │ │ │ │ │ ├── download-options-dialog.component.html │ │ │ │ │ │ ├── download-options-dialog.component.scss │ │ │ │ │ │ ├── download-options-dialog.component.spec.ts │ │ │ │ │ │ └── download-options-dialog.component.ts │ │ │ │ │ ├── generic-table.component.html │ │ │ │ │ ├── generic-table.component.scss │ │ │ │ │ ├── generic-table.component.spec.ts │ │ │ │ │ └── generic-table.component.ts │ │ │ │ ├── import-json-txt │ │ │ │ │ ├── import-json-txt.component.html │ │ │ │ │ ├── import-json-txt.component.scss │ │ │ │ │ ├── import-json-txt.component.spec.ts │ │ │ │ │ └── import-json-txt.component.ts │ │ │ │ ├── interceptor │ │ │ │ │ ├── alerts.interceptor.ts │ │ │ │ │ ├── date-reviver.interceptor.spec.ts │ │ │ │ │ ├── date-reviver.interceptor.ts │ │ │ │ │ └── error.interceptor.ts │ │ │ │ ├── loading │ │ │ │ │ ├── loading.component.html │ │ │ │ │ ├── loading.component.scss │ │ │ │ │ ├── loading.component.spec.ts │ │ │ │ │ └── loading.component.ts │ │ │ │ ├── logging.service.spec.ts │ │ │ │ ├── logging.service.ts │ │ │ │ ├── navigation │ │ │ │ │ ├── navigation.service.spec.ts │ │ │ │ │ ├── navigation.service.ts │ │ │ │ │ ├── tp-header │ │ │ │ │ │ ├── tp-header.component.html │ │ │ │ │ │ ├── tp-header.component.scss │ │ │ │ │ │ ├── tp-header.component.spec.ts │ │ │ │ │ │ └── tp-header.component.ts │ │ │ │ │ └── tp-sidebar │ │ │ │ │ │ ├── _tp-sidebar-theme.scss │ │ │ │ │ │ ├── tp-sidebar.component.html │ │ │ │ │ │ ├── tp-sidebar.component.scss │ │ │ │ │ │ ├── tp-sidebar.component.spec.ts │ │ │ │ │ │ └── tp-sidebar.component.ts │ │ │ │ ├── obscured-text-input │ │ │ │ │ ├── obscured-text-input.component.html │ │ │ │ │ ├── obscured-text-input.component.scss │ │ │ │ │ ├── obscured-text-input.component.spec.ts │ │ │ │ │ └── obscured-text-input.component.ts │ │ │ │ ├── shared.module.ts │ │ │ │ ├── table-components │ │ │ │ │ ├── boolean-filter │ │ │ │ │ │ ├── boolean-filter.component.html │ │ │ │ │ │ ├── boolean-filter.component.scss │ │ │ │ │ │ ├── boolean-filter.component.spec.ts │ │ │ │ │ │ └── boolean-filter.component.ts │ │ │ │ │ ├── email-cell-renderer │ │ │ │ │ │ ├── email-cell-renderer.component.html │ │ │ │ │ │ ├── email-cell-renderer.component.scss │ │ │ │ │ │ ├── email-cell-renderer.component.spec.ts │ │ │ │ │ │ └── email-cell-renderer.component.ts │ │ │ │ │ ├── ssh-cell-renderer │ │ │ │ │ │ ├── ssh-cell-renderer.component.html │ │ │ │ │ │ ├── ssh-cell-renderer.component.scss │ │ │ │ │ │ ├── ssh-cell-renderer.component.spec.ts │ │ │ │ │ │ └── ssh-cell-renderer.component.ts │ │ │ │ │ ├── telephone-cell-renderer │ │ │ │ │ │ ├── telephone-cell-renderer.component.html │ │ │ │ │ │ ├── telephone-cell-renderer.component.scss │ │ │ │ │ │ ├── telephone-cell-renderer.component.spec.ts │ │ │ │ │ │ └── telephone-cell-renderer.component.ts │ │ │ │ │ └── update-cell-renderer │ │ │ │ │ │ ├── update-cell-renderer.component.html │ │ │ │ │ │ ├── update-cell-renderer.component.scss │ │ │ │ │ │ ├── update-cell-renderer.component.spec.ts │ │ │ │ │ │ └── update-cell-renderer.component.ts │ │ │ │ ├── theme-manager │ │ │ │ │ ├── theme-manager.service.spec.ts │ │ │ │ │ └── theme-manager.service.ts │ │ │ │ ├── tree-select │ │ │ │ │ ├── _tree-select-theme.scss │ │ │ │ │ ├── tree-select.component.html │ │ │ │ │ ├── tree-select.component.scss │ │ │ │ │ ├── tree-select.component.spec.ts │ │ │ │ │ └── tree-select.component.ts │ │ │ │ └── validation │ │ │ │ │ ├── customvalidity.directive.spec.ts │ │ │ │ │ └── customvalidity.directive.ts │ │ │ └── utils │ │ │ │ ├── date.spec.ts │ │ │ │ ├── date.ts │ │ │ │ ├── fuzzy.spec.ts │ │ │ │ ├── fuzzy.ts │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ip.ts │ │ │ │ ├── logging.spec.ts │ │ │ │ ├── logging.ts │ │ │ │ ├── order-by.spec.ts │ │ │ │ ├── order-by.ts │ │ │ │ ├── time.spec.ts │ │ │ │ └── time.ts │ │ ├── assets │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Roboto.300.ttf │ │ │ ├── Roboto.400.ttf │ │ │ ├── Roboto.500.ttf │ │ │ ├── edit.svg │ │ │ ├── invalidate.svg │ │ │ ├── logo.svg │ │ │ ├── manifest.webmanifest │ │ │ ├── user.svg │ │ │ └── view-details.svg │ │ ├── compress-webpack.config.js │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ ├── environment.ts │ │ │ └── environment.type.d.ts │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── styles │ │ │ ├── themes │ │ │ │ └── dark-default.scss │ │ │ └── vars.scss │ │ ├── test.ts │ │ └── theme.scss │ ├── tsconfig.app.json │ ├── tsconfig.doc.json │ ├── tsconfig.json │ ├── tsconfig.server.json │ └── tsconfig.spec.json ├── traffic_ops_auth │ ├── config.json │ ├── schema.sql │ └── traffic_ops_auth.go ├── traffic_router_golang │ ├── README.md │ ├── availableservers │ │ └── availableservers.go │ ├── cfg.json │ ├── cgsrch │ │ └── cgsrch.go │ ├── config │ │ └── config.go │ ├── coveragezone │ │ └── coveragezone.go │ ├── crconfig │ │ ├── crconfigths.go │ │ └── ths.go │ ├── crconfigdsservers │ │ └── crconfigdsservers.go │ ├── crconfigpoller │ │ └── crconfigpoller.go │ ├── crconfigregex │ │ ├── crconfigregex.go │ │ ├── crconfigregexths.go │ │ └── ths.go │ ├── crstates │ │ ├── crstatesths.go │ │ └── ths.go │ ├── crstatespoller │ │ └── crstatespoller.go │ ├── fetch │ │ ├── fetch.go │ │ ├── file.go │ │ ├── http.go │ │ └── roundrobin.go │ ├── httpsrvr │ │ └── httpsrvr.go │ ├── ipmap │ │ └── ipmap.go │ ├── nextcache │ │ ├── nextcache.go │ │ ├── nextcacheths.go │ │ └── ths.go │ ├── quadtree │ │ ├── quadtree.go │ │ └── quadtree_test.go │ ├── toutil │ │ └── toutil.go │ └── traffic_router_golang.go ├── url-rewriter-nginx │ └── Url_Rewriter_Dockerfile └── webfront │ ├── Dockerfile │ ├── README.md │ ├── rules.json │ ├── server.pem │ ├── simpleserver │ ├── server.pem │ └── simpleserver.go │ ├── startfakes.sh │ ├── webfront.config │ └── webfront.go ├── go.mod ├── go.sum ├── grove ├── .gitignore ├── README.md ├── VERSION ├── build │ ├── build_rpm.sh │ ├── grove.init │ ├── grove.logrotate │ └── grove.spec ├── cache │ ├── handler.go │ ├── responder.go │ └── retryinggetter.go ├── cachedata │ └── cachedata.go ├── cacheobj │ └── cacheobj.go ├── chash │ ├── atsconsistenthash.go │ ├── atsconsistenthash_test.go │ ├── atsorderedmap.go │ └── atsorderedmap_test.go ├── conf │ └── grove.cfg ├── config │ └── config.go ├── diskcache │ ├── diskcache.go │ └── multi.go ├── docker │ ├── Dockerfile │ └── docker-entrypoint.sh ├── grove.cfg ├── grove.go ├── grovetccfg │ ├── README.md │ ├── build │ │ ├── build_rpm.sh │ │ └── grovetccfg.spec │ ├── grove_profile.traffic_ops │ └── grovetccfg.go ├── icache │ └── icache.go ├── integration_test │ ├── Dockerfile │ ├── compare_gets.go │ ├── grove.cfg │ ├── remap-base-test.json │ ├── setup-and-run.sh │ └── tests │ │ └── plugins │ │ ├── modify_headers │ │ ├── remap.json │ │ └── test.sh │ │ └── range_req_handler │ │ ├── remap.json │ │ └── test.sh ├── lru │ └── lru.go ├── memcache │ └── memcache.go ├── plugin │ ├── README.md │ ├── README_http_cacheinspector.md │ ├── ats_log.go │ ├── ats_log_test.go │ ├── hello_context.go │ ├── hello_world.go │ ├── http_cacheinspector.go │ ├── http_callgc.go │ ├── http_memstats.go │ ├── http_stats.go │ ├── if_modified_since.go │ ├── modify_headers.go │ ├── modify_parent_request_headers.go │ ├── modify_response_headers_global.go │ ├── plugin.go │ ├── range_req_handler.go │ └── record_stats.go ├── remap.json ├── remap │ └── remap.go ├── remapdata │ └── remapdata.go ├── stat │ ├── stats.go │ └── stats_test.go ├── testorigin │ └── testorigin.go ├── thread │ ├── getter.go │ └── limiter.go ├── tiercache │ └── tiercache.go ├── version.go └── web │ ├── cachecontrol.go │ ├── cachecontrol_test.go │ ├── connmap.go │ ├── httptee.go │ ├── listener.go │ └── util.go ├── infrastructure ├── ansible │ ├── .gitignore │ ├── dynamic.inventory │ │ ├── README.md │ │ └── TO.py │ ├── influxdb_relay.yml │ ├── roles │ │ ├── ats │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── ats.yml │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ └── crontab.j2 │ │ ├── dataset_loader │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── analyze.ats.profiles.yml │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── files │ │ │ │ └── selection.set.py │ │ │ ├── filter_plugins │ │ │ │ └── dsloader.filter.util.py │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── parameter.diff.exclusions.yml │ │ │ ├── profile.parameter.conversion.md │ │ │ ├── tasks │ │ │ │ ├── assign_steering_targets.yml │ │ │ │ ├── cache_parameter_loader.yml │ │ │ │ ├── create_ds_profiles_params.yml │ │ │ │ ├── dataset_loader.yml │ │ │ │ ├── ds_loader.yml │ │ │ │ ├── federation_loader.yml │ │ │ │ ├── main.yml │ │ │ │ ├── parameter_loader.yml │ │ │ │ └── update_mso_servers.yml │ │ │ └── templates │ │ │ │ ├── cachegroup.j2 │ │ │ │ ├── cdn.j2 │ │ │ │ ├── deliveryservice.j2 │ │ │ │ ├── deliveryserviceserver.j2 │ │ │ │ ├── parameter.j2 │ │ │ │ ├── profile.j2 │ │ │ │ ├── server.j2 │ │ │ │ ├── steering_target.j2 │ │ │ │ └── user.j2 │ │ ├── fakeOrigin │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── molecule │ │ │ │ ├── default │ │ │ │ │ ├── converge.yml │ │ │ │ │ ├── molecule.yml │ │ │ │ │ └── verify.yml │ │ │ │ ├── driver.yml │ │ │ │ └── scenario.requirement.vars.yml │ │ │ ├── tasks │ │ │ │ ├── fakeOrigin.yml │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ └── config.json.j2 │ │ ├── grove │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── grove.yml │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ ├── crontab.j2 │ │ │ │ └── grove.cfg.j2 │ │ ├── influxdb_relay │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── influxdb_relay.yml │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ └── influx-relay.conf.j2 │ │ ├── molecule_shared │ │ │ ├── .ansible-lint │ │ │ ├── .gitignore │ │ │ ├── .yamllint │ │ │ ├── ansible.cfg │ │ │ ├── dependency.yml │ │ │ ├── prepare.yml │ │ │ └── regenerate.ssl.ca.yml │ │ ├── to_api │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ └── tasks │ │ │ │ ├── login.yml │ │ │ │ ├── main.yml │ │ │ │ ├── queue_updates.yml │ │ │ │ ├── set_server_status.yml │ │ │ │ └── snapshot.yml │ │ ├── traffic-monitor │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── main.yml │ │ │ │ └── traffic_monitor.yml │ │ │ └── templates │ │ │ │ ├── traffic_monitor.cfg.j2 │ │ │ │ ├── traffic_monitor.service.j2 │ │ │ │ └── traffic_ops.cfg.j2 │ │ ├── traffic-router │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── files │ │ │ │ └── traffic_router.logrotate │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── main.yml │ │ │ │ ├── purge.tomcat.6.yml │ │ │ │ └── traffic_router.yml │ │ │ └── templates │ │ │ │ ├── conf │ │ │ │ ├── cache.properties.j2 │ │ │ │ ├── dns.properties.j2 │ │ │ │ ├── http.properties.j2 │ │ │ │ ├── log4j2.xml.j2 │ │ │ │ ├── logging.properties.j2 │ │ │ │ ├── server.xml.j2 │ │ │ │ ├── startup.properties.j2 │ │ │ │ ├── traffic_monitor.properties.j2 │ │ │ │ └── traffic_ops.properties.j2 │ │ │ │ ├── crontab.j2 │ │ │ │ └── traffic_router.service.j2 │ │ ├── traffic-vault │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── main.yml │ │ │ │ └── traffic_vault.yml │ │ │ └── templates │ │ │ │ └── riak.conf.j2 │ │ ├── traffic_ops │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── main.yml │ │ │ │ └── traffic_ops.yml │ │ │ ├── templates │ │ │ │ ├── aes.key.j2 │ │ │ │ ├── cdn.conf.j2 │ │ │ │ ├── dbconf.yml.j2 │ │ │ │ ├── influxdb.conf.j2 │ │ │ │ ├── ldap.conf.j2 │ │ │ │ ├── postinstall.input.j2 │ │ │ │ ├── production │ │ │ │ │ ├── database.conf.j2 │ │ │ │ │ ├── log4perl.conf.j2 │ │ │ │ │ └── riak.conf.j2 │ │ │ │ └── trafficvault_dbconf.yml.j2 │ │ │ └── vars │ │ │ │ └── main.yml │ │ ├── traffic_opsdb │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── molecule │ │ │ │ ├── default │ │ │ │ │ ├── converge.yml │ │ │ │ │ ├── molecule.yml │ │ │ │ │ └── verify.yml │ │ │ │ ├── driver.yml │ │ │ │ ├── scenario.requirement.vars.yml │ │ │ │ └── triad │ │ │ │ │ ├── converge.yml │ │ │ │ │ ├── molecule.yml │ │ │ │ │ └── verify.yml │ │ │ ├── tasks │ │ │ │ ├── initialize_traffic_opsdb.yml │ │ │ │ ├── main.yml │ │ │ │ ├── replicas_traffic_opsdb.yml │ │ │ │ ├── standby_traffic_opsdb.yml │ │ │ │ └── traffic_opsdb.yml │ │ │ ├── templates │ │ │ │ ├── .pgpass.j2 │ │ │ │ ├── pg_hba.conf.j2 │ │ │ │ ├── postgresql.conf.j2 │ │ │ │ └── recovery.conf.j2 │ │ │ └── vars │ │ │ │ └── main.yml │ │ ├── traffic_portal │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── main.yml │ │ │ │ └── traffic_portal.yml │ │ │ └── templates │ │ │ │ ├── config.js.j2 │ │ │ │ └── traffic_portal_properties.json.j2 │ │ ├── traffic_portal_v2 │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── main.yml │ │ │ │ └── traffic_portal_v2.yml │ │ │ └── templates │ │ │ │ └── config_v2.json.j2 │ │ └── traffic_stats │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ └── main.yml │ │ │ ├── meta │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ ├── main.yml │ │ │ └── traffic_stats.yml │ │ │ └── templates │ │ │ ├── traffic_stats.cfg.j2 │ │ │ └── traffic_stats_seelog.xml.j2 │ ├── sample.driver.playbook.yml │ ├── sample.lab │ │ ├── .gitignore │ │ ├── Ansible.Dockerfile │ │ ├── ansible-playbook.sh │ │ ├── ansible.cfg │ │ ├── ansible │ │ │ ├── vars.yml │ │ │ └── vault.decrypted │ │ ├── docker-compose.yaml │ │ ├── gilt.yml │ │ ├── inventory │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── component.inventory │ │ │ └── provisioning.inventory │ │ └── manual.run.sh │ ├── steady-state.yml │ ├── templates │ │ └── inventory.template.j2 │ └── test.urls.yml ├── cdn-in-a-box │ ├── .env │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── ats-version.sh │ ├── cache │ │ ├── Dockerfile │ │ ├── init-debug-scripts.sh │ │ ├── run.sh │ │ ├── systemctl.sh │ │ ├── traffic_ops_ort.crontab │ │ └── traffic_ops_ort.logrotate │ ├── dns │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── insert-self-into-dns.sh │ │ ├── named.conf.local │ │ ├── named.conf.options │ │ ├── set-dns-update.sh │ │ ├── set-dns.sh │ │ ├── set-self-dns.sh │ │ ├── zone.ciab.test │ │ ├── zone.ip4.arpa │ │ └── zone.ip6.arpa │ ├── docker-compose.expose-ports.yml │ ├── docker-compose.readiness.yml │ ├── docker-compose.tr-load-tests.yml │ ├── docker-compose.traffic-ops-test.yml │ ├── docker-compose.traffic-portal-test.yml │ ├── docker-compose.varnish.yml │ ├── docker-compose.yml │ ├── edge │ │ └── init.d │ │ │ └── 99-run.sh │ ├── enroller │ │ ├── Dockerfile │ │ ├── enroller.go │ │ ├── run.sh │ │ └── server_template.json │ ├── health │ │ ├── Dockerfile │ │ ├── run.sh │ │ ├── tc-health-client-ReadMe.md │ │ ├── tc-health-client.json │ │ ├── tc-health-client.service │ │ └── to-creds │ ├── mid │ │ └── init.d │ │ │ └── 99-run.sh │ ├── optional │ │ ├── README.md │ │ ├── docker-compose.debugging.yml │ │ ├── docker-compose.grafana.expose-ports.yml │ │ ├── docker-compose.grafana.yml │ │ ├── docker-compose.socksproxy.expose-ports.yml │ │ ├── docker-compose.socksproxy.yml │ │ ├── docker-compose.static-subnet.yml │ │ ├── docker-compose.traffic-portal-v2-test.yml │ │ ├── docker-compose.traffic-portal-v2.expose-ports.yml │ │ ├── docker-compose.traffic-portal-v2.yml │ │ ├── docker-compose.traffic-vault.expose-ports.yml │ │ ├── docker-compose.traffic-vault.yml │ │ ├── docker-compose.vnc.expose-ports.yml │ │ ├── docker-compose.vnc.yml │ │ ├── docker-compose.vpn.expose-ports.yml │ │ ├── docker-compose.vpn.yml │ │ ├── grafana │ │ │ ├── Dockerfile │ │ │ ├── app.yaml.template │ │ │ ├── datasources.yml.template │ │ │ └── run-grafana.sh │ │ ├── socksproxy │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── run.sh │ │ │ └── sockd.conf │ │ ├── traffic_portal_v2 │ │ │ ├── Dockerfile │ │ │ └── run.sh │ │ ├── traffic_portal_v2_e2e_test │ │ │ ├── Dockerfile │ │ │ └── run.sh │ │ ├── traffic_vault │ │ │ ├── Dockerfile │ │ │ ├── poststart.d │ │ │ │ ├── 00-enable-security.sh │ │ │ │ ├── 01-add-search-group.sh │ │ │ │ └── 02-add-search-schema.sh │ │ │ ├── prestart.d │ │ │ │ └── 00-config.sh │ │ │ ├── run.sh │ │ │ └── sslkeys.xml │ │ ├── vnc │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── run.sh │ │ │ └── vnc_startup.sh │ │ └── vpn │ │ │ ├── Dockerfile │ │ │ ├── README.rst │ │ │ ├── run.sh │ │ │ ├── server.conf │ │ │ └── vars │ ├── origin │ │ ├── Dockerfile │ │ ├── content │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ └── tc_logo.svg │ │ ├── lighttpd.conf │ │ └── run.sh │ ├── readiness │ │ ├── Dockerfile │ │ └── run.sh │ ├── smtp │ │ ├── Dockerfile │ │ └── run.sh │ ├── static │ │ ├── Dockerfile │ │ ├── lighttpd.conf │ │ └── run.sh │ ├── traffic_monitor │ │ ├── Dockerfile │ │ ├── run.sh │ │ └── traffic_monitor.cfg │ ├── traffic_ops │ │ ├── Dockerfile │ │ ├── Dockerfile-db │ │ ├── Dockerfile.dockerignore │ │ ├── config.sh │ │ ├── generate-certs.sh │ │ ├── initdb.d │ │ │ ├── .gitignore │ │ │ ├── 01-turn-on-logging.sh │ │ │ ├── 10-create-roles.sh │ │ │ └── 90-load-dumps.sh │ │ ├── overrides │ │ │ └── .gitignore │ │ ├── run-db.sh │ │ ├── run-go.sh │ │ ├── set-to-ips-from-dns.sh │ │ ├── to-access.sh │ │ ├── trafficops-init.sh │ │ └── tv.conf │ ├── traffic_ops_data │ │ ├── cachegroups │ │ │ ├── 010-TRAFFIC_ANALYTICS.json │ │ │ ├── 020-TRAFFIC_OPS.json │ │ │ ├── 030-TRAFFIC_OPS_DB.json │ │ │ ├── 040-TRAFFIC_PORTAL.json │ │ │ ├── 050-TRAFFIC_STATS.json │ │ │ ├── 060-ciabMid-01.json │ │ │ ├── 070-ciabMid-02.json │ │ │ ├── 080-ciabEdge.json │ │ │ └── 085-ciabOrigin.json │ │ ├── cdns │ │ │ └── 010-CDN-in-a-Box.json │ │ ├── deliveryservice_servers │ │ │ └── 020-demo1.json │ │ ├── deliveryservices │ │ │ ├── 010-demo1.json │ │ │ └── 020-demo2.json │ │ ├── deliveryservices_required_capabilities │ │ │ └── 010-HDD-demo1.json │ │ ├── divisions │ │ │ ├── 010-north.json │ │ │ └── 020-usa.json │ │ ├── federations │ │ │ └── 010-foo.kabletown.net.json │ │ ├── phys_locations │ │ │ ├── 010-apachecon.json │ │ │ └── 020-phys_location.json │ │ ├── profiles │ │ │ ├── 000-GLOBAL.json │ │ │ ├── 010-ATS_EDGE_TIER_CACHE.json │ │ │ ├── 011-VARNISH_EDGE_TIER_CACHE.json │ │ │ ├── 020-ATS_MID_TIER_CACHE.json │ │ │ ├── 021-VARNISH_MID_TIER_CACHE.json │ │ │ ├── 030-BIND_ALL.json │ │ │ ├── 040-TRAFFIC_ROUTER.json │ │ │ ├── 050-ENROLLER_ALL.json │ │ │ ├── 070-RASCAL-Traffic_Monitor.json │ │ │ ├── 080-TRAFFIC_STATS.json │ │ │ ├── 081-INFLUXDB.json │ │ │ ├── 082-GRAFANA.json │ │ │ ├── 085-ORG_MSO.json │ │ │ └── 086-TC_HEALTH_CLIENT.json │ │ ├── regions │ │ │ ├── 010-dc.json │ │ │ └── 020-montreal.json │ │ ├── server_capabilities │ │ │ └── 010-HDD.json │ │ ├── server_server_capabilities │ │ │ ├── 010-HDD-edge.json │ │ │ ├── 010-HDD-mid-01.json │ │ │ └── 010-HDD-mid-02.json │ │ ├── tenants │ │ │ ├── 010-tenant01.json │ │ │ ├── 020-tenant02.json │ │ │ ├── 030-tenant11.json │ │ │ ├── 040-tenant12.json │ │ │ ├── 050-tenant21.json │ │ │ └── 060-tenant22.json │ │ ├── topologies │ │ │ └── 010-CDN_in_a_Box_Topology.json │ │ ├── types │ │ │ ├── 010-BIND.json │ │ │ ├── 020-ENROLLER.json │ │ │ ├── 050-GRAFANA.json │ │ │ └── 060-HEALTH.json │ │ └── users │ │ │ ├── 010-tmonitor.json │ │ │ ├── 020-tvault.json │ │ │ └── 030-tstats.json │ ├── traffic_ops_integration_test │ │ ├── Dockerfile │ │ ├── config.sh │ │ └── run.sh │ ├── traffic_portal │ │ ├── Dockerfile │ │ └── run.sh │ ├── traffic_portal_integration_test │ │ ├── Dockerfile │ │ └── run.sh │ ├── traffic_router │ │ ├── Dockerfile │ │ └── run.sh │ ├── traffic_router_load_test │ │ ├── Dockerfile │ │ └── run.sh │ ├── traffic_stats │ │ ├── Dockerfile │ │ ├── Dockerfile-influxdb │ │ ├── run-influxdb.sh │ │ └── run.sh │ ├── variables.env │ └── varnish │ │ ├── Dockerfile │ │ ├── run.sh │ │ ├── systemctl.sh │ │ ├── traffic_ops_ort.crontab │ │ └── vstats.go ├── docker │ └── build │ │ ├── Dockerfile-cache-config │ │ ├── Dockerfile-docs │ │ ├── Dockerfile-fakeOrigin │ │ ├── Dockerfile-grove │ │ ├── Dockerfile-grovetccfg │ │ ├── Dockerfile-source │ │ ├── Dockerfile-tc-health-client │ │ ├── Dockerfile-traffic_monitor │ │ ├── Dockerfile-traffic_ops │ │ ├── Dockerfile-traffic_portal │ │ ├── Dockerfile-traffic_portal_v2 │ │ ├── Dockerfile-traffic_router │ │ ├── Dockerfile-traffic_stats │ │ ├── Dockerfile-tsb │ │ ├── README.md │ │ ├── docker-compose-opt.yml │ │ ├── docker-compose-opt.yml.ats │ │ └── docker-compose.yml └── test │ └── integration │ ├── README.md │ ├── docker-integration-tests │ └── single-traffic-ops-query.sh │ └── run-docker-integration-test.sh ├── lib ├── go-atscfg │ ├── astatsdotconfig.go │ ├── atscfg.go │ ├── atscfg_test.go │ ├── atsdotrules.go │ ├── atsdotrules_test.go │ ├── bgfetchdotconfig.go │ ├── bgfetchdotconfig_test.go │ ├── cachedotconfig.go │ ├── cachedotconfig_test.go │ ├── chkconfig.go │ ├── chkconfig_test.go │ ├── doc.go │ ├── dropqstringdotconfig.go │ ├── dropqstringdotconfig_test.go │ ├── facts.go │ ├── facts_test.go │ ├── headerrewritedotconfig.go │ ├── headerrewritedotconfig_test.go │ ├── hostingdotconfig.go │ ├── hostingdotconfig_test.go │ ├── ipallowdotconfig.go │ ├── ipallowdotconfig_test.go │ ├── ipallowdotyaml.go │ ├── ipallowdotyaml_test.go │ ├── loggingdotconfig.go │ ├── loggingdotconfig_test.go │ ├── loggingdotyaml.go │ ├── loggingdotyaml_test.go │ ├── logsdotxml.go │ ├── logsdotxml_test.go │ ├── meta.go │ ├── meta_test.go │ ├── packages.go │ ├── packages_test.go │ ├── parentabstraction.go │ ├── parentdotconfig.go │ ├── parentdotconfig_test.go │ ├── plugindotconfig.go │ ├── plugindotconfig_test.go │ ├── recordsdotconfig.go │ ├── recordsdotconfig_test.go │ ├── regexremapdotconfig.go │ ├── regexremapdotconfig_test.go │ ├── regexrevalidatedotconfig.go │ ├── regexrevalidatedotconfig_test.go │ ├── remapdotconfig.go │ ├── remapdotconfig_test.go │ ├── servercachedotconfig.go │ ├── servercachedotconfig_test.go │ ├── serverunknown.go │ ├── serverunknown_test.go │ ├── setdscpdotconfig.go │ ├── setdscpdotconfig_test.go │ ├── snidotyaml.go │ ├── snidotyaml_test.go │ ├── sslmulticertdotconfig.go │ ├── sslmulticertdotconfig_test.go │ ├── sslservernamedotyaml.go │ ├── sslservernamedotyaml_test.go │ ├── storagedotconfig.go │ ├── storagedotconfig_test.go │ ├── strategiesdotconfig.go │ ├── strategiesdotconfig_test.go │ ├── sysctldotconf.go │ ├── sysctldotconf_test.go │ ├── urisigningconfig.go │ ├── urisigningconfig_test.go │ ├── urlsigconfig.go │ ├── urlsigconfig_test.go │ ├── volumedotconfig.go │ └── volumedotconfig_test.go ├── go-llog │ └── llog.go ├── go-log │ ├── log.go │ ├── log_test.go │ ├── standardlogger.go │ ├── standardlogger_test.go │ ├── test.logger.go │ └── test.logger_test.go ├── go-nagios │ └── nagios.go ├── go-rfc │ ├── cachecontrol.go │ ├── cachecontrol_test.go │ ├── caching.go │ ├── caching_test.go │ ├── email.go │ ├── http.go │ ├── http_test.go │ ├── jwt.go │ ├── ldap │ │ └── ldap.go │ ├── mimetype.go │ ├── mimetype_test.go │ ├── rfc.go │ └── url.go ├── go-tc │ ├── acme_account.go │ ├── alerts.go │ ├── alerts_test.go │ ├── api_capabilities.go │ ├── asns.go │ ├── async_status.go │ ├── cachegroup_parameter_associations.go │ ├── cachegroup_parameters.go │ ├── cachegroups.go │ ├── capabilities.go │ ├── cdn_lock.go │ ├── cdn_notification.go │ ├── cdns.go │ ├── cdns_dnssec.go │ ├── constants.go │ ├── coordinates.go │ ├── crconfig.go │ ├── crsstats.go │ ├── crstates.go │ ├── deliveryservice_regexes.go │ ├── deliveryservice_request_comments.go │ ├── deliveryservice_requests.go │ ├── deliveryservice_requests_test.go │ ├── deliveryservice_servers.go │ ├── deliveryservice_ssl_keys.go │ ├── deliveryservices.go │ ├── deliveryservices_required_capabilities.go │ ├── deliveryservices_test.go │ ├── deliveryservicesslkeys_test.go │ ├── divisions.go │ ├── doc.go │ ├── domains.go │ ├── enum.go │ ├── enum_test.go │ ├── federation.go │ ├── federation_federation_resolvers.go │ ├── federation_resolver.go │ ├── federation_resolver_test.go │ ├── hwinfos.go │ ├── invalidationjobs.go │ ├── invalidationjobs_test.go │ ├── iso.go │ ├── jobs.go │ ├── log.go │ ├── nullable_test.go │ ├── origins.go │ ├── parameters.go │ ├── physlocations.go │ ├── plugins.go │ ├── profile_parameters.go │ ├── profiles.go │ ├── regions.go │ ├── roles.go │ ├── roles_test.go │ ├── server_capabilities.go │ ├── server_server_capability.go │ ├── servercheckextensions.go │ ├── serverchecks.go │ ├── servers.go │ ├── servers_test.go │ ├── service_category.go │ ├── sslkey_expirations.go │ ├── staticdnsentry.go │ ├── stats_summary.go │ ├── statuses.go │ ├── steering.go │ ├── steeringtarget.go │ ├── system_info.go │ ├── tenants.go │ ├── time.go │ ├── time_test.go │ ├── toextension.go │ ├── topologies.go │ ├── totest │ │ ├── asns.go │ │ ├── cachegroup_deliveryservices.go │ │ ├── cachegroups.go │ │ ├── cdns.go │ │ ├── coordinates.go │ │ ├── deliveryservice_regexes.go │ │ ├── deliveryservice_request_comments.go │ │ ├── deliveryservice_requests.go │ │ ├── deliveryservices.go │ │ ├── deliveryservices_required_capabilities.go │ │ ├── divisions.go │ │ ├── federation_resolvers.go │ │ ├── federation_users.go │ │ ├── federations.go │ │ ├── jobs.go │ │ ├── origins.go │ │ ├── parameters.go │ │ ├── physlocations.go │ │ ├── profile_parameters.go │ │ ├── profiles.go │ │ ├── regions.go │ │ ├── roles.go │ │ ├── server_capabilities.go │ │ ├── server_check_extensions.go │ │ ├── server_checks.go │ │ ├── server_server_capabilities.go │ │ ├── servers.go │ │ ├── service_categories.go │ │ ├── static_dns_entries.go │ │ ├── statuses.go │ │ ├── steering_targets.go │ │ ├── tenants.go │ │ ├── topologies.go │ │ ├── traffic_control.go │ │ ├── types.go │ │ └── users.go │ ├── totestv4 │ │ ├── asns.go │ │ ├── cachegroup_deliveryservices.go │ │ ├── cachegroups.go │ │ ├── cdns.go │ │ ├── coordinates.go │ │ ├── deliveryservice_regexes.go │ │ ├── deliveryservice_request_comments.go │ │ ├── deliveryservice_requests.go │ │ ├── deliveryservices.go │ │ ├── deliveryservices_required_capabilities.go │ │ ├── divisions.go │ │ ├── federation_resolvers.go │ │ ├── federation_users.go │ │ ├── federations.go │ │ ├── jobs.go │ │ ├── origins.go │ │ ├── parameters.go │ │ ├── physlocations.go │ │ ├── profile_parameters.go │ │ ├── profiles.go │ │ ├── regions.go │ │ ├── roles.go │ │ ├── server_capabilities.go │ │ ├── server_check_extensions.go │ │ ├── server_checks.go │ │ ├── server_server_capabilities.go │ │ ├── servers.go │ │ ├── service_categories.go │ │ ├── static_dns_entries.go │ │ ├── statuses.go │ │ ├── steering_targets.go │ │ ├── tenants.go │ │ ├── topologies.go │ │ ├── traffic_control.go │ │ ├── types.go │ │ └── users.go │ ├── tovalidate │ │ ├── db.go │ │ ├── doc.go │ │ ├── rules.go │ │ ├── validate.go │ │ └── validate_test.go │ ├── traffic_monitor.go │ ├── traffic_monitor_test.go │ ├── traffic_router.go │ ├── traffic_router_test.go │ ├── traffic_stats.go │ ├── types.go │ ├── users.go │ └── users_test.go ├── go-util │ ├── assert │ │ └── assertions.go │ ├── backoff.go │ ├── backoff_test.go │ ├── collections.go │ ├── collections_test.go │ ├── doc.go │ ├── encrypt.go │ ├── encrypt_test.go │ ├── error.go │ ├── error_test.go │ ├── http.go │ ├── http_test.go │ ├── join.go │ ├── join_test.go │ ├── net.go │ ├── net_test.go │ ├── num.go │ ├── num_test.go │ ├── ptr.go │ ├── ptr_test.go │ ├── str.go │ ├── str_test.go │ └── util.go └── varnishcfg │ ├── access_control.go │ ├── access_control_test.go │ ├── backends.go │ ├── backends_test.go │ ├── cache_control.go │ ├── cache_control_test.go │ ├── hitch.go │ ├── hitch_test.go │ ├── vcl.go │ └── vclbuilder.go ├── licenses ├── AL2-jsonformatter ├── BSD-angular-chartjs ├── BSD-go ├── BSD-jsdiff ├── CC0 ├── CC_A_SA_4-maxmind ├── ISC-netpacket_ipv6 ├── MIT-ColReorder ├── MIT-SecLists ├── MIT-angular_loading_bar ├── MIT-angular_moment_picker ├── MIT-angular_ui_tree ├── MIT-bootstrap_progressbar ├── MIT-bootstrap_vertical_tabs ├── MIT-buttons-html5 ├── MIT-chartjs ├── MIT-cropper ├── MIT-datatables ├── MIT-datatables-buttons ├── MIT-downloadjs ├── MIT-fast-json-patch ├── MIT-fontawesome ├── MIT-gentelella ├── MIT-jquery ├── MIT-momentjs ├── MIT-normalize ├── MIT-underscore └── SIL-1.1 ├── misc ├── changelog.pl ├── git │ ├── README.md │ ├── pre-commit │ └── pre-commit-hooks │ │ ├── 01-gofmt │ │ ├── 02-govet │ │ ├── 03-golangci-lint │ │ └── 99-gotest ├── kickstart_create_network_line.py ├── kickstart_drive_config.sh ├── logos │ ├── ATC-PNG-FULL-BLACK-LARGE.png │ ├── ATC-PNG-FULL-BLACK.png │ ├── ATC-PNG-FULL-WHITE-LARGE.png │ ├── ATC-PNG-FULL-WHITE.png │ ├── ATC-PNG-LARGE.png │ ├── ATC-PNG.png │ ├── ATC-SVG-FULL-BLACK.svg │ ├── ATC-SVG-FULL-WHITE.svg │ ├── ATC-SVG-FULL.sketch │ ├── ATC-SVG.sketch │ ├── ATC-SVG.svg │ └── page_logos │ │ ├── trafficLogoFactory.psd │ │ ├── traffic_monitor_logo.png │ │ ├── traffic_operations_logo.png │ │ ├── traffic_portal.png │ │ ├── traffic_router_logo.png │ │ ├── traffic_stats_logo.png │ │ └── traffic_stats_logo_red.png ├── parse_diffs.py └── release.pl ├── pkg ├── pkg.ps1 ├── tc-health-client ├── .gitignore ├── README.md ├── build │ ├── build_rpm.sh │ ├── tc-health-client.logrotate │ └── trafficcontrol-health-client.spec ├── config │ ├── config.go │ ├── config_test.go │ └── test_files │ │ ├── credentials │ │ └── tc-health-client.json ├── sar │ ├── ephemeralportholder.go │ ├── multisar.go │ ├── sar.go │ ├── sar_test.go │ ├── tcphdr.go │ ├── tcphdrnative.go │ └── util.go ├── tc-health-client.go ├── tc-health-client.json ├── tc-health-client.service ├── testing │ ├── docker │ │ ├── .env │ │ ├── db_init │ │ │ ├── Dockerfile │ │ │ └── dbInit.sh │ │ ├── docker-compose.yml │ │ ├── health-check-test │ │ │ ├── Dockerfile │ │ │ ├── parent.config │ │ │ ├── run.sh │ │ │ ├── strategies.yaml │ │ │ ├── systemctl.sh │ │ │ └── tc-health-client.json │ │ ├── traffic_ops │ │ │ ├── Dockerfile │ │ │ ├── profile.origin.traffic_ops │ │ │ └── run.sh │ │ └── variables.env │ └── tests │ │ ├── conf │ │ └── docker-edge-cache.conf │ │ ├── hcutil │ │ └── hcutil.go │ │ ├── health-client-main_test.go │ │ └── health-client-startup_test.go ├── tmagent │ ├── markdownservice.go │ ├── parenthealth.go │ ├── parenthealthservice.go │ ├── parentservicehealth.go │ ├── test_files │ │ ├── bin │ │ │ └── traffic_ctl │ │ ├── etc │ │ │ ├── parent.config │ │ │ └── strategies.yaml │ │ └── tc-health-client.json │ ├── tmagent.go │ ├── tmagent_test.go │ └── tmhealthservice.go └── util │ ├── util.go │ └── util_test.go ├── test ├── astats_sim │ ├── Readme.md │ ├── _astats │ ├── _astats_static │ └── ats_sim.js ├── fakeOrigin │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── build │ │ ├── build_rpm.sh │ │ ├── config.json │ │ ├── fakeOrigin.init │ │ ├── fakeOrigin.logrotate │ │ └── fakeOrigin.spec │ ├── docker-compose.yml │ ├── docs │ │ ├── Configuration.md │ │ ├── Endpoint.Examples.md │ │ └── Testing.md │ ├── dtp │ │ ├── bin.go │ │ ├── config.go │ │ ├── dtp.go │ │ ├── fwd_delay.go │ │ ├── fwd_posevt.go │ │ ├── handler.go │ │ ├── num.go │ │ ├── plugutils.go │ │ ├── text.go │ │ ├── type_bin.go │ │ ├── type_binf.go │ │ ├── type_gen3s.go │ │ ├── type_hijack.go │ │ ├── type_tex.go │ │ └── type_txt.go │ ├── endpoint │ │ ├── endpoint.go │ │ ├── endpoint_enums.go │ │ └── type_jsonenums.go │ ├── example │ │ ├── crossdomain.xml │ │ └── video │ │ │ ├── LICENSE │ │ │ └── kelloggs.mp4 │ ├── fakeOrigin.go │ ├── httpService │ │ ├── filter.go │ │ ├── handler.go │ │ ├── httpService.go │ │ ├── rangerequest.go │ │ └── ssl.keygen.go │ ├── m3u8 │ │ └── m3u8.go │ ├── shard.sh │ ├── transcode │ │ └── transcode.go │ └── version.go └── router │ ├── Readme.md │ ├── client │ └── client.go │ ├── css │ └── loadtest.css │ ├── data │ └── httpresult.go │ ├── dnssec │ ├── Readme.md │ ├── dnssec.go │ ├── dnssec_suite_test.go │ └── dnssec_test.go │ ├── index.html │ ├── js │ └── load-test.jsx │ ├── load │ └── load.go │ └── server │ └── server.go ├── tools ├── .gitignore ├── fill_expiration_and_provider │ ├── fill_expiration_and_provider.go │ └── fill_expiration_and_provider_conf.json ├── golang │ ├── .env │ ├── Dockerfile │ ├── Dockerfile.dockerignore │ ├── docker-compose.yml │ └── unit-tests.sh └── traffic_vault_util.go ├── traffic_control └── clients │ ├── README.md │ ├── java │ ├── .gitignore │ ├── CONTRIBUTE.md │ ├── README.md │ ├── common │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── trafficcontrol │ │ │ └── client │ │ │ ├── RestApiSession.java │ │ │ └── exception │ │ │ ├── InvalidJsonException.java │ │ │ ├── LoginException.java │ │ │ ├── OperationException.java │ │ │ └── TrafficControlException.java │ ├── pom.xml │ └── trafficops │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── trafficcontrol │ │ │ └── client │ │ │ └── trafficops │ │ │ ├── ResponseFuture.java │ │ │ ├── TOSession.java │ │ │ └── models │ │ │ ├── Alert.java │ │ │ └── Response.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── trafficcontrol │ │ │ └── client │ │ │ └── trafficops │ │ │ └── TOSessionTest.java │ │ └── resources │ │ └── logback-test.xml │ └── python │ ├── .gitignore │ ├── README.rst │ ├── pylint.rc │ ├── setup.py │ ├── to_access │ └── __init__.py │ └── trafficops │ ├── __init__.py │ ├── __version__.py │ ├── restapi.py │ ├── tosession.py │ └── utils.py ├── traffic_monitor ├── .gitignore ├── README.md ├── build │ ├── build_rpm.sh │ ├── traffic_monitor.init │ ├── traffic_monitor.logrotate │ └── traffic_monitor.spec ├── cache │ ├── astats-dsnames.go │ ├── astats.csv │ ├── astats.go │ ├── astats.json │ ├── astats_csv.go │ ├── astats_test.go │ ├── cache.go │ ├── cache_test.go │ ├── data.go │ ├── data_test.go │ ├── noop.go │ ├── statistics.go │ ├── statistics_test.go │ ├── stats_over_http.csv │ ├── stats_over_http.go │ ├── stats_over_http.json │ ├── stats_over_http_test.go │ ├── stats_types.go │ ├── vstats.go │ └── vstats_test.go ├── conf │ ├── traffic_monitor.cfg │ └── traffic_ops.cfg ├── config │ ├── config.go │ ├── config_test.go │ └── staticappdata.go ├── datareq │ ├── bandwidth.go │ ├── bandwidthcapacity.go │ ├── cacheavailablecount.go │ ├── cachecount.go │ ├── cachedowncount.go │ ├── cachestat.go │ ├── cachestate.go │ ├── cachestate_test.go │ ├── cachestatfilter.go │ ├── configdoc.go │ ├── crconfig.go │ ├── crconfighist.go │ ├── crstate.go │ ├── datareq.go │ ├── datareq_test.go │ ├── dsstat.go │ ├── dsstatfilter.go │ ├── eventlog.go │ ├── monitorconfig.go │ ├── peerstate.go │ ├── peerstatefilter.go │ ├── stat.go │ ├── statsummary.go │ ├── trafficopsuri.go │ └── version.go ├── ds │ ├── stat.go │ └── stat_test.go ├── dsdata │ └── stat.go ├── handler │ └── handler.go ├── health │ ├── cache.go │ ├── cache_test.go │ └── event.go ├── manager │ ├── distributedpeer.go │ ├── health.go │ ├── manager.go │ ├── monitorconfig.go │ ├── monitorconfig_test.go │ ├── opsconfig.go │ ├── peer.go │ ├── stat.go │ ├── statecombiner.go │ └── statecombiner_test.go ├── peer │ ├── crstates.go │ ├── crstates.json │ ├── peer.go │ └── peer_test.go ├── poller │ ├── cache.go │ ├── monitorconfig.go │ ├── peer.go │ ├── poller_type_http.go │ ├── poller_type_noop.go │ └── poller_types.go ├── srvhttp │ └── srvhttp.go ├── static │ ├── index.html │ ├── script.js │ └── style.css ├── tests │ ├── .env │ ├── Dockerfile-golangtest │ ├── _integration │ │ ├── .env │ │ ├── Dockerfile │ │ ├── Dockerfile.dockerignore │ │ ├── Dockerfile_run.sh │ │ ├── README.md │ │ ├── build_tests.sh │ │ ├── client_test.go │ │ ├── config │ │ │ └── config.go │ │ ├── docker-compose.yml │ │ ├── kbps_test.go │ │ ├── monitoring.json │ │ ├── servers.json │ │ ├── snapshot.json │ │ ├── tm │ │ │ ├── Dockerfile │ │ │ └── Dockerfile_run.sh │ │ ├── traffic-monitor-test.conf │ │ ├── traffic_monitor_test.go │ │ └── variables.env │ └── docker-compose.yml ├── threadsafe │ ├── cacheavailablestatus.go │ ├── cachemaxkbpses.go │ ├── dsstats.go │ ├── durationmap.go │ ├── lastkbpsstats.go │ ├── monitorconfig.go │ ├── opsconfig.go │ ├── polledcaches.go │ ├── resulthistory.go │ ├── resultstathistory.go │ ├── resultstathistory_test.go │ └── uint.go ├── tmcheck │ ├── dsstats.go │ ├── offlinestates.go │ ├── peerpoller.go │ ├── queryinterval.go │ └── tmcheck.go ├── tmclient │ └── tmclient.go ├── todata │ ├── todata.go │ └── todata_test.go ├── tools │ ├── nagios-validate-deliveryservices │ │ └── nagios-validate-deliveryservices.go │ ├── nagios-validate-offline │ │ └── nagios-validate-offline.go │ ├── nagios-validate-peerpoller │ │ └── nagios-validate-peerpoller.go │ ├── nagios-validate-queryinterval │ │ └── nagios-validate-queryinterval.go │ ├── testcaches │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Dockerfile.dockerignore │ │ ├── Dockerfile_run.sh │ │ ├── README.md │ │ ├── fakesrvr │ │ │ ├── cmd.go │ │ │ ├── fakesrvr.go │ │ │ └── server.go │ │ ├── fakesrvrdata │ │ │ ├── fakesrvrdata.go │ │ │ ├── run.go │ │ │ └── ths.go │ │ └── testcaches.go │ ├── testto │ │ ├── Dockerfile │ │ ├── Dockerfile.dockerignore │ │ ├── Dockerfile_run.sh │ │ ├── README.md │ │ └── testto.go │ └── validator-service │ │ └── validator-service.go ├── towrap │ ├── towrap.go │ └── towrap_test.go ├── traffic_monitor.go └── version.go ├── traffic_ops ├── INSTALL.md ├── README.md ├── app │ ├── bin │ │ ├── checks │ │ │ ├── DnssecRefresh │ │ │ │ ├── ToDnssecRefresh.go │ │ │ │ └── config │ │ │ │ │ └── config.go │ │ │ ├── NetPacket │ │ │ │ └── IPv6.pm │ │ │ ├── ToAutorenewCerts.pl │ │ │ ├── ToCDUCheck.pl │ │ │ ├── ToCHRCheck.pl │ │ │ ├── ToDSCPCheck.pl │ │ │ ├── ToDnssecRefresh.pl │ │ │ ├── ToFQDNCheck.pl │ │ │ ├── ToMTUCheck.pl │ │ │ ├── ToORTCheck.pl │ │ │ ├── ToPingCheck.pl │ │ │ └── ToRTRCheck.pl │ │ └── tests │ │ │ ├── .env │ │ │ ├── Dockerfile-golangtest │ │ │ └── docker-compose.yml │ ├── conf │ │ ├── backends.conf │ │ ├── cdn.conf │ │ ├── development │ │ │ ├── database.conf │ │ │ ├── influxdb.conf │ │ │ └── riak.conf │ │ ├── example-ldap.conf │ │ ├── integration │ │ │ ├── database.conf │ │ │ ├── influxdb.conf │ │ │ └── riak.conf │ │ ├── invalid_passwords.txt │ │ ├── misc │ │ │ ├── psql_local.conf │ │ │ └── riak_search │ │ │ │ └── sslkeys.xml │ │ ├── production │ │ │ ├── backends.conf │ │ │ ├── database.conf │ │ │ ├── influxdb.conf │ │ │ └── riak.conf │ │ └── test │ │ │ ├── database.conf │ │ │ ├── influxdb.conf │ │ │ └── riak.conf │ ├── db │ │ ├── SQUASH.md │ │ ├── admin.go │ │ ├── create_tables.sql │ │ ├── dbconf.yml │ │ ├── migrations │ │ │ ├── .keep │ │ │ ├── 2022100210472946_ds_regional.down.sql │ │ │ ├── 2022100210472946_ds_regional.up.sql │ │ │ ├── 2022101700451329_add_ttl_override_to_cdn.down.sql │ │ │ ├── 2022101700451329_add_ttl_override_to_cdn.up.sql │ │ │ ├── 2022110908494015_ds_active_flag.down.sql │ │ │ ├── 2022110908494015_ds_active_flag.up.sql │ │ │ ├── 2022110908494016_ds_explicit_mso.down.sql │ │ │ ├── 2022110908494016_ds_explicit_mso.up.sql │ │ │ ├── 2022112215022300_add_required_capabilities_to_ds.down.sql │ │ │ ├── 2022112215022300_add_required_capabilities_to_ds.up.sql │ │ │ ├── 2022121612121500_add_description_field_in_sc_table.down.sql │ │ │ ├── 2022121612121500_add_description_field_in_sc_table.up.sql │ │ │ ├── 2023012316280200_create_new_role.down.sql │ │ │ ├── 2023012316280200_create_new_role.up.sql │ │ │ ├── 2023062011541800_operations_role_add_perm.down.sql │ │ │ ├── 2023062011541800_operations_role_add_perm.up.sql │ │ │ ├── 2023081112520836_operations_role_add_secure_server_read.down.sql │ │ │ ├── 2023081112520836_operations_role_add_secure_server_read.up.sql │ │ │ ├── 2023082308560644_server_update_status.down.sql │ │ │ ├── 2023082308560644_server_update_status.up.sql │ │ │ ├── 2024121808014200_add_comment_parameter.down.sql │ │ │ └── 2024121808014200_add_comment_parameter.up.sql │ │ ├── patches.sql │ │ ├── reencrypt │ │ │ ├── reencrypt.conf │ │ │ └── reencrypt.go │ │ ├── seeds.sql │ │ ├── squash_migrations.sh │ │ ├── traffic_vault_migrate │ │ │ ├── README.md │ │ │ ├── pg.json │ │ │ ├── postgres.go │ │ │ ├── riak.go │ │ │ ├── riak.json │ │ │ ├── traffic_vault_migrate.go │ │ │ └── traffic_vault_migrate_test.go │ │ └── trafficvault │ │ │ ├── create_tables.sql │ │ │ ├── dbconf.yml │ │ │ └── test │ │ │ ├── .env │ │ │ ├── .gitignore │ │ │ ├── Dockerfile-db-admin │ │ │ ├── Dockerfile-tvdb │ │ │ ├── README.md │ │ │ ├── aes.key │ │ │ ├── data │ │ │ ├── dnssec.dat │ │ │ ├── sslkey.dat │ │ │ ├── urisigningkey.dat │ │ │ └── urlsigkey.dat │ │ │ ├── db-config.sh │ │ │ ├── docker-compose.yml │ │ │ ├── initdb.d │ │ │ ├── 01-turn-on-logging.sh │ │ │ ├── 10-create-roles.sh │ │ │ └── 90-load-dumps.sh │ │ │ ├── new-aes.key │ │ │ ├── reencrypt-config.sh │ │ │ └── run-tvdb-test.sh │ ├── script │ │ ├── detect10ginterfaces.pl │ │ └── generate_raid0_files.pl │ └── templates │ │ └── send_mail │ │ └── autorenewcerts_mail.html ├── build │ ├── build_rpm.sh │ └── traffic_ops.spec ├── etc │ ├── cron.d │ │ ├── autorenew_certs │ │ ├── trafops_clean_isos │ │ └── trafops_dnssec_refresh │ ├── init.d │ │ └── traffic_ops │ ├── logrotate.d │ │ ├── traffic_ops │ │ ├── traffic_ops_access │ │ └── traffic_ops_golang │ └── profile.d │ │ └── traffic_ops.sh ├── install │ ├── README │ ├── bin │ │ ├── _postinstall.py │ │ ├── convert_profile │ │ │ ├── convert622to713.json │ │ │ ├── convert622to713.yaml │ │ │ ├── convert_profile.go │ │ │ └── convert_profile_test.go │ │ ├── copy-pgdata.sh │ │ ├── generateCert │ │ ├── input.json │ │ ├── postinstall │ │ └── postinstall.test.sh │ ├── data │ │ └── json │ │ │ ├── osversions.json │ │ │ └── post_install.json │ ├── etc │ │ └── README │ └── lib │ │ ├── Database.pm │ │ ├── GenerateCert.pm │ │ └── InstallUtils.pm ├── testing │ ├── api │ │ ├── README.md │ │ ├── conf │ │ │ └── traffic-ops-test.conf │ │ ├── config │ │ │ └── config.go │ │ ├── utils │ │ │ └── utils.go │ │ ├── v3 │ │ │ ├── .gitignore │ │ │ ├── about_test.go │ │ │ ├── api_capability_test.go │ │ │ ├── asns_test.go │ │ │ ├── cachegroups_parameters_test.go │ │ │ ├── cachegroups_test.go │ │ │ ├── cachegroupsdeliveryservices_test.go │ │ │ ├── capabilities_test.go │ │ │ ├── cdn_domains_test.go │ │ │ ├── cdn_federations_test.go │ │ │ ├── cdns_name_configs_monitoring_test.go │ │ │ ├── cdns_name_snapshot_new_test.go │ │ │ ├── cdns_name_snapshot_test.go │ │ │ ├── cdns_test.go │ │ │ ├── cookie_test.go │ │ │ ├── coordinates_test.go │ │ │ ├── deliveryservice_request_comments_test.go │ │ │ ├── deliveryservice_requests_test.go │ │ │ ├── deliveryservices_keys_test.go │ │ │ ├── deliveryservices_required_capabilities_test.go │ │ │ ├── deliveryservices_test.go │ │ │ ├── deliveryserviceservers_test.go │ │ │ ├── deliveryservicesideligible_test.go │ │ │ ├── deliveryservicesregexes_test.go │ │ │ ├── divisions_test.go │ │ │ ├── federation_deliveryservices_test.go │ │ │ ├── federation_federation_resolvers_test.go │ │ │ ├── federation_resolvers_test.go │ │ │ ├── federation_users_test.go │ │ │ ├── federations_test.go │ │ │ ├── fixtures_test.go │ │ │ ├── iso_test.go │ │ │ ├── jobs_test.go │ │ │ ├── loginfail_test.go │ │ │ ├── logs_test.go │ │ │ ├── monitoring_test.go │ │ │ ├── origins_test.go │ │ │ ├── parameters_test.go │ │ │ ├── phys_locations_test.go │ │ │ ├── ping_test.go │ │ │ ├── profile_parameters_test.go │ │ │ ├── profiles_export_test.go │ │ │ ├── profiles_import_test.go │ │ │ ├── profiles_name_copy_test.go │ │ │ ├── profiles_test.go │ │ │ ├── regions_test.go │ │ │ ├── roles_test.go │ │ │ ├── server_capabilities_test.go │ │ │ ├── server_server_capabilities_test.go │ │ │ ├── servercheckextension_test.go │ │ │ ├── serverchecks_test.go │ │ │ ├── servers_hostname_update_status_test.go │ │ │ ├── servers_id_deliveryservices_test.go │ │ │ ├── servers_id_queue_update_test.go │ │ │ ├── servers_id_status_test.go │ │ │ ├── servers_test.go │ │ │ ├── servicecategories_test.go │ │ │ ├── session_test.go │ │ │ ├── snapshot_test.go │ │ │ ├── staticdnsentries_test.go │ │ │ ├── stats_summary_test.go │ │ │ ├── statuses_test.go │ │ │ ├── steering_test.go │ │ │ ├── steeringtargets_test.go │ │ │ ├── tc-fixtures.json │ │ │ ├── tenants_test.go │ │ │ ├── todb_test.go │ │ │ ├── topologies_queue_update_test.go │ │ │ ├── topologies_test.go │ │ │ ├── traffic_control_test.go │ │ │ ├── traffic_ops_test.go │ │ │ ├── types_test.go │ │ │ ├── user_current_test.go │ │ │ ├── users_register_test.go │ │ │ ├── users_test.go │ │ │ └── withobjs_test.go │ │ ├── v4 │ │ │ ├── .gitignore │ │ │ ├── about_test.go │ │ │ ├── acme_test.go │ │ │ ├── asns_test.go │ │ │ ├── cachegroups_test.go │ │ │ ├── cachegroupsdeliveryservices_test.go │ │ │ ├── cdn_dnsseckeys_test.go │ │ │ ├── cdn_domains_test.go │ │ │ ├── cdn_federations_test.go │ │ │ ├── cdn_locks_test.go │ │ │ ├── cdn_queue_updates_test.go │ │ │ ├── cdnnotifications_test.go │ │ │ ├── cdns_name_configs_monitoring_test.go │ │ │ ├── cdns_name_snapshot_new_test.go │ │ │ ├── cdns_name_snapshot_test.go │ │ │ ├── cdns_test.go │ │ │ ├── cookie_test.go │ │ │ ├── coordinates_test.go │ │ │ ├── deliveryservice_request_comments_test.go │ │ │ ├── deliveryservice_requests_test.go │ │ │ ├── deliveryservices_keys_test.go │ │ │ ├── deliveryservices_required_capabilities_test.go │ │ │ ├── deliveryservices_test.go │ │ │ ├── deliveryserviceservers_test.go │ │ │ ├── deliveryservicesideligible_test.go │ │ │ ├── deliveryservicesregexes_test.go │ │ │ ├── divisions_test.go │ │ │ ├── federation_deliveryservices_test.go │ │ │ ├── federation_federation_resolvers_test.go │ │ │ ├── federation_resolvers_test.go │ │ │ ├── federation_users_test.go │ │ │ ├── federations_test.go │ │ │ ├── fixtures_test.go │ │ │ ├── iso_test.go │ │ │ ├── jobs_test.go │ │ │ ├── loginfail_test.go │ │ │ ├── logs_test.go │ │ │ ├── monitoring_test.go │ │ │ ├── multiple_server_capabilities_test.go │ │ │ ├── origins_test.go │ │ │ ├── parameters_test.go │ │ │ ├── phys_locations_test.go │ │ │ ├── ping_test.go │ │ │ ├── profile_parameters_test.go │ │ │ ├── profiles_export_test.go │ │ │ ├── profiles_import_test.go │ │ │ ├── profiles_name_copy_test.go │ │ │ ├── profiles_test.go │ │ │ ├── regions_test.go │ │ │ ├── roles_test.go │ │ │ ├── server_capabilities_test.go │ │ │ ├── server_server_capabilities_test.go │ │ │ ├── servercheckextension_test.go │ │ │ ├── serverchecks_test.go │ │ │ ├── servers_hostname_update_status_test.go │ │ │ ├── servers_hostname_update_test.go │ │ │ ├── servers_id_deliveryservices_test.go │ │ │ ├── servers_id_queue_update_test.go │ │ │ ├── servers_id_status_test.go │ │ │ ├── servers_test.go │ │ │ ├── servicecategories_test.go │ │ │ ├── session_test.go │ │ │ ├── snapshot_test.go │ │ │ ├── sslkey_expirations_test.go │ │ │ ├── staticdnsentries_test.go │ │ │ ├── stats_summary_test.go │ │ │ ├── statuses_test.go │ │ │ ├── steering_test.go │ │ │ ├── steeringtargets_test.go │ │ │ ├── tc-fixtures.json │ │ │ ├── tenants_test.go │ │ │ ├── todb_test.go │ │ │ ├── topologies_queue_update_test.go │ │ │ ├── topologies_test.go │ │ │ ├── traffic_ops_test.go │ │ │ ├── traffic_vault_ping_test.go │ │ │ ├── types_test.go │ │ │ ├── user_current_test.go │ │ │ ├── users_register_test.go │ │ │ ├── users_test.go │ │ │ └── withobjs_test.go │ │ └── v5 │ │ │ ├── .gitignore │ │ │ ├── about_test.go │ │ │ ├── acme_test.go │ │ │ ├── asns_test.go │ │ │ ├── cachegroups_test.go │ │ │ ├── cachegroupsdeliveryservices_test.go │ │ │ ├── cdn_dnsseckeys_test.go │ │ │ ├── cdn_domains_test.go │ │ │ ├── cdn_federations_test.go │ │ │ ├── cdn_locks_test.go │ │ │ ├── cdn_queue_updates_test.go │ │ │ ├── cdnnotifications_test.go │ │ │ ├── cdns_name_configs_monitoring_test.go │ │ │ ├── cdns_name_snapshot_new_test.go │ │ │ ├── cdns_name_snapshot_test.go │ │ │ ├── cdns_test.go │ │ │ ├── client-intermediate-chain.crt.pem │ │ │ ├── client.key.pem │ │ │ ├── cookie_test.go │ │ │ ├── coordinates_test.go │ │ │ ├── deliveryservice_request_comments_test.go │ │ │ ├── deliveryservice_requests_test.go │ │ │ ├── deliveryservices_keys_test.go │ │ │ ├── deliveryservices_required_capabilities_test.go │ │ │ ├── deliveryservices_test.go │ │ │ ├── deliveryserviceservers_test.go │ │ │ ├── deliveryservicesideligible_test.go │ │ │ ├── deliveryservicesregexes_test.go │ │ │ ├── divisions_test.go │ │ │ ├── federation_deliveryservices_test.go │ │ │ ├── federation_federation_resolvers_test.go │ │ │ ├── federation_resolvers_test.go │ │ │ ├── federation_users_test.go │ │ │ ├── federations_test.go │ │ │ ├── fixtures_test.go │ │ │ ├── iso_test.go │ │ │ ├── jobs_test.go │ │ │ ├── loginfail_test.go │ │ │ ├── logs_test.go │ │ │ ├── monitoring_test.go │ │ │ ├── multiple_server_capabilities_test.go │ │ │ ├── origins_test.go │ │ │ ├── parameters_test.go │ │ │ ├── phys_locations_test.go │ │ │ ├── ping_test.go │ │ │ ├── profile_parameters_test.go │ │ │ ├── profiles_export_test.go │ │ │ ├── profiles_import_test.go │ │ │ ├── profiles_name_copy_test.go │ │ │ ├── profiles_test.go │ │ │ ├── regions_test.go │ │ │ ├── roles_test.go │ │ │ ├── server_capabilities_test.go │ │ │ ├── server_server_capabilities_test.go │ │ │ ├── servercheckextension_test.go │ │ │ ├── serverchecks_test.go │ │ │ ├── servers_hostname_update_status_test.go │ │ │ ├── servers_hostname_update_test.go │ │ │ ├── servers_id_deliveryservices_test.go │ │ │ ├── servers_id_queue_update_test.go │ │ │ ├── servers_id_status_test.go │ │ │ ├── servers_test.go │ │ │ ├── servicecategories_test.go │ │ │ ├── session_test.go │ │ │ ├── snapshot_test.go │ │ │ ├── sslkey_expirations_test.go │ │ │ ├── staticdnsentries_test.go │ │ │ ├── stats_summary_test.go │ │ │ ├── statuses_test.go │ │ │ ├── steering_test.go │ │ │ ├── steeringtargets_test.go │ │ │ ├── tc-fixtures.json │ │ │ ├── tenants_test.go │ │ │ ├── todb_test.go │ │ │ ├── topologies_queue_update_test.go │ │ │ ├── topologies_test.go │ │ │ ├── traffic_control_test.go │ │ │ ├── traffic_ops_test.go │ │ │ ├── traffic_vault_ping_test.go │ │ │ ├── types_test.go │ │ │ ├── user_current_test.go │ │ │ ├── users_register_test.go │ │ │ ├── users_test.go │ │ │ └── withobjs_test.go │ └── api_contract │ │ ├── README.md │ │ └── v4 │ │ ├── conftest.py │ │ ├── data │ │ ├── request_template.json │ │ ├── response_template.json │ │ └── to_data.json │ │ ├── pytest.ini │ │ ├── requirements.txt │ │ ├── test_asns.py │ │ ├── test_cachegroups.py │ │ ├── test_cdn_federation.py │ │ ├── test_cdn_health.py │ │ ├── test_cdn_locks.py │ │ ├── test_cdn_notifications.py │ │ ├── test_cdns.py │ │ ├── test_coordinates.py │ │ ├── test_delivery_service_health.py │ │ ├── test_delivery_service_request_comments.py │ │ ├── test_delivery_service_requests.py │ │ ├── test_delivery_service_required_capabilities.py │ │ ├── test_delivery_services.py │ │ ├── test_delivery_services_regex.py │ │ ├── test_delivery_services_sslkeys.py │ │ ├── test_divisions.py │ │ ├── test_federation_resolvers.py │ │ ├── test_jobs.py │ │ ├── test_logs.py │ │ ├── test_origins.py │ │ ├── test_parameters.py │ │ ├── test_phys_locations.py │ │ ├── test_profile_parameters.py │ │ ├── test_profiles.py │ │ ├── test_regions.py │ │ ├── test_roles.py │ │ ├── test_server_capabilities.py │ │ ├── test_server_server_capabilities.py │ │ ├── test_servers.py │ │ ├── test_service_categories.py │ │ ├── test_static_dns_entries.py │ │ ├── test_statuses.py │ │ ├── test_steering.py │ │ ├── test_system_info.py │ │ ├── test_tenants.py │ │ ├── test_topologies.py │ │ └── test_users.py ├── toclientlib │ ├── endpoints.go │ └── toclientlib.go ├── traffic_ops_golang │ ├── .gitignore │ ├── README.md │ ├── about │ │ ├── about.go │ │ └── about_test.go │ ├── acme │ │ └── acme_account.go │ ├── api │ │ ├── api.go │ │ ├── api_test.go │ │ ├── async_status.go │ │ ├── async_status_test.go │ │ ├── change_log.go │ │ ├── change_log_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── generic_crud.go │ │ ├── info.go │ │ ├── info_test.go │ │ ├── shared_handlers.go │ │ ├── shared_handlers_test.go │ │ └── shared_interfaces.go │ ├── apicapability │ │ ├── api_capabilities.go │ │ └── api_capabilities_test.go │ ├── apitenant │ │ ├── tenant.go │ │ └── tenant_test.go │ ├── asn │ │ ├── asns.go │ │ └── asns_test.go │ ├── auth │ │ ├── authenticate.go │ │ ├── authenticate_test.go │ │ ├── authorize.go │ │ ├── authorize_test.go │ │ ├── certificate.go │ │ ├── certificate_test.go │ │ ├── ldap.go │ │ ├── password_check.go │ │ ├── usercache.go │ │ └── usercache_test.go │ ├── cachegroup │ │ ├── cachegroups.go │ │ ├── cachegroups_test.go │ │ ├── dspost.go │ │ └── queueupdate.go │ ├── cachegroupparameter │ │ ├── parameters.go │ │ └── parameters_test.go │ ├── cachesstats │ │ ├── cachesstats.go │ │ └── cachesstats_test.go │ ├── capabilities │ │ └── capabilities.go │ ├── cdn │ │ ├── capacity.go │ │ ├── capacity_test.go │ │ ├── cdns.go │ │ ├── cdns_test.go │ │ ├── dnssec.go │ │ ├── dnssecrefresh.go │ │ ├── dnssecrefresh_test.go │ │ ├── domains.go │ │ ├── domains_test.go │ │ ├── genksk.go │ │ ├── genksk_test.go │ │ ├── health.go │ │ ├── namedelete.go │ │ ├── namedelete_test.go │ │ ├── queue.go │ │ ├── queue_test.go │ │ └── sslkeys.go │ ├── cdn_lock │ │ └── cdn_lock.go │ ├── cdnfederation │ │ ├── cdnfederations.go │ │ └── cdnfederations_test.go │ ├── cdni │ │ ├── capacity.go │ │ ├── shared.go │ │ └── telemetry.go │ ├── cdnnotification │ │ └── cdnnotifications.go │ ├── config │ │ ├── config.go │ │ └── config_test.go │ ├── coordinate │ │ ├── coordinates.go │ │ └── coordinates_test.go │ ├── crconfig │ │ ├── config.go │ │ ├── config_test.go │ │ ├── crconfig.go │ │ ├── crconfig_test.go │ │ ├── deliveryservice.go │ │ ├── deliveryservice_test.go │ │ ├── edgelocations.go │ │ ├── edgelocations_test.go │ │ ├── handler.go │ │ ├── servers.go │ │ ├── servers_test.go │ │ ├── snapshot.go │ │ ├── snapshot_test.go │ │ ├── stats.go │ │ └── stats_test.go │ ├── crstats │ │ ├── cdnrouting.go │ │ ├── dsrouting.go │ │ ├── routing.go │ │ └── routing_test.go │ ├── dbdump │ │ └── dbdump.go │ ├── dbhelpers │ │ ├── db_helpers.go │ │ └── db_helpers_test.go │ ├── deliveryservice │ │ ├── acme.go │ │ ├── acme_renew.go │ │ ├── acme_test.go │ │ ├── autorenewcerts.go │ │ ├── capacity.go │ │ ├── consistenthash │ │ │ └── consistenthash.go │ │ ├── deleteoldcerts.go │ │ ├── deliveryservices.go │ │ ├── deliveryservices_required_capabilities.go │ │ ├── deliveryservices_required_capabilities_test.go │ │ ├── deliveryservices_test.go │ │ ├── dnssec.go │ │ ├── dnssec_test.go │ │ ├── eligible.go │ │ ├── eligible_test.go │ │ ├── gencert.go │ │ ├── gencert_test.go │ │ ├── health.go │ │ ├── health_test.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── letsencrypt_dns_challenge.go │ │ ├── request │ │ │ ├── assign.go │ │ │ ├── comment │ │ │ │ ├── comments.go │ │ │ │ └── comments_test.go │ │ │ ├── requests.go │ │ │ ├── requests_test.go │ │ │ ├── status.go │ │ │ ├── validate.go │ │ │ └── validate_test.go │ │ ├── safe.go │ │ ├── safe_test.go │ │ ├── servers │ │ │ ├── delete.go │ │ │ ├── delete_test.go │ │ │ ├── servers.go │ │ │ └── servers_test.go │ │ ├── sslkeys.go │ │ └── urlkey.go │ ├── deliveryservicerequests │ │ └── deliveryservicerequests.go │ ├── deliveryservicesregexes │ │ ├── deliveryservicesregexes.go │ │ └── deliveryservicesregexes_test.go │ ├── division │ │ ├── divisions.go │ │ └── divisions_test.go │ ├── federation_resolvers │ │ └── federation_resolvers.go │ ├── federations │ │ ├── allfederations.go │ │ ├── ds.go │ │ ├── ds_test.go │ │ ├── federation_resolvers.go │ │ ├── federations.go │ │ ├── federations_test.go │ │ └── user.go │ ├── invalidationjobs │ │ └── invalidationjobs.go │ ├── iso │ │ ├── crypt.go │ │ ├── crypt_test.go │ │ ├── helper_test.go │ │ ├── iso.go │ │ ├── iso_test.go │ │ ├── mkisofs.go │ │ ├── mkisofs_test.go │ │ ├── osversions.go │ │ ├── osversions_test.go │ │ ├── resolve.go │ │ └── resolve_test.go │ ├── login │ │ ├── login.go │ │ ├── login_test.go │ │ ├── logout.go │ │ ├── logout_test.go │ │ ├── register.go │ │ └── register_test.go │ ├── logs │ │ └── log.go │ ├── monitoring │ │ ├── monitoring.go │ │ └── monitoring_test.go │ ├── origin │ │ ├── origins.go │ │ └── origins_test.go │ ├── parameter │ │ ├── parameters.go │ │ └── parameters_test.go │ ├── physlocation │ │ ├── phys_locations.go │ │ └── phys_locations_test.go │ ├── ping │ │ ├── ping.go │ │ ├── ping_test.go │ │ └── vault.go │ ├── plugin │ │ ├── README.md │ │ ├── hello_config.go │ │ ├── hello_context.go │ │ ├── hello_middleware.go │ │ ├── hello_shared_config.go │ │ ├── hello_startup.go │ │ ├── hello_world.go │ │ ├── plugin.go │ │ └── proxy.go │ ├── plugins │ │ └── plugins.go │ ├── profile │ │ ├── copy.go │ │ ├── copy_test.go │ │ ├── profile_export.go │ │ ├── profile_export_test.go │ │ ├── profile_import.go │ │ ├── profile_import_test.go │ │ ├── profiles.go │ │ └── profiles_test.go │ ├── profileparameter │ │ ├── parameterprofilebyid.go │ │ ├── parameterprofilebyname.go │ │ ├── postparameterprofile.go │ │ ├── postprofileparameter.go │ │ ├── postprofileparametersbyid.go │ │ ├── postprofileparametersbyname.go │ │ ├── profile_parameters.go │ │ └── profile_parameters_test.go │ ├── region │ │ ├── regions.go │ │ └── regions_test.go │ ├── role │ │ ├── roles.go │ │ └── roles_test.go │ ├── routing │ │ ├── middleware │ │ │ ├── wrappers.go │ │ │ └── wrappers_test.go │ │ ├── routes.go │ │ ├── routing.go │ │ └── routing_test.go │ ├── server │ │ ├── detail.go │ │ ├── detail_test.go │ │ ├── put_status.go │ │ ├── put_status_test.go │ │ ├── queue_update.go │ │ ├── servers.go │ │ ├── servers_assignment.go │ │ ├── servers_assignment_test.go │ │ ├── servers_server_capability.go │ │ ├── servers_server_capability_test.go │ │ ├── servers_test.go │ │ ├── servers_update_status.go │ │ ├── servers_update_status_test.go │ │ └── update.go │ ├── servercapability │ │ ├── servercapability.go │ │ └── servercapability_test.go │ ├── servercheck │ │ ├── extensions │ │ │ └── extension.go │ │ └── servercheck.go │ ├── servicecategory │ │ ├── servicecategories.go │ │ └── servicecategories_test.go │ ├── staticdnsentry │ │ ├── staticdnsentry.go │ │ └── staticdnsentry_test.go │ ├── status │ │ ├── statuses.go │ │ └── statuses_test.go │ ├── steering │ │ └── steering.go │ ├── steeringtargets │ │ ├── steeringtargets.go │ │ └── steeringtargets_test.go │ ├── swaggerdocs │ │ └── v13 │ │ │ ├── .env │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.dockerignore │ │ │ ├── README.md │ │ │ ├── alerts.go │ │ │ ├── asns.go │ │ │ ├── cdns.go │ │ │ ├── divisions.go │ │ │ ├── docker-compose.yml │ │ │ ├── docs.go │ │ │ ├── gen_swaggerspec.sh │ │ │ ├── physlocations.go │ │ │ ├── profileparameters.go │ │ │ ├── profiles.go │ │ │ ├── regions.go │ │ │ ├── statuses.go │ │ │ ├── swaggerspec-server │ │ │ └── swaggerspec-server.go │ │ │ └── swaggerspec │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.yml │ │ │ ├── requirements.txt │ │ │ └── swagger2rst.sh │ ├── systeminfo │ │ ├── system_info.go │ │ └── system_info_test.go │ ├── tenant │ │ └── tenancy.go │ ├── test │ │ ├── error_context.go │ │ ├── error_context_test.go │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ └── rand.go │ ├── tocookie │ │ ├── cookie.go │ │ └── cookie_test.go │ ├── topology │ │ ├── cycle_detection.go │ │ ├── queue_update.go │ │ ├── snapshot.go │ │ ├── snapshot_test.go │ │ ├── topologies.go │ │ ├── topology_validation │ │ │ └── topology_validation.go │ │ └── validation.go │ ├── traffic_ops_golang.go │ ├── trafficstats │ │ ├── cache.go │ │ ├── cdn.go │ │ ├── deliveryservice.go │ │ ├── series.go │ │ ├── stats_summary.go │ │ ├── stats_summary_test.go │ │ ├── summary.go │ │ ├── util.go │ │ └── util_test.go │ ├── trafficvault │ │ ├── README.md │ │ ├── backends │ │ │ ├── backends.go │ │ │ ├── disabled │ │ │ │ └── disabled.go │ │ │ ├── postgres │ │ │ │ ├── encrypt.go │ │ │ │ ├── hashicorpvault │ │ │ │ │ └── client.go │ │ │ │ ├── postgres.go │ │ │ │ ├── uri_signing_keys.go │ │ │ │ └── url_sig_keys.go │ │ │ └── riaksvc │ │ │ │ ├── dsutil.go │ │ │ │ ├── riak.go │ │ │ │ ├── riak_services.go │ │ │ │ ├── riak_services_test.go │ │ │ │ └── riak_test.go │ │ └── trafficvault.go │ ├── types │ │ ├── types.go │ │ └── types_test.go │ ├── urisigning │ │ ├── urisigning.go │ │ └── urisigning_test.go │ ├── user │ │ ├── current.go │ │ ├── current_test.go │ │ ├── user.go │ │ └── user_test.go │ ├── util │ │ ├── ims │ │ │ └── ims.go │ │ └── monitorhlp │ │ │ └── monitorhlp.go │ └── vault │ │ └── bucket.go ├── v3-client │ ├── README.md │ ├── about.go │ ├── api_capability.go │ ├── asn.go │ ├── cachegroup.go │ ├── cachegroup_parameters.go │ ├── capability.go │ ├── cdn.go │ ├── cdn_domains.go │ ├── cdnfederations.go │ ├── coordinate.go │ ├── crconfig.go │ ├── deliveryservice.go │ ├── deliveryservice_regexes.go │ ├── deliveryservice_request_comments.go │ ├── deliveryservice_requests.go │ ├── deliveryservices_required_capabilities.go │ ├── deliveryserviceserver.go │ ├── division.go │ ├── dsuser.go │ ├── endpoints.go │ ├── federation.go │ ├── federation_federation_resolver.go │ ├── federation_resolver.go │ ├── iso.go │ ├── job.go │ ├── log.go │ ├── origin.go │ ├── parameter.go │ ├── phys_location.go │ ├── ping.go │ ├── profile.go │ ├── profile_parameter.go │ ├── region.go │ ├── role.go │ ├── server.go │ ├── server_server_capabilities.go │ ├── server_update_status.go │ ├── servercapability.go │ ├── servercheck.go │ ├── servercheckextensions.go │ ├── serviceCategory.go │ ├── session.go │ ├── staticdnsentry.go │ ├── stats_summary.go │ ├── status.go │ ├── steering.go │ ├── steeringtarget.go │ ├── tenant.go │ ├── topology.go │ ├── topology_queue_updates.go │ ├── traffic_monitor.go │ ├── traffic_stats.go │ ├── type.go │ ├── user.go │ └── util.go ├── v4-client │ ├── README.md │ ├── about.go │ ├── acme.go │ ├── asn.go │ ├── async_status.go │ ├── cachegroup.go │ ├── cdn.go │ ├── cdn_dnssec.go │ ├── cdn_domains.go │ ├── cdn_lock.go │ ├── cdn_notifications.go │ ├── cdnfederations.go │ ├── coordinate.go │ ├── crconfig.go │ ├── deliveryservice.go │ ├── deliveryservice_regexes.go │ ├── deliveryservice_request_comments.go │ ├── deliveryservice_requests.go │ ├── deliveryservices_required_capabilities.go │ ├── deliveryserviceserver.go │ ├── division.go │ ├── endpoints.go │ ├── federation.go │ ├── federation_federation_resolver.go │ ├── federation_resolver.go │ ├── iso.go │ ├── job.go │ ├── log.go │ ├── origin.go │ ├── parameter.go │ ├── phys_location.go │ ├── ping.go │ ├── profile.go │ ├── profile_parameter.go │ ├── region.go │ ├── role.go │ ├── server.go │ ├── server_server_capabilities.go │ ├── server_update_status.go │ ├── servercapability.go │ ├── servercheck.go │ ├── servercheckextensions.go │ ├── serviceCategory.go │ ├── session.go │ ├── sslkey_expirations.go │ ├── staticdnsentry.go │ ├── stats_summary.go │ ├── status.go │ ├── steering.go │ ├── steeringtarget.go │ ├── tenant.go │ ├── topology.go │ ├── topology_queue_updates.go │ ├── traffic_monitor.go │ ├── traffic_stats.go │ ├── type.go │ ├── user.go │ └── vault.go └── v5-client │ ├── README.md │ ├── about.go │ ├── acme.go │ ├── asn.go │ ├── async_status.go │ ├── cachegroup.go │ ├── cdn.go │ ├── cdn_dnssec.go │ ├── cdn_domains.go │ ├── cdn_lock.go │ ├── cdn_notifications.go │ ├── cdnfederations.go │ ├── coordinate.go │ ├── crconfig.go │ ├── deliveryservice.go │ ├── deliveryservice_regexes.go │ ├── deliveryservice_request_comments.go │ ├── deliveryservice_requests.go │ ├── deliveryservices_required_capabilities.go │ ├── deliveryserviceserver.go │ ├── division.go │ ├── endpoints.go │ ├── federation.go │ ├── federation_federation_resolver.go │ ├── federation_resolver.go │ ├── iso.go │ ├── job.go │ ├── log.go │ ├── origin.go │ ├── parameter.go │ ├── phys_location.go │ ├── ping.go │ ├── profile.go │ ├── profile_parameter.go │ ├── region.go │ ├── role.go │ ├── server.go │ ├── server_server_capabilities.go │ ├── server_update_status.go │ ├── servercapability.go │ ├── servercheck.go │ ├── servercheckextensions.go │ ├── serviceCategory.go │ ├── session.go │ ├── sslkey_expirations.go │ ├── staticdnsentry.go │ ├── stats_summary.go │ ├── status.go │ ├── steering.go │ ├── steeringtarget.go │ ├── tenant.go │ ├── topology.go │ ├── topology_queue_updates.go │ ├── traffic_monitor.go │ ├── traffic_stats.go │ ├── type.go │ ├── user.go │ └── vault.go ├── traffic_ops_db ├── .gitignore ├── bin │ └── install_systemd_unit.sh ├── docker │ ├── .env │ ├── Dockerfile │ ├── docker-compose.dev.yml │ ├── docker-compose.yml │ └── todb.sh ├── systemd │ └── traffic_ops_db.service └── test │ └── docker │ ├── .env │ ├── .gitignore │ ├── Dockerfile-db │ ├── Dockerfile-db-admin │ ├── db-config.sh │ ├── docker-compose.yml │ ├── initdb.d │ ├── 01-turn-on-logging.sh │ ├── 10-create-roles.sh │ └── 90-load-dumps.sh │ └── run-db-test.sh ├── traffic_portal ├── .gitattributes ├── .gitignore ├── Gruntfile.js ├── README.md ├── app │ └── src │ │ ├── app.js │ │ ├── assets │ │ ├── css │ │ │ ├── angular-moment-picker_0.10.2.css │ │ │ ├── angular-ui-tree.min_2.22.6.css │ │ │ ├── colReorder.dataTables.min_1.5.1.css │ │ │ ├── custom.css │ │ │ ├── jquery.dataTables.min_1.10.9.css │ │ │ └── jsonformatter.min_0.6.0.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── images │ │ │ ├── favicon.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ └── js │ │ │ ├── angular-ui-tree.min_2.22.6.js │ │ │ ├── buttons.html5.min_1.5.6.js │ │ │ ├── chartjs │ │ │ ├── Chart.min_2.7.2.js │ │ │ └── angular-chart.min_1.1.1.js │ │ │ ├── colReorder.dataTables.min_1.5.1.js │ │ │ ├── dataTables.buttons.min_1.5.6.js │ │ │ ├── downloadjs-min_v4.21.js │ │ │ ├── fast-json-patch_v2.1.0.js │ │ │ ├── jquery.dataTables.min_1.10.19_patched.js │ │ │ ├── jsdiff-min_3.5.0.js │ │ │ ├── jsonformatter.min_0.6.0.js │ │ │ ├── moment-min_2.22.1.js │ │ │ ├── moment-picker │ │ │ └── angular-moment-picker.min_0.10.2.js │ │ │ └── underscore-min_1.8.3.js │ │ ├── common │ │ ├── api │ │ │ ├── ASNService.js │ │ │ ├── AuthService.js │ │ │ ├── CDNService.js │ │ │ ├── CacheGroupService.js │ │ │ ├── CacheStatsService.js │ │ │ ├── CapabilityService.js │ │ │ ├── CdniService.js │ │ │ ├── CertExpirationsService.js │ │ │ ├── ChangeLogService.js │ │ │ ├── CoordinateService.js │ │ │ ├── DeliveryServiceRegexService.js │ │ │ ├── DeliveryServiceRequestService.js │ │ │ ├── DeliveryServiceService.js │ │ │ ├── DeliveryServiceSslKeysService.js │ │ │ ├── DeliveryServiceStatsService.js │ │ │ ├── DeliveryServiceUriSigningKeysService.js │ │ │ ├── DeliveryServiceUrlSigKeysService.js │ │ │ ├── DivisionService.js │ │ │ ├── EndpointService.js │ │ │ ├── FederationResolverService.js │ │ │ ├── FederationService.js │ │ │ ├── HttpService.js │ │ │ ├── JobService.js │ │ │ ├── OriginService.js │ │ │ ├── ParameterService.js │ │ │ ├── PhysLocationService.js │ │ │ ├── ProfileParameterService.js │ │ │ ├── ProfileService.js │ │ │ ├── RegionService.js │ │ │ ├── RoleService.js │ │ │ ├── ServerCapabilityService.js │ │ │ ├── ServerService.js │ │ │ ├── ServiceCategoryService.js │ │ │ ├── StaticDnsEntryService.js │ │ │ ├── StatusService.js │ │ │ ├── TenantService.js │ │ │ ├── ToolsService.js │ │ │ ├── TopologyService.js │ │ │ ├── TrafficPortalService.js │ │ │ ├── TypeService.js │ │ │ ├── UserService.js │ │ │ └── index.js │ │ ├── directives │ │ │ ├── _directives.scss │ │ │ ├── dragAndDrop │ │ │ │ ├── dragdropDirective.js │ │ │ │ ├── droppableDirective.js │ │ │ │ └── index.js │ │ │ ├── match │ │ │ │ ├── MatchDirective.js │ │ │ │ └── index.js │ │ │ └── treeSelect │ │ │ │ ├── TreeSelectDirective.d.ts │ │ │ │ ├── TreeSelectDirective.js │ │ │ │ ├── index.js │ │ │ │ └── tree.select.tpl.html │ │ ├── filters │ │ │ ├── EncodeURIComponentFilter.js │ │ │ ├── ExcludeFilter.js │ │ │ ├── OffsetFilter.js │ │ │ ├── PercentFilter.js │ │ │ ├── UnitsFilter.js │ │ │ └── index.js │ │ ├── models │ │ │ ├── ChangeLogModel.js │ │ │ ├── MessageModel.js │ │ │ ├── PropertiesModel.js │ │ │ ├── UserModel.js │ │ │ └── index.js │ │ ├── modules │ │ │ ├── chart │ │ │ │ ├── _chart.scss │ │ │ │ ├── bps │ │ │ │ │ ├── ChartBPSController.js │ │ │ │ │ ├── chart.bps.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── httpStatus │ │ │ │ │ ├── ChartHttpStatusController.js │ │ │ │ │ ├── chart.httpStatus.tpl.html │ │ │ │ │ └── index.js │ │ │ │ └── tps │ │ │ │ │ ├── ChartTPSController.js │ │ │ │ │ ├── chart.tps.tpl.html │ │ │ │ │ └── index.js │ │ │ ├── compare │ │ │ │ ├── CompareController.js │ │ │ │ ├── _compare.scss │ │ │ │ ├── compare.tpl.html │ │ │ │ └── index.js │ │ │ ├── dialog │ │ │ │ ├── _dialog.scss │ │ │ │ ├── compare │ │ │ │ │ ├── DialogCompareController.js │ │ │ │ │ ├── dialog.compare.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── confirm │ │ │ │ │ ├── DialogConfirmController.js │ │ │ │ │ ├── dialog.confirm.tpl.html │ │ │ │ │ ├── enter │ │ │ │ │ │ ├── DialogConfirmEnterController.js │ │ │ │ │ │ ├── dialog.confirm.enter.tpl.html │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── delete │ │ │ │ │ ├── DialogDeleteController.js │ │ │ │ │ ├── dialog.delete.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServiceRequest │ │ │ │ │ ├── DialogDeliveryServiceRequestController.js │ │ │ │ │ ├── dialog.deliveryServiceRequest.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── federationResolver │ │ │ │ │ ├── DialogFederationResolverController.js │ │ │ │ │ ├── dialog.federationResolver.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── import │ │ │ │ │ ├── DialogImportController.js │ │ │ │ │ ├── _dialog.import.scss │ │ │ │ │ ├── dialog.import.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── input │ │ │ │ │ ├── DialogInputController.js │ │ │ │ │ ├── dialog.input.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── reset │ │ │ │ │ ├── DialogResetController.js │ │ │ │ │ ├── dialog.reset.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── select │ │ │ │ │ ├── DialogSelectController.js │ │ │ │ │ ├── dialog.select.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lock │ │ │ │ │ │ ├── DialogSelectLockController.js │ │ │ │ │ │ ├── dialog.select.lock.tpl.html │ │ │ │ │ │ └── index.js │ │ │ │ │ └── status │ │ │ │ │ │ ├── DialogSelectStatusController.js │ │ │ │ │ │ ├── dialog.select.status.tpl.html │ │ │ │ │ │ └── index.js │ │ │ │ ├── text │ │ │ │ │ ├── DialogTextController.js │ │ │ │ │ ├── _dialog.text.scss │ │ │ │ │ ├── dialog.text.tpl.html │ │ │ │ │ └── index.js │ │ │ │ └── textarea │ │ │ │ │ ├── DialogTextareaController.js │ │ │ │ │ ├── dialog.textarea.tpl.html │ │ │ │ │ └── index.js │ │ │ ├── form │ │ │ │ ├── _form.scss │ │ │ │ ├── asn │ │ │ │ │ ├── FormASNController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditASNController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.asn.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewASNController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── cacheGroup │ │ │ │ │ ├── FormCacheGroupController.js │ │ │ │ │ ├── _form.cacheGroup.scss │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditCacheGroupController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.cacheGroup.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewCacheGroupController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── cdn │ │ │ │ │ ├── FormCDNController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditCDNController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.cdn.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewCDNController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── cdnDnssecKeys │ │ │ │ │ ├── FormCdnDnssecKeysController.js │ │ │ │ │ ├── form.cdnDnssecKeys.tpl.html │ │ │ │ │ ├── generate │ │ │ │ │ │ ├── FormGenerateCdnDnssecKeysController.js │ │ │ │ │ │ ├── form.GenerateCdnDnssecKeys.tpl.html │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── regenerateKsk │ │ │ │ │ │ ├── FormRegenerateKskController.js │ │ │ │ │ │ ├── form.RegenerateKsk.tpl.html │ │ │ │ │ │ └── index.js │ │ │ │ ├── cdniConfigRequests │ │ │ │ │ ├── FormCdniRequestController.js │ │ │ │ │ ├── form.cdniConfigRequests.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── coordinate │ │ │ │ │ ├── FormCoordinateController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditCoordinateController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.coordinate.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewCoordinateController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryService │ │ │ │ │ ├── FormDeliveryServiceController.js │ │ │ │ │ ├── clone │ │ │ │ │ │ ├── FormCloneDeliveryServiceController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditDeliveryServiceController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.deliveryService.DNS.tpl.html │ │ │ │ │ ├── form.deliveryService.HTTP.tpl.html │ │ │ │ │ ├── form.deliveryService.Steering.tpl.html │ │ │ │ │ ├── form.deliveryService.anyMap.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewDeliveryServiceController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServiceConsistentHashRegex │ │ │ │ │ ├── FormDeliveryServiceConsistentHashRegexController.js │ │ │ │ │ ├── form.deliveryServiceConsistentHashRegex.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServiceJob │ │ │ │ │ ├── FormDeliveryServiceJobController.js │ │ │ │ │ ├── form.deliveryServiceJob.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewDeliveryServiceJobController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServiceRegex │ │ │ │ │ ├── FormDeliveryServiceRegexController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditDeliveryServiceRegexController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.deliveryServiceRegex.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewDeliveryServiceRegexController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServiceSslKeys │ │ │ │ │ ├── FormDeliveryServiceSslKeysController.js │ │ │ │ │ ├── form.deliveryServiceSslKeys.tpl.html │ │ │ │ │ ├── generate │ │ │ │ │ │ ├── FormGenerateDeliveryServiceSslKeysController.js │ │ │ │ │ │ ├── form.GenerateDeliveryServiceSslKeys.tpl.html │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServiceStaticDnsEntry │ │ │ │ │ ├── FormDeliveryServiceStaticDnsEntryController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditDeliveryServiceStaticDnsEntryController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.deliveryServiceStaticDnsEntry.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewDeliveryServiceStaticDnsEntryController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServiceTarget │ │ │ │ │ ├── FormDeliveryServiceTargetController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditDeliveryServiceTargetController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.deliveryServiceTarget.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewDeliveryServiceTargetController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── division │ │ │ │ │ ├── FormDivisionController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditDivisionController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.division.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewDivisionController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── federation │ │ │ │ │ ├── FormFederationController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditFederationController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.federation.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewFederationController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── iso │ │ │ │ │ ├── FormISOController.js │ │ │ │ │ ├── form.iso.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── job │ │ │ │ │ ├── FormJobController.js │ │ │ │ │ ├── form.job.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewJobController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── origin │ │ │ │ │ ├── FormOriginController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditOriginController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.origin.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewOriginController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── parameter │ │ │ │ │ ├── FormParameterController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditParameterController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.parameter.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewParameterController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── physLocation │ │ │ │ │ ├── FormPhysLocationController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditPhysLocationController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.physLocation.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewPhysLocationController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── profile │ │ │ │ │ ├── FormProfileController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditProfileController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.profile.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewProfileController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── region │ │ │ │ │ ├── FormRegionController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditRegionController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.region.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewRegionController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── role │ │ │ │ │ ├── FormRoleController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditRoleController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.role.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewRoleController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── server │ │ │ │ │ ├── FormServerController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditServerController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.server.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewServerController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── serverCapability │ │ │ │ │ ├── FormServerCapabilityController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditServerCapabilityController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.serverCapability.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewServerCapabilityController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── serviceCategory │ │ │ │ │ ├── FormServiceCategoryController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditServiceCategoryController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.serviceCategory.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewServiceCategoryController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── ssl │ │ │ │ │ ├── CertInspectController.js │ │ │ │ │ ├── _inspect-ssl.scss │ │ │ │ │ ├── cert-inspect.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── status │ │ │ │ │ ├── FormStatusController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditStatusController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.status.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewStatusController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── tenant │ │ │ │ │ ├── FormTenantController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditTenantController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.tenant.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewTenantController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── topology │ │ │ │ │ ├── FormTopologyController.js │ │ │ │ │ ├── clone │ │ │ │ │ │ ├── FormCloneTopologyController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditTopologyController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.topology.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewTopologyController.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── type │ │ │ │ │ ├── FormTypeController.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── FormEditTypeController.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.type.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── new │ │ │ │ │ │ ├── FormNewTypeController.js │ │ │ │ │ │ └── index.js │ │ │ │ └── user │ │ │ │ │ ├── FormUserController.js │ │ │ │ │ ├── edit │ │ │ │ │ ├── FormEditUserController.js │ │ │ │ │ └── index.js │ │ │ │ │ ├── form.user.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── new │ │ │ │ │ ├── FormNewUserController.js │ │ │ │ │ └── index.js │ │ │ │ │ └── register │ │ │ │ │ ├── FormRegisterUserController.js │ │ │ │ │ ├── form.user.register.tpl.html │ │ │ │ │ └── index.js │ │ │ ├── header │ │ │ │ ├── HeaderController.js │ │ │ │ ├── _header.scss │ │ │ │ ├── header.tpl.html │ │ │ │ └── index.js │ │ │ ├── locks │ │ │ │ ├── LocksController.js │ │ │ │ ├── _locks.scss │ │ │ │ ├── index.js │ │ │ │ └── locks.tpl.html │ │ │ ├── message │ │ │ │ ├── MessageController.js │ │ │ │ ├── _message.scss │ │ │ │ ├── index.js │ │ │ │ └── message.tpl.html │ │ │ ├── navigation │ │ │ │ ├── NavigationController.js │ │ │ │ ├── _navigation.scss │ │ │ │ ├── index.js │ │ │ │ └── navigation.tpl.html │ │ │ ├── notifications │ │ │ │ ├── NotificationsController.js │ │ │ │ ├── index.js │ │ │ │ └── notifications.tpl.html │ │ │ ├── release │ │ │ │ ├── ReleaseController.js │ │ │ │ ├── _release.scss │ │ │ │ ├── index.js │ │ │ │ └── release.tpl.html │ │ │ ├── ssl │ │ │ │ ├── CertAuthorController.js │ │ │ │ ├── CertViewer.d.ts │ │ │ │ ├── CertViewerController.js │ │ │ │ ├── _ssl.scss │ │ │ │ ├── cert-author.tpl.html │ │ │ │ ├── cert-view.tpl.html │ │ │ │ └── index.js │ │ │ ├── table │ │ │ │ ├── _table.scss │ │ │ │ ├── agGrid │ │ │ │ │ ├── CommonGridController.d.ts │ │ │ │ │ ├── CommonGridController.js │ │ │ │ │ ├── grid.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── asns │ │ │ │ │ ├── TableASNsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.asns.tpl.html │ │ │ │ ├── cacheGroupAsns │ │ │ │ │ ├── TableCacheGroupAsnsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cacheGroupAsns.tpl.html │ │ │ │ ├── cacheGroupServers │ │ │ │ │ ├── TableCacheGroupServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cacheGroupServers.tpl.html │ │ │ │ ├── cacheGroups │ │ │ │ │ ├── TableCacheGroupsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cacheGroups.tpl.html │ │ │ │ ├── capabilities │ │ │ │ │ ├── TableCapabilitiesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.capabilities.tpl.html │ │ │ │ ├── capabilityEndpoints │ │ │ │ │ ├── TableCapabilityEndpointsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.capabilityEndpoints.tpl.html │ │ │ │ ├── capabilityUsers │ │ │ │ │ ├── TableCapabilityUsersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.capabilityUsers.tpl.html │ │ │ │ ├── cdnDeliveryServices │ │ │ │ │ ├── TableCDNDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cdnDeliveryServices.tpl.html │ │ │ │ ├── cdnFederationDeliveryServices │ │ │ │ │ ├── TableAssignFederationDeliveryServicesController.js │ │ │ │ │ ├── TableCDNFederationDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.assignFederationDeliveryServices.tpl.html │ │ │ │ │ └── table.cdnFederationDeliveryServices.tpl.html │ │ │ │ ├── cdnFederationUsers │ │ │ │ │ ├── TableAssignFederationUsersController.js │ │ │ │ │ ├── TableCDNFederationUsersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.assignFederationUsers.tpl.html │ │ │ │ │ └── table.cdnFederationUsers.tpl.html │ │ │ │ ├── cdnFederations │ │ │ │ │ ├── TableCDNFederationsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cdnFederations.tpl.html │ │ │ │ ├── cdnNotifications │ │ │ │ │ ├── TableCDNNotificationsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cdnNotifications.tpl.html │ │ │ │ ├── cdnServers │ │ │ │ │ ├── TableCDNServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cdnServers.tpl.html │ │ │ │ ├── cdniConfigRequests │ │ │ │ │ ├── TableCdniController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cdniConfigRequests.tpl.html │ │ │ │ ├── cdns │ │ │ │ │ ├── TableCDNsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.cdns.tpl.html │ │ │ │ ├── certExpirations │ │ │ │ │ ├── TableCertExpirationsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.certExpirations.tpl.html │ │ │ │ ├── changeLogs │ │ │ │ │ ├── TableChangeLogsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.changeLogs.tpl.html │ │ │ │ ├── coordinates │ │ │ │ │ ├── TableCoordinatesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.coordinates.tpl.html │ │ │ │ ├── deliveryServiceJobs │ │ │ │ │ ├── TableDeliveryServiceJobsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.deliveryServiceJobs.tpl.html │ │ │ │ ├── deliveryServiceOrigins │ │ │ │ │ ├── TableDeliveryServiceOriginsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.deliveryServiceOrigins.tpl.html │ │ │ │ ├── deliveryServiceRegexes │ │ │ │ │ ├── TableDeliveryServiceRegexesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.deliveryServiceRegexes.tpl.html │ │ │ │ ├── deliveryServiceRequestComments │ │ │ │ │ ├── TableDeliveryServiceRequestCommentsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.deliveryServiceRequestComments.tpl.html │ │ │ │ ├── deliveryServiceRequests │ │ │ │ │ ├── TableDeliveryServiceRequestsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.deliveryServiceRequests.tpl.html │ │ │ │ ├── deliveryServiceServers │ │ │ │ │ ├── TableAssignDSServersController.js │ │ │ │ │ ├── TableDeliveryServiceServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.assignDSServers.tpl.html │ │ │ │ │ └── table.deliveryServiceServers.tpl.html │ │ │ │ ├── deliveryServiceStaticDnsEntries │ │ │ │ │ ├── TableDeliveryServiceStaticDnsEntriesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.deliveryServiceStaticDnsEntries.tpl.html │ │ │ │ ├── deliveryServiceTargets │ │ │ │ │ ├── TableDeliveryServiceTargetsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.deliveryServiceTargets.tpl.html │ │ │ │ ├── deliveryServices │ │ │ │ │ ├── TableDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.deliveryServices.tpl.html │ │ │ │ ├── divisionRegions │ │ │ │ │ ├── TableDivisionRegionsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.divisionRegions.tpl.html │ │ │ │ ├── divisions │ │ │ │ │ ├── TableDivisionsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.divisions.tpl.html │ │ │ │ ├── federationResolvers │ │ │ │ │ ├── TableAssignFedResolversController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.assignFedResolvers.tpl.html │ │ │ │ ├── jobs │ │ │ │ │ ├── TableJobsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.jobs.tpl.html │ │ │ │ ├── notifications │ │ │ │ │ ├── TableNotificationsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.notifications.tpl.html │ │ │ │ ├── origins │ │ │ │ │ ├── TableOriginsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.origins.tpl.html │ │ │ │ ├── parameterProfiles │ │ │ │ │ ├── TableParamProfilesUnassignedController.js │ │ │ │ │ ├── TableParameterProfilesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.paramProfilesUnassigned.tpl.html │ │ │ │ │ └── table.parameterProfiles.tpl.html │ │ │ │ ├── parameters │ │ │ │ │ ├── TableParametersController.js │ │ │ │ │ ├── _table.parameters.scss │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.parameters.tpl.html │ │ │ │ ├── physLocationServers │ │ │ │ │ ├── TablePhysLocationServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.physLocationServers.tpl.html │ │ │ │ ├── physLocations │ │ │ │ │ ├── TablePhysLocationsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.physLocations.tpl.html │ │ │ │ ├── profileParameters │ │ │ │ │ ├── TableProfileParametersController.js │ │ │ │ │ ├── TableProfileParamsUnassignedController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.profileParameters.tpl.html │ │ │ │ │ └── table.profileParamsUnassigned.tpl.html │ │ │ │ ├── profiles │ │ │ │ │ ├── TableProfilesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.profiles.tpl.html │ │ │ │ ├── profilesParamsCompare │ │ │ │ │ ├── TableProfilesParamsCompareController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.profilesParamsCompare.tpl.html │ │ │ │ ├── regionPhysLocations │ │ │ │ │ ├── TableRegionPhysLocationsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.regionPhysLocations.tpl.html │ │ │ │ ├── regions │ │ │ │ │ ├── TableRegionsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.regions.tpl.html │ │ │ │ ├── roleCapabilities │ │ │ │ │ ├── TableAssignCapabilitiesController.js │ │ │ │ │ ├── TableRoleCapabilitiesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.assignCapabilities.tpl.html │ │ │ │ │ └── table.roleCapabilities.tpl.html │ │ │ │ ├── roleUsers │ │ │ │ │ ├── TableRoleUsersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.roleUsers.tpl.html │ │ │ │ ├── roles │ │ │ │ │ ├── TableRolesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.roles.tpl.html │ │ │ │ ├── serverCapabilities │ │ │ │ │ ├── TableServerCapabilitiesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.serverCapabilities.tpl.html │ │ │ │ ├── serverCapabilityDeliveryServices │ │ │ │ │ ├── TableServerCapabilityDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.serverCapabilityDeliveryServices.tpl.html │ │ │ │ ├── serverCapabilityServers │ │ │ │ │ ├── TableAssignServersPerCapabilityController.js │ │ │ │ │ ├── TableServerCapabilityServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.assignServersPerCapability.tpl.html │ │ │ │ │ └── table.serverCapabilityServers.tpl.html │ │ │ │ ├── serverDeliveryServices │ │ │ │ │ ├── TableAssignDeliveryServicesController.js │ │ │ │ │ ├── TableServerDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.assignDeliveryServices.tpl.html │ │ │ │ │ └── table.serverDeliveryServices.tpl.html │ │ │ │ ├── serverServerCapabilities │ │ │ │ │ ├── TableAssignServerSCsController.js │ │ │ │ │ ├── TableServerServerCapabilitiesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.assignServerSCs.tpl.html │ │ │ │ │ └── table.serverServerCapabilities.tpl.html │ │ │ │ ├── servers │ │ │ │ │ ├── TableServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.servers.tpl.html │ │ │ │ ├── serviceCategories │ │ │ │ │ ├── TableServiceCategoriesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.serviceCategories.tpl.html │ │ │ │ ├── serviceCategoryDeliveryServices │ │ │ │ │ ├── TableServiceCategoryDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.serviceCategoryDeliveryServices.tpl.html │ │ │ │ ├── statusServers │ │ │ │ │ ├── TableStatusServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.statusServers.tpl.html │ │ │ │ ├── statuses │ │ │ │ │ ├── TableStatusesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.statuses.tpl.html │ │ │ │ ├── tenantDeliveryServices │ │ │ │ │ ├── TableTenantDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.tenantDeliveryServices.tpl.html │ │ │ │ ├── tenantUsers │ │ │ │ │ ├── TableTenantUsersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.tenantUsers.tpl.html │ │ │ │ ├── tenants │ │ │ │ │ ├── TableTenantsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.tenants.tpl.html │ │ │ │ ├── topologies │ │ │ │ │ ├── TableTopologiesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.topologies.tpl.html │ │ │ │ ├── topologyCacheGroupServers │ │ │ │ │ ├── TableTopologyCacheGroupServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.topologyCacheGroupServers.tpl.html │ │ │ │ ├── topologyCacheGroups │ │ │ │ │ ├── TableSelectTopologyCacheGroupsController.js │ │ │ │ │ ├── TableTopologyCacheGroupsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── table.selectTopologyCacheGroups.tpl.html │ │ │ │ │ └── table.topologyCacheGroups.tpl.html │ │ │ │ ├── topologyDeliveryServices │ │ │ │ │ ├── TableTopologyDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.topologyDeliveryServices.tpl.html │ │ │ │ ├── topologyServers │ │ │ │ │ ├── TableTopologyServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.topologyServers.tpl.html │ │ │ │ ├── typeCacheGroups │ │ │ │ │ ├── TableTypeCacheGroupsController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.typeCacheGroups.tpl.html │ │ │ │ ├── typeDeliveryServices │ │ │ │ │ ├── TableTypeDeliveryServicesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.typeDeliveryServices.tpl.html │ │ │ │ ├── typeServers │ │ │ │ │ ├── TableTypeServersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.typeServers.tpl.html │ │ │ │ ├── typeStaticDnsEntries │ │ │ │ │ ├── TableTypeStaticDnsEntriesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.typeStaticDnsEntries.tpl.html │ │ │ │ ├── types │ │ │ │ │ ├── TableTypesController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.types.tpl.html │ │ │ │ └── users │ │ │ │ │ ├── TableUsersController.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── table.users.tpl.html │ │ │ └── widget │ │ │ │ ├── cacheGroups │ │ │ │ ├── WidgetCacheGroupsController.js │ │ │ │ ├── _widget.cacheGroups.scss │ │ │ │ ├── index.js │ │ │ │ └── widget.cacheGroups.tpl.html │ │ │ │ ├── capacity │ │ │ │ ├── WidgetCapacityController.js │ │ │ │ ├── _widget.capacity.scss │ │ │ │ ├── index.js │ │ │ │ └── widget.capacity.tpl.html │ │ │ │ ├── cdnChart │ │ │ │ ├── WidgetCDNChartController.js │ │ │ │ ├── _widget.cdnChart.scss │ │ │ │ ├── index.js │ │ │ │ └── widget.cdnChart.tpl.html │ │ │ │ ├── changeLogs │ │ │ │ ├── WidgetChangeLogsController.js │ │ │ │ ├── index.js │ │ │ │ └── widget.changeLogs.tpl.html │ │ │ │ ├── dashboardStats │ │ │ │ ├── WidgetDashboardStatsController.js │ │ │ │ ├── index.js │ │ │ │ └── widget.dashboardStats.tpl.html │ │ │ │ ├── deliveryServices │ │ │ │ ├── WidgetDeliveryServicesController.js │ │ │ │ ├── _widget.deliveryServices.scss │ │ │ │ ├── index.js │ │ │ │ └── widget.deliveryServices.tpl.html │ │ │ │ └── routing │ │ │ │ ├── WidgetRoutingController.js │ │ │ │ ├── _widget.routing.scss │ │ │ │ ├── index.js │ │ │ │ └── widget.routing.tpl.html │ │ ├── service │ │ │ ├── application │ │ │ │ ├── ApplicationService.js │ │ │ │ └── index.js │ │ │ └── utils │ │ │ │ ├── CollectionUtils.js │ │ │ │ ├── CollectionUtils.spec.js │ │ │ │ ├── DateUtils.js │ │ │ │ ├── DeliveryServiceUtils.js │ │ │ │ ├── FileUtils.js │ │ │ │ ├── FormUtils.js │ │ │ │ ├── LocationUtils.js │ │ │ │ ├── NumberUtils.js │ │ │ │ ├── PermissionUtils.js │ │ │ │ ├── ServerUtils.js │ │ │ │ ├── StringUtils.js │ │ │ │ ├── TenantUtils.js │ │ │ │ ├── TopologyUtils.js │ │ │ │ ├── angular.ui.bootstrap.d.ts │ │ │ │ └── index.js │ │ └── templates │ │ │ └── master.tpl.html │ │ ├── index.html │ │ ├── modules │ │ ├── private │ │ │ ├── PrivateController.js │ │ │ ├── asns │ │ │ │ ├── asns.tpl.html │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ └── new │ │ │ │ │ └── index.js │ │ │ ├── cacheChecks │ │ │ │ ├── CacheChecksController.js │ │ │ │ ├── cacheChecks.tpl.html │ │ │ │ └── index.js │ │ │ ├── cacheGroups │ │ │ │ ├── asns │ │ │ │ │ └── index.js │ │ │ │ ├── cacheGroups.tpl.html │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ └── servers │ │ │ │ │ └── index.js │ │ │ ├── cacheStats │ │ │ │ ├── CacheStatsController.js │ │ │ │ ├── cacheStats.tpl.html │ │ │ │ └── index.js │ │ │ ├── capabilities │ │ │ │ ├── capabilities.tpl.html │ │ │ │ ├── endpoints │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ └── users │ │ │ │ │ └── index.js │ │ │ ├── cdniConfigRequests │ │ │ │ ├── cdniConfigRequests.tpl.html │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ └── view │ │ │ │ │ └── index.js │ │ │ ├── cdns │ │ │ │ ├── cdns.tpl.html │ │ │ │ ├── config │ │ │ │ │ ├── ConfigController.js │ │ │ │ │ ├── _config.scss │ │ │ │ │ ├── config.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServices │ │ │ │ │ └── index.js │ │ │ │ ├── dnssecKeys │ │ │ │ │ ├── cdnDnssecKeys.tpl.html │ │ │ │ │ ├── generate │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── regenerateKsk │ │ │ │ │ │ └── index.js │ │ │ │ │ └── view │ │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── federations │ │ │ │ │ ├── cdnFederations.tpl.html │ │ │ │ │ ├── deliveryServices │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── edit │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── list │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── new │ │ │ │ │ │ └── index.js │ │ │ │ │ └── users │ │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── notifications │ │ │ │ │ └── index.js │ │ │ │ └── servers │ │ │ │ │ └── index.js │ │ │ ├── certExpirations │ │ │ │ ├── certExpirations.tpl.html │ │ │ │ ├── index.js │ │ │ │ └── list │ │ │ │ │ └── index.js │ │ │ ├── changeLogs │ │ │ │ ├── changeLogs.tpl.html │ │ │ │ ├── index.js │ │ │ │ └── list │ │ │ │ │ └── index.js │ │ │ ├── coordinates │ │ │ │ ├── coordinates.tpl.html │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ └── new │ │ │ │ │ └── index.js │ │ │ ├── custom │ │ │ │ ├── CustomController.js │ │ │ │ ├── _custom.scss │ │ │ │ ├── custom.tpl.html │ │ │ │ └── index.js │ │ │ ├── dashboard │ │ │ │ ├── DashboardController.js │ │ │ │ ├── dashboard.tpl.html │ │ │ │ ├── index.js │ │ │ │ └── view │ │ │ │ │ └── index.js │ │ │ ├── deliveryServiceRequests │ │ │ │ ├── DeliveryServiceRequestsController.js │ │ │ │ ├── comments │ │ │ │ │ └── index.js │ │ │ │ ├── compare │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServiceRequests.tpl.html │ │ │ │ ├── edit │ │ │ │ │ ├── FormEditDeliveryServiceRequestController.js │ │ │ │ │ ├── deliveryServiceRequestsEdit.tpl.html │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── list │ │ │ │ │ └── index.js │ │ │ ├── deliveryServices │ │ │ │ ├── charts │ │ │ │ │ ├── ChartsController.js │ │ │ │ │ ├── charts.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── view │ │ │ │ │ │ └── index.js │ │ │ │ ├── clone │ │ │ │ │ └── index.js │ │ │ │ ├── compare │ │ │ │ │ └── index.js │ │ │ │ ├── consistentHashRegex │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServices.tpl.html │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── jobs │ │ │ │ │ ├── DeliveryServiceJobsController.js │ │ │ │ │ ├── deliveryServiceJobs.tpl.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── list │ │ │ │ │ │ └── index.js │ │ │ │ │ └── new │ │ │ │ │ │ └── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── origins │ │ │ │ │ └── index.js │ │ │ │ ├── regexes │ │ │ │ │ ├── DeliveryServiceRegexesController.js │ │ │ │ │ ├── deliveryServiceRegexes.tpl.html │ │ │ │ │ ├── edit │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── list │ │ │ │ │ │ └── index.js │ │ │ │ │ └── new │ │ │ │ │ │ └── index.js │ │ │ │ ├── servers │ │ │ │ │ └── index.js │ │ │ │ ├── sslKeys │ │ │ │ │ ├── DeliveryServiceSslKeysController.js │ │ │ │ │ ├── deliveryServiceSslKeys.tpl.html │ │ │ │ │ ├── generate │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── view │ │ │ │ │ │ └── index.js │ │ │ │ ├── staticDnsEntries │ │ │ │ │ ├── deliveryServiceStaticDnsEntries.tpl.html │ │ │ │ │ ├── edit │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── list │ │ │ │ │ │ └── index.js │ │ │ │ │ └── new │ │ │ │ │ │ └── index.js │ │ │ │ ├── targets │ │ │ │ │ ├── DeliveryServiceTargetsController.js │ │ │ │ │ ├── deliveryServiceTargets.tpl.html │ │ │ │ │ ├── edit │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── list │ │ │ │ │ │ └── index.js │ │ │ │ │ └── new │ │ │ │ │ │ └── index.js │ │ │ │ ├── uriSigningKeys │ │ │ │ │ ├── DeliveryServiceUriSigningKeysController.js │ │ │ │ │ ├── _uriSigningKeys.scss │ │ │ │ │ ├── deliveryServiceUriSigningKeys.tpl.html │ │ │ │ │ └── index.js │ │ │ │ └── urlSigKeys │ │ │ │ │ ├── DeliveryServiceUrlSigKeysController.js │ │ │ │ │ ├── deliveryServiceUrlSigKeys.tpl.html │ │ │ │ │ └── index.js │ │ │ ├── divisions │ │ │ │ ├── _divisions.scss │ │ │ │ ├── divisions.tpl.html │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ └── regions │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── iso │ │ │ │ ├── index.js │ │ │ │ └── iso.tpl.html │ │ │ ├── jobs │ │ │ │ ├── index.js │ │ │ │ ├── jobs.tpl.html │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ └── new │ │ │ │ │ └── index.js │ │ │ ├── notifications │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ └── notifications.tpl.html │ │ │ ├── origins │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ └── origins.tpl.html │ │ │ ├── parameters │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── parameters.tpl.html │ │ │ │ └── profiles │ │ │ │ │ └── index.js │ │ │ ├── physLocations │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── physLocations.tpl.html │ │ │ │ └── servers │ │ │ │ │ └── index.js │ │ │ ├── private.tpl.html │ │ │ ├── profiles │ │ │ │ ├── compare │ │ │ │ │ ├── diff │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── parameters │ │ │ │ │ └── index.js │ │ │ │ └── profiles.tpl.html │ │ │ ├── regions │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── physLocations │ │ │ │ │ └── index.js │ │ │ │ └── regions.tpl.html │ │ │ ├── roles │ │ │ │ ├── capabilities │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── roles.tpl.html │ │ │ │ └── users │ │ │ │ │ └── index.js │ │ │ ├── serverCapabilities │ │ │ │ ├── deliveryServices │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── serverCapabilities.tpl.html │ │ │ │ └── servers │ │ │ │ │ └── index.js │ │ │ ├── servers │ │ │ │ ├── capabilities │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServices │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ └── servers.tpl.html │ │ │ ├── serviceCategories │ │ │ │ ├── deliveryServices │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ └── serviceCategories.tpl.html │ │ │ ├── ssl │ │ │ │ ├── index.js │ │ │ │ └── inspect-cert.tpl.html │ │ │ ├── statuses │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── servers │ │ │ │ │ └── index.js │ │ │ │ └── statuses.tpl.html │ │ │ ├── tenants │ │ │ │ ├── deliveryServices │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── tenants.tpl.html │ │ │ │ └── users │ │ │ │ │ └── index.js │ │ │ ├── topologies │ │ │ │ ├── cacheGroups │ │ │ │ │ └── index.js │ │ │ │ ├── clone │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServices │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── servers │ │ │ │ │ └── index.js │ │ │ │ └── topologies.tpl.html │ │ │ ├── types │ │ │ │ ├── cacheGroups │ │ │ │ │ └── index.js │ │ │ │ ├── deliveryServices │ │ │ │ │ └── index.js │ │ │ │ ├── edit │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ │ └── index.js │ │ │ │ ├── servers │ │ │ │ │ └── index.js │ │ │ │ ├── staticDnsEntries │ │ │ │ │ └── index.js │ │ │ │ └── types.tpl.html │ │ │ ├── user │ │ │ │ ├── UserController.js │ │ │ │ ├── edit │ │ │ │ │ ├── UserEditController.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── user.tpl.html │ │ │ └── users │ │ │ │ ├── UsersController.js │ │ │ │ ├── edit │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── list │ │ │ │ └── index.js │ │ │ │ ├── new │ │ │ │ └── index.js │ │ │ │ ├── register │ │ │ │ └── index.js │ │ │ │ └── users.tpl.html │ │ └── public │ │ │ ├── index.js │ │ │ ├── login │ │ │ ├── LoginController.js │ │ │ ├── index.js │ │ │ └── login.tpl.html │ │ │ ├── public.tpl.html │ │ │ └── sso │ │ │ ├── SsoController.js │ │ │ └── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── scripts │ │ ├── config.js │ │ └── shared-libs.js │ │ ├── styles │ │ ├── loading.scss │ │ ├── main.scss │ │ └── theme.scss │ │ ├── traffic_portal_properties.json │ │ └── traffic_portal_release.json ├── build │ ├── README.md │ ├── build_rpm.sh │ ├── etc │ │ ├── init.d │ │ │ └── traffic_portal │ │ └── logrotate.d │ │ │ ├── traffic_portal │ │ │ └── traffic_portal-access │ └── traffic_portal.spec ├── conf │ ├── config.js │ └── configDev.js ├── etc │ └── systemd │ │ └── system │ │ └── traffic_portal.service ├── grunt │ ├── browserify.js │ ├── clean.js │ ├── copy.js │ ├── dart-sass.js │ ├── express.js │ ├── globalConfig.js │ ├── html2js.js │ ├── string-replace.js │ ├── uglify.js │ └── watch.js ├── karma.conf.js ├── package-lock.json ├── package.json ├── server.js ├── server │ └── log │ │ └── .keep └── test │ └── integration │ ├── .gitignore │ ├── CommonUtils │ ├── API.ts │ ├── Readme.md │ ├── index.ts │ └── utils.ts │ ├── Data │ ├── asns.ts │ ├── cachegroup.ts │ ├── cdn.ts │ ├── coordinates.ts │ ├── deliveryservicerequest.ts │ ├── deliveryservices.ts │ ├── divisions.ts │ ├── index.ts │ ├── jobs.ts │ ├── login.ts │ ├── origins.ts │ ├── parameters.ts │ ├── physlocations.ts │ ├── prerequisites.ts │ ├── profiles.ts │ ├── regions.ts │ ├── servercapabilities.ts │ ├── servers.ts │ ├── serverservercapabilities.ts │ ├── servicecategories.ts │ ├── statuses.ts │ ├── tenant.ts │ ├── topologies.ts │ ├── types.ts │ └── users.ts │ ├── Downloads │ └── Readme.md │ ├── PageObjects │ ├── ASNs.po.ts │ ├── BasePage.po.ts │ ├── CDNPage.po.ts │ ├── CacheGroup.po.ts │ ├── CoordinatesPage.po.ts │ ├── DeliveryServicePage.po.ts │ ├── DeliveryServiceRequestPage.po.ts │ ├── Divisions.po.ts │ ├── Jobs.po.ts │ ├── LoginPage.po.ts │ ├── OriginsPage.po.ts │ ├── ParametersPage.po.ts │ ├── PhysLocationsPage.po.ts │ ├── ProfilesPage.po.ts │ ├── RegionsPage.po.ts │ ├── ServerCapabilitiesPage.po.ts │ ├── ServersPage.po.ts │ ├── ServiceCategories.po.ts │ ├── SideNavigationPage.po.ts │ ├── Statuses.po.ts │ ├── TenantsPage.po.ts │ ├── TopNavigationPage.po.ts │ ├── TopologiesPage.po.ts │ ├── Types.po.ts │ └── UsersPage.po.ts │ ├── README.md │ ├── config.json │ ├── config.model.ts │ ├── config.ts │ ├── package-lock.json │ ├── package.json │ ├── runtests.bash │ ├── specs │ ├── ASNs.spec.ts │ ├── CDNs.spec.ts │ ├── CacheGroup.spec.ts │ ├── Coordinates.spec.ts │ ├── DeliveryServiceRequest.spec.ts │ ├── DeliveryServices.spec.ts │ ├── Divisions.spec.ts │ ├── Jobs.spec.ts │ ├── Login.spec.ts │ ├── Origins.spec.ts │ ├── Parameters.spec.ts │ ├── PhysLocations.spec.ts │ ├── Profiles.spec.ts │ ├── Regions.spec.ts │ ├── ServerCapabilities.spec.ts │ ├── ServerServerCapabilities.spec.ts │ ├── Servers.spec.ts │ ├── ServiceCategories.spec.ts │ ├── Statuses.spec.ts │ ├── Tenants.spec.ts │ ├── Topologies.spec.ts │ ├── Types.spec.ts │ └── Users.spec.ts │ ├── tsconfig.json │ └── types │ ├── jasmine-reporters.d.ts │ └── protractor-beautiful-reporter.d.ts ├── traffic_router ├── .gitignore ├── build │ ├── build_rpm.sh │ └── pom.xml ├── configuration │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── traffic_control │ │ └── traffic_router │ │ └── configuration │ │ └── ConfigurationListener.java ├── connector │ ├── .gitignore │ ├── build │ │ └── pmd │ │ │ └── ruleset.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── traffic_control │ │ │ └── traffic_router │ │ │ ├── protocol │ │ │ ├── LanguidNioProtocol.java │ │ │ ├── LanguidPoller.java │ │ │ ├── LanguidProtocol.java │ │ │ ├── RouterNioEndpoint.java │ │ │ ├── RouterProtocolHandler.java │ │ │ ├── RouterSslImplementation.java │ │ │ └── RouterSslUtil.java │ │ │ ├── secure │ │ │ ├── CertificateDataConverter.java │ │ │ ├── CertificateDataListener.java │ │ │ ├── CertificateDecoder.java │ │ │ ├── CertificateRegistry.java │ │ │ ├── HandshakeData.java │ │ │ ├── KeyManager.java │ │ │ └── PrivateKeyDecoder.java │ │ │ ├── tomcat │ │ │ └── TomcatLifecycleListener.java │ │ │ └── utils │ │ │ └── HttpsProperties.java │ │ └── test │ │ └── java │ │ ├── conf │ │ └── https.properties │ │ ├── protocol │ │ └── RouterSslImplementationTest.java │ │ ├── secure │ │ ├── CertificateDataConverterTest.java │ │ ├── CertificateDataListenerTest.java │ │ ├── CertificateRegistryTest.java │ │ ├── KeyManagerTest.java │ │ └── TomcatLifecycleListenerTest.java │ │ └── utils │ │ └── HttpsPropertiesTest.java ├── core │ ├── .gitignore │ ├── .pmd │ ├── build │ │ └── pmd │ │ │ └── ruleset.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── conf │ │ │ ├── COMODOHigh-AssuranceSecureServerCA.crt │ │ │ ├── cache.properties │ │ │ ├── dns.properties │ │ │ ├── http.properties │ │ │ ├── https.properties │ │ │ ├── log4j2.xml │ │ │ ├── logging.properties │ │ │ ├── server.xml │ │ │ ├── startup.properties │ │ │ ├── traffic_monitor.properties │ │ │ ├── traffic_ops.properties │ │ │ └── web.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── traffic_control │ │ │ │ └── traffic_router │ │ │ │ ├── api │ │ │ │ └── controllers │ │ │ │ │ ├── ConsistentHashController.java │ │ │ │ │ ├── CoverageZoneController.java │ │ │ │ │ ├── DeepCoverageZoneController.java │ │ │ │ │ ├── DeliveryServicesController.java │ │ │ │ │ ├── LocationController.java │ │ │ │ │ ├── StatsController.java │ │ │ │ │ ├── SteeringController.java │ │ │ │ │ └── ZonesController.java │ │ │ │ └── core │ │ │ │ ├── config │ │ │ │ ├── CertificateChecker.java │ │ │ │ ├── ConfigHandler.java │ │ │ │ ├── ParseException.java │ │ │ │ └── WatcherConfig.java │ │ │ │ ├── dns │ │ │ │ ├── DNSAccessEventBuilder.java │ │ │ │ ├── DNSAccessRecord.java │ │ │ │ ├── DNSException.java │ │ │ │ ├── DnsSecKeyPair.java │ │ │ │ ├── DnsSecKeyPairImpl.java │ │ │ │ ├── NameServer.java │ │ │ │ ├── NameServerMain.java │ │ │ │ ├── RRSIGCacheKey.java │ │ │ │ ├── RRSetsBuilder.java │ │ │ │ ├── RRsetKey.java │ │ │ │ ├── SignatureManager.java │ │ │ │ ├── SignedZoneKey.java │ │ │ │ ├── ZoneKey.java │ │ │ │ ├── ZoneManager.java │ │ │ │ ├── ZoneSigner.java │ │ │ │ ├── ZoneSignerImpl.java │ │ │ │ ├── ZoneUtils.java │ │ │ │ └── protocol │ │ │ │ │ ├── AbstractProtocol.java │ │ │ │ │ ├── Protocol.java │ │ │ │ │ ├── SocketHandler.java │ │ │ │ │ ├── TCP.java │ │ │ │ │ └── UDP.java │ │ │ │ ├── ds │ │ │ │ ├── DeliveryService.java │ │ │ │ ├── DeliveryServiceMatcher.java │ │ │ │ ├── Dispersion.java │ │ │ │ ├── LetsEncryptDnsChallenge.java │ │ │ │ ├── LetsEncryptDnsChallengeWatcher.java │ │ │ │ ├── Steering.java │ │ │ │ ├── SteeringFilter.java │ │ │ │ ├── SteeringGeolocationComparator.java │ │ │ │ ├── SteeringRegistry.java │ │ │ │ ├── SteeringResult.java │ │ │ │ ├── SteeringTarget.java │ │ │ │ └── SteeringWatcher.java │ │ │ │ ├── edge │ │ │ │ ├── Cache.java │ │ │ │ ├── CacheLocation.java │ │ │ │ ├── CacheRegister.java │ │ │ │ ├── InetRecord.java │ │ │ │ ├── Location.java │ │ │ │ ├── Node.java │ │ │ │ ├── PropertiesAndCaches.java │ │ │ │ ├── Resolver.java │ │ │ │ └── TrafficRouterLocation.java │ │ │ │ ├── hash │ │ │ │ ├── ConsistentHasher.java │ │ │ │ ├── DefaultHashable.java │ │ │ │ ├── Hashable.java │ │ │ │ ├── MD5HashFunction.java │ │ │ │ └── NumberSearcher.java │ │ │ │ ├── http │ │ │ │ ├── BufferedResponse.java │ │ │ │ ├── BufferedResponseFilter.java │ │ │ │ ├── HTTPAccessEventBuilder.java │ │ │ │ ├── HTTPAccessRecord.java │ │ │ │ ├── HttpAccessRequestHeaders.java │ │ │ │ └── RouterFilter.java │ │ │ │ ├── loc │ │ │ │ ├── AbstractServiceUpdater.java │ │ │ │ ├── AnonymousIp.java │ │ │ │ ├── AnonymousIpConfigUpdater.java │ │ │ │ ├── AnonymousIpDatabaseService.java │ │ │ │ ├── AnonymousIpDatabaseUpdater.java │ │ │ │ ├── AnonymousIpWhitelist.java │ │ │ │ ├── DeepNetworkUpdater.java │ │ │ │ ├── Federation.java │ │ │ │ ├── FederationMapping.java │ │ │ │ ├── FederationMappingBuilder.java │ │ │ │ ├── FederationRegistry.java │ │ │ │ ├── FederationsBuilder.java │ │ │ │ ├── FederationsWatcher.java │ │ │ │ ├── GeolocationDatabaseUpdater.java │ │ │ │ ├── MaxmindGeolocationService.java │ │ │ │ ├── NetworkNode.java │ │ │ │ ├── NetworkNodeException.java │ │ │ │ ├── NetworkUpdater.java │ │ │ │ ├── RegionalGeo.java │ │ │ │ ├── RegionalGeoCoordinateRange.java │ │ │ │ ├── RegionalGeoDsvc.java │ │ │ │ ├── RegionalGeoResult.java │ │ │ │ ├── RegionalGeoRule.java │ │ │ │ └── RegionalGeoUpdater.java │ │ │ │ ├── monitor │ │ │ │ ├── TrafficMonitorResourceUrl.java │ │ │ │ └── TrafficMonitorWatcher.java │ │ │ │ ├── request │ │ │ │ ├── DNSRequest.java │ │ │ │ ├── HTTPRequest.java │ │ │ │ ├── Request.java │ │ │ │ └── RequestMatcher.java │ │ │ │ ├── router │ │ │ │ ├── DNSRouteResult.java │ │ │ │ ├── HTTPRouteResult.java │ │ │ │ ├── LocationComparator.java │ │ │ │ ├── RouteResult.java │ │ │ │ ├── StatTracker.java │ │ │ │ ├── TrafficRouter.java │ │ │ │ └── TrafficRouterManager.java │ │ │ │ ├── secure │ │ │ │ ├── CertificatesClient.java │ │ │ │ ├── CertificatesPoller.java │ │ │ │ ├── CertificatesPublisher.java │ │ │ │ └── CertificatesResponse.java │ │ │ │ ├── status │ │ │ │ └── model │ │ │ │ │ ├── CacheModel.java │ │ │ │ │ └── LocationModel.java │ │ │ │ └── util │ │ │ │ ├── AbstractResourceWatcher.java │ │ │ │ ├── AbstractUpdatable.java │ │ │ │ ├── CidrAddress.java │ │ │ │ ├── ComparableStringByLength.java │ │ │ │ ├── ComparableTreeSet.java │ │ │ │ ├── Config.java │ │ │ │ ├── DataExporter.java │ │ │ │ ├── DefaultResourceUrl.java │ │ │ │ ├── FederationExporter.java │ │ │ │ ├── Fetcher.java │ │ │ │ ├── JsonUtils.java │ │ │ │ ├── JsonUtilsException.java │ │ │ │ ├── LanguidState.java │ │ │ │ ├── PeriodicResourceUpdater.java │ │ │ │ ├── ProtectedFetcher.java │ │ │ │ ├── ResourceUrl.java │ │ │ │ ├── StringProtector.java │ │ │ │ └── TrafficOpsUtils.java │ │ ├── lib │ │ │ ├── logrotate │ │ │ │ └── traffic_router │ │ │ └── systemd │ │ │ │ └── system │ │ │ │ └── traffic_router.service │ │ ├── resources │ │ │ ├── applicationProperties.xml │ │ │ ├── dns-traffic-router.xml │ │ │ └── version.prop │ │ ├── scripts │ │ │ ├── postinstall.sh │ │ │ ├── preinstall.sh │ │ │ ├── preremove.sh │ │ │ └── pretrans.sh │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── applicationContext.xml │ │ │ ├── status-servlet.xml │ │ │ └── web.xml │ │ │ ├── clientaccesspolicy.xml │ │ │ └── crossdomain.xml │ │ └── test │ │ ├── conf │ │ ├── https.properties │ │ └── log4j2.xml │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── traffic_control │ │ │ └── traffic_router │ │ │ └── core │ │ │ ├── CatalinaTrafficRouter.java │ │ │ ├── TestBase.java │ │ │ ├── TrafficRouterStart.java │ │ │ ├── config │ │ │ ├── CertificateCheckerTest.java │ │ │ └── ConfigHandlerTest.java │ │ │ ├── dns │ │ │ ├── DNSAccessEventBuilderTest.java │ │ │ ├── DNSExceptionTest.java │ │ │ ├── NameServerMainTest.java │ │ │ ├── NameServerTest.java │ │ │ ├── ZoneManagerTest.java │ │ │ ├── ZoneManagerUnitTest.java │ │ │ ├── ZoneSignerImplTest.java │ │ │ ├── keys │ │ │ │ └── RRSetsBuilderTest.java │ │ │ └── protocol │ │ │ │ ├── AbstractProtocolTest.java │ │ │ │ ├── TCPTest.java │ │ │ │ └── UDPTest.java │ │ │ ├── ds │ │ │ ├── DeliveryServiceMatcherTest.java │ │ │ ├── DeliveryServiceTest.java │ │ │ ├── SteeringGeolocationComparatorTest.java │ │ │ └── SteeringRegistryTest.java │ │ │ ├── edge │ │ │ └── CacheRegisterTest.java │ │ │ ├── external │ │ │ ├── BufferedResponseTest.java │ │ │ ├── ConsistentHashTest.java │ │ │ ├── CoverageZoneTest.java │ │ │ ├── DeliveryServicesTest.java │ │ │ ├── ExternalTestSuite.java │ │ │ ├── HttpDataServer.java │ │ │ ├── LocationsTest.java │ │ │ ├── RouterTest.java │ │ │ ├── StatsTest.java │ │ │ ├── SteeringTest.java │ │ │ └── ZonesTest.java │ │ │ ├── hashing │ │ │ ├── BinarySearchTest.java │ │ │ ├── ConsistentHasherTest.java │ │ │ ├── HashableTest.java │ │ │ └── NumberSearcherTest.java │ │ │ ├── http │ │ │ └── HTTPAccessEventBuilderTest.java │ │ │ ├── loc │ │ │ ├── AbstractServiceUpdaterTest.java │ │ │ ├── AnonymousIpDatabaseServiceTest.java │ │ │ ├── AnonymousIpTest.java │ │ │ ├── AnonymousIpWhitelistTest.java │ │ │ ├── CoverageZoneTest.java │ │ │ ├── FederationMappingBuilderTest.java │ │ │ ├── FederationRegistryTest.java │ │ │ ├── FederationsBuilderTest.java │ │ │ ├── GeoTest.java │ │ │ ├── MaxmindGeoIP2Test.java │ │ │ ├── MaxmindGeolocationServiceTest.java │ │ │ ├── NetworkNodeTest.java │ │ │ ├── NetworkNodeUnitTest.java │ │ │ ├── RegionalGeoRuleTest.java │ │ │ └── RegionalGeoTest.java │ │ │ ├── request │ │ │ └── RequestMatcherTest.java │ │ │ ├── router │ │ │ ├── CacheLocationComparatorTest.java │ │ │ ├── CacheRegisterBuilder.java │ │ │ ├── DNSRoutingMissesTest.java │ │ │ ├── DeliveryServiceHTTPRoutingMissesTest.java │ │ │ ├── DnsNameGenerator.java │ │ │ ├── GeoSortSteeringResultsTest.java │ │ │ ├── StatTrackerTest.java │ │ │ ├── StatelessTrafficRouterTest.java │ │ │ ├── TrafficRouterHTTPRoutingMissesTest.java │ │ │ └── TrafficRouterTest.java │ │ │ ├── secure │ │ │ ├── CertificatesClientTest.java │ │ │ └── Pkcs1Test.java │ │ │ └── util │ │ │ ├── AbstractResourceWatcherTest.java │ │ │ ├── ComparableStringByLengthTest.java │ │ │ ├── ExternalTest.java │ │ │ ├── FetcherTest.java │ │ │ └── IntegrationTest.java │ │ └── resources │ │ ├── Readme.md │ │ ├── anonymous_ip.json │ │ ├── anonymous_ip_no_whitelist.json │ │ ├── api │ │ └── 5.0 │ │ │ ├── cdns │ │ │ └── name │ │ │ │ └── thecdn │ │ │ │ ├── sslkeys │ │ │ │ └── sslkeys-missing-1 │ │ │ ├── federations │ │ │ └── all │ │ │ ├── steering │ │ │ └── steering2 │ │ ├── czf.json │ │ ├── czmap.json │ │ ├── dczmap.json │ │ ├── deliveryServices.json │ │ ├── deliveryServices_missingCert.json │ │ ├── deliveryServices_missingDSName.json │ │ ├── geo │ │ └── GeoLite2-City.mmdb.gz │ │ ├── keystore.jks │ │ ├── publish │ │ ├── CrConfig.json │ │ ├── CrConfig2.json │ │ ├── CrConfig3.json │ │ ├── CrConfig4.json │ │ ├── CrConfig5.json │ │ └── CrStates │ │ └── regional_geoblock.json ├── geolocation │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── traffic_control │ │ │ └── traffic_router │ │ │ └── geolocation │ │ │ ├── Geolocation.java │ │ │ ├── GeolocationException.java │ │ │ └── GeolocationService.java │ │ └── test │ │ └── java │ │ └── geolocation │ │ └── GeolocationTest.java ├── neustar │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── traffic_control │ │ │ └── traffic_router │ │ │ └── neustar │ │ │ ├── NeustarGeolocationService.java │ │ │ ├── configuration │ │ │ ├── NeustarConfiguration.java │ │ │ ├── ServiceRefresher.java │ │ │ └── TrafficRouterConfigurationListener.java │ │ │ ├── data │ │ │ ├── HttpClient.java │ │ │ ├── NeustarDatabaseUpdater.java │ │ │ └── TarExtractor.java │ │ │ └── files │ │ │ └── FilesMover.java │ │ └── test │ │ └── java │ │ ├── configuration │ │ ├── PeriodicUpdateConfigurationTest.java │ │ ├── ServiceRefresherTest.java │ │ └── TrafficRouterConfigurationListenerTest.java │ │ ├── data │ │ ├── NeustarDatabaseUpdaterTest.java │ │ └── TarExtractorTest.java │ │ ├── files │ │ └── FilesMoverTest.java │ │ ├── geolocation │ │ └── NeustarGeolocationServiceTest.java │ │ └── neustar │ │ └── GPDatabaseReaderBuilderTest.java ├── pom.xml ├── shared │ ├── .gitignore │ ├── build │ │ └── pmd │ │ │ └── ruleset.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── traffic_control │ │ │ └── traffic_router │ │ │ ├── secure │ │ │ ├── BindPrivateKey.java │ │ │ ├── Pkcs.java │ │ │ ├── Pkcs1.java │ │ │ ├── Pkcs1KeySpecDecoder.java │ │ │ └── Pkcs8.java │ │ │ └── shared │ │ │ ├── Certificate.java │ │ │ ├── CertificateData.java │ │ │ ├── DeliveryServiceCertificates.java │ │ │ ├── DeliveryServiceCertificatesMBean.java │ │ │ ├── IsEqualCollection.java │ │ │ ├── SigningData.java │ │ │ └── ZoneTestRecords.java │ │ └── test │ │ └── java │ │ ├── secure │ │ └── BindPrivateKeyTest.java │ │ └── shared │ │ └── DeliveryServiceCertificatesTest.java ├── tests │ ├── .env │ ├── Dockerfile-test-alpine │ ├── Dockerfile-test-centos │ └── docker-compose.yml ├── tomcat-rpm │ ├── build_rpm.sh │ ├── tomcat.service │ └── tomcat.spec └── ultimate-test-harness │ ├── README.md │ ├── dns_test.go │ ├── http_test.go │ ├── main_test.go │ └── traffic_ops_test.go ├── traffic_server ├── README.md ├── _tsb │ ├── .dependency_license │ ├── .gitignore │ ├── Dockerfile │ ├── cjose.pic.patch │ ├── docker-compose.yml │ ├── jansson.pic.patch │ ├── patches.yml │ ├── repos.yml │ ├── run.sh │ ├── traffic_server_jemalloc │ ├── trafficserver.env │ └── trafficserver.spec ├── plugins │ └── astats_over_http │ │ ├── CHANGELOG │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── astats-git-build.spec │ │ ├── astats.config.example │ │ ├── astats_over_http.c │ │ └── astats_over_http.spec └── spec │ └── trafficserver.spec ├── traffic_stats ├── build │ ├── build_rpm.sh │ └── traffic_stats.spec ├── influxdb │ ├── config.go │ └── query.go ├── influxdb_tools │ ├── create │ │ └── create_ts_databases.go │ └── sync │ │ ├── sync_test.go │ │ └── sync_ts_databases.go ├── traffic_stats.cfg ├── traffic_stats.go ├── traffic_stats.init ├── traffic_stats.logrotate ├── traffic_stats_seelog.xml ├── traffic_stats_test.go └── trafficcontrol-scenes │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── cypress.json │ ├── cypress │ └── integration │ │ └── 01-smoke.spec.ts │ ├── jest-setup.js │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── components │ │ ├── App │ │ │ ├── App.tsx │ │ │ └── index.tsx │ │ └── Routes │ │ │ ├── Routes.tsx │ │ │ └── index.tsx │ ├── const.ts │ ├── module.ts │ ├── pages │ │ ├── CacheGroup │ │ │ ├── CacheGroup.tsx │ │ │ ├── index.tsx │ │ │ ├── panels │ │ │ │ ├── bandwidth.tsx │ │ │ │ └── connections.tsx │ │ │ └── scene.tsx │ │ ├── DeliveryService │ │ │ ├── DeliveryService.tsx │ │ │ ├── index.tsx │ │ │ ├── panels │ │ │ │ ├── bandwidth-cg.tsx │ │ │ │ ├── bandwidth.tsx │ │ │ │ └── tps.tsx │ │ │ └── scene.tsx │ │ └── Server │ │ │ ├── Server.tsx │ │ │ ├── index.tsx │ │ │ ├── panels │ │ │ ├── bandwidth.tsx │ │ │ ├── connections.tsx │ │ │ ├── cpu.tsx │ │ │ ├── index.tsx │ │ │ ├── load-average.tsx │ │ │ ├── memory.tsx │ │ │ ├── netstat.tsx │ │ │ ├── read-write-time.tsx │ │ │ └── wrap-count.tsx │ │ │ └── scene.tsx │ ├── plugin.json │ └── utils │ │ ├── utils.plugin.ts │ │ └── utils.routing.ts │ ├── tsconfig.json │ └── webpack │ ├── constants.ts │ ├── utils.ts │ └── webpack.config.ts └── vendor ├── code.cloudfoundry.org └── bytefmt │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── bytes.go │ └── package.go ├── github.com ├── Azure │ └── go-ntlmssp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── authenticate_message.go │ │ ├── authheader.go │ │ ├── avids.go │ │ ├── challenge_message.go │ │ ├── messageheader.go │ │ ├── negotiate_flags.go │ │ ├── negotiate_message.go │ │ ├── negotiator.go │ │ ├── nlmp.go │ │ ├── unicode.go │ │ ├── varfield.go │ │ └── version.go ├── GehirnInc │ └── crypt │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── common │ │ ├── base64.go │ │ ├── doc.go │ │ └── salt.go │ │ ├── crypt.go │ │ ├── internal │ │ └── utils.go │ │ └── md5_crypt │ │ └── md5_crypt.go ├── Shopify │ └── sarama │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── acl_bindings.go │ │ ├── acl_create_request.go │ │ ├── acl_create_response.go │ │ ├── acl_delete_request.go │ │ ├── acl_delete_response.go │ │ ├── acl_describe_request.go │ │ ├── acl_describe_response.go │ │ ├── acl_filter.go │ │ ├── acl_types.go │ │ ├── add_offsets_to_txn_request.go │ │ ├── add_offsets_to_txn_response.go │ │ ├── add_partitions_to_txn_request.go │ │ ├── add_partitions_to_txn_response.go │ │ ├── admin.go │ │ ├── alter_configs_request.go │ │ ├── alter_configs_response.go │ │ ├── alter_partition_reassignments_request.go │ │ ├── alter_partition_reassignments_response.go │ │ ├── api_versions_request.go │ │ ├── api_versions_response.go │ │ ├── async_producer.go │ │ ├── balance_strategy.go │ │ ├── broker.go │ │ ├── client.go │ │ ├── compress.go │ │ ├── config.go │ │ ├── config_resource_type.go │ │ ├── consumer.go │ │ ├── consumer_group.go │ │ ├── consumer_group_members.go │ │ ├── consumer_metadata_request.go │ │ ├── consumer_metadata_response.go │ │ ├── control_record.go │ │ ├── crc32_field.go │ │ ├── create_partitions_request.go │ │ ├── create_partitions_response.go │ │ ├── create_topics_request.go │ │ ├── create_topics_response.go │ │ ├── decompress.go │ │ ├── delete_groups_request.go │ │ ├── delete_groups_response.go │ │ ├── delete_records_request.go │ │ ├── delete_records_response.go │ │ ├── delete_topics_request.go │ │ ├── delete_topics_response.go │ │ ├── describe_configs_request.go │ │ ├── describe_configs_response.go │ │ ├── describe_groups_request.go │ │ ├── describe_groups_response.go │ │ ├── describe_log_dirs_request.go │ │ ├── describe_log_dirs_response.go │ │ ├── dev.yml │ │ ├── docker-compose.yml │ │ ├── encoder_decoder.go │ │ ├── end_txn_request.go │ │ ├── end_txn_response.go │ │ ├── errors.go │ │ ├── fetch_request.go │ │ ├── fetch_response.go │ │ ├── find_coordinator_request.go │ │ ├── find_coordinator_response.go │ │ ├── gssapi_kerberos.go │ │ ├── heartbeat_request.go │ │ ├── heartbeat_response.go │ │ ├── init_producer_id_request.go │ │ ├── init_producer_id_response.go │ │ ├── interceptors.go │ │ ├── join_group_request.go │ │ ├── join_group_response.go │ │ ├── kerberos_client.go │ │ ├── leave_group_request.go │ │ ├── leave_group_response.go │ │ ├── length_field.go │ │ ├── list_groups_request.go │ │ ├── list_groups_response.go │ │ ├── list_partition_reassignments_request.go │ │ ├── list_partition_reassignments_response.go │ │ ├── message.go │ │ ├── message_set.go │ │ ├── metadata_request.go │ │ ├── metadata_response.go │ │ ├── metrics.go │ │ ├── mockbroker.go │ │ ├── mockkerberos.go │ │ ├── mockresponses.go │ │ ├── offset_commit_request.go │ │ ├── offset_commit_response.go │ │ ├── offset_fetch_request.go │ │ ├── offset_fetch_response.go │ │ ├── offset_manager.go │ │ ├── offset_request.go │ │ ├── offset_response.go │ │ ├── packet_decoder.go │ │ ├── packet_encoder.go │ │ ├── partitioner.go │ │ ├── prep_encoder.go │ │ ├── produce_request.go │ │ ├── produce_response.go │ │ ├── produce_set.go │ │ ├── real_decoder.go │ │ ├── real_encoder.go │ │ ├── record.go │ │ ├── record_batch.go │ │ ├── records.go │ │ ├── request.go │ │ ├── response_header.go │ │ ├── sarama.go │ │ ├── sasl_authenticate_request.go │ │ ├── sasl_authenticate_response.go │ │ ├── sasl_handshake_request.go │ │ ├── sasl_handshake_response.go │ │ ├── sticky_assignor_user_data.go │ │ ├── sync_group_request.go │ │ ├── sync_group_response.go │ │ ├── sync_producer.go │ │ ├── timestamp.go │ │ ├── txn_offset_commit_request.go │ │ ├── txn_offset_commit_response.go │ │ ├── utils.go │ │ └── zstd.go ├── asaskevich │ └── govalidator │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arrays.go │ │ ├── converter.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── numerics.go │ │ ├── patterns.go │ │ ├── types.go │ │ ├── utils.go │ │ ├── validator.go │ │ └── wercker.yml ├── basho │ ├── backoff │ │ ├── README.md │ │ └── backoff.go │ └── riak-go-client │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELNOTES.md │ │ ├── async.go │ │ ├── client.go │ │ ├── cluster.go │ │ ├── command.go │ │ ├── connection.go │ │ ├── connection_manager.go │ │ ├── consts.go │ │ ├── crdt_commands.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── kv_commands.go │ │ ├── locatable.go │ │ ├── logging.go │ │ ├── make.cmd │ │ ├── make.ps1 │ │ ├── messages.go │ │ ├── misc_commands.go │ │ ├── net.go │ │ ├── node.go │ │ ├── node_manager.go │ │ ├── object.go │ │ ├── queue.go │ │ ├── rpb.go │ │ ├── rpb │ │ ├── riak │ │ │ ├── riak.pb.go │ │ │ └── riak_misc.go │ │ ├── riak_dt │ │ │ ├── riak_dt.pb.go │ │ │ └── riak_dt_misc.go │ │ ├── riak_kv │ │ │ ├── riak_kv.pb.go │ │ │ └── riak_kv_misc.go │ │ ├── riak_search │ │ │ └── riak_search.pb.go │ │ ├── riak_ts │ │ │ └── riak_ts.pb.go │ │ └── riak_yokozuna │ │ │ └── riak_yokozuna.pb.go │ │ ├── states.go │ │ ├── ts_commands.go │ │ └── yz_commands.go ├── cbroglie │ └── mustache │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── error.go │ │ ├── mustache.go │ │ └── partials.go ├── cenkalti │ └── backoff │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ └── tries.go ├── cihub │ └── seelog │ │ ├── LICENSE.txt │ │ ├── README.markdown │ │ ├── archive │ │ ├── archive.go │ │ ├── gzip │ │ │ └── gzip.go │ │ ├── tar │ │ │ └── tar.go │ │ └── zip │ │ │ └── zip.go │ │ ├── behavior_adaptivelogger.go │ │ ├── behavior_asynclogger.go │ │ ├── behavior_asynclooplogger.go │ │ ├── behavior_asynctimerlogger.go │ │ ├── behavior_synclogger.go │ │ ├── cfg_config.go │ │ ├── cfg_errors.go │ │ ├── cfg_logconfig.go │ │ ├── cfg_parser.go │ │ ├── common_closer.go │ │ ├── common_constraints.go │ │ ├── common_context.go │ │ ├── common_exception.go │ │ ├── common_flusher.go │ │ ├── common_loglevel.go │ │ ├── dispatch_custom.go │ │ ├── dispatch_dispatcher.go │ │ ├── dispatch_filterdispatcher.go │ │ ├── dispatch_splitdispatcher.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── internals_baseerror.go │ │ ├── internals_fsutils.go │ │ ├── internals_xmlnode.go │ │ ├── log.go │ │ ├── logger.go │ │ ├── writers_bufferedwriter.go │ │ ├── writers_connwriter.go │ │ ├── writers_consolewriter.go │ │ ├── writers_filewriter.go │ │ ├── writers_formattedwriter.go │ │ ├── writers_rollingfilewriter.go │ │ └── writers_smtpwriter.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dchest │ └── siphash │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── blocks.go │ │ ├── blocks_amd64.s │ │ ├── blocks_arm.s │ │ ├── blocks_asm.go │ │ ├── hash.go │ │ ├── hash128.go │ │ ├── hash128_amd64.s │ │ ├── hash_amd64.s │ │ ├── hash_arm.go │ │ ├── hash_asm.go │ │ └── siphash.go ├── decred │ └── dcrd │ │ └── dcrec │ │ └── secp256k1 │ │ └── v4 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compressedbytepoints.go │ │ ├── curve.go │ │ ├── doc.go │ │ ├── ecdh.go │ │ ├── ellipticadaptor.go │ │ ├── error.go │ │ ├── field.go │ │ ├── loadprecomputed.go │ │ ├── modnscalar.go │ │ ├── nonce.go │ │ ├── privkey.go │ │ └── pubkey.go ├── eapache │ ├── go-resiliency │ │ ├── LICENSE │ │ └── breaker │ │ │ ├── README.md │ │ │ └── breaker.go │ ├── go-xerial-snappy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fuzz.go │ │ └── snappy.go │ └── queue │ │ ├── LICENSE │ │ ├── README.md │ │ └── queue.go ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── 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 ├── go-acme │ └── lego │ │ ├── LICENSE │ │ ├── acme │ │ ├── api │ │ │ ├── account.go │ │ │ ├── api.go │ │ │ ├── authorization.go │ │ │ ├── certificate.go │ │ │ ├── challenge.go │ │ │ ├── internal │ │ │ │ ├── nonces │ │ │ │ │ └── nonce_manager.go │ │ │ │ ├── secure │ │ │ │ │ └── jws.go │ │ │ │ └── sender │ │ │ │ │ ├── sender.go │ │ │ │ │ └── useragent.go │ │ │ ├── order.go │ │ │ └── service.go │ │ ├── commons.go │ │ └── errors.go │ │ ├── certcrypto │ │ └── crypto.go │ │ ├── certificate │ │ ├── authorization.go │ │ ├── certificates.go │ │ └── errors.go │ │ ├── challenge │ │ ├── challenges.go │ │ ├── dns01 │ │ │ ├── cname.go │ │ │ ├── dns_challenge.go │ │ │ ├── dns_challenge_manual.go │ │ │ ├── fqdn.go │ │ │ ├── nameserver.go │ │ │ └── precheck.go │ │ ├── http01 │ │ │ ├── http_challenge.go │ │ │ └── http_challenge_server.go │ │ ├── provider.go │ │ ├── resolver │ │ │ ├── errors.go │ │ │ ├── prober.go │ │ │ └── solver_manager.go │ │ └── tlsalpn01 │ │ │ ├── tls_alpn_challenge.go │ │ │ └── tls_alpn_challenge_server.go │ │ ├── lego │ │ ├── client.go │ │ └── client_config.go │ │ ├── log │ │ └── logger.go │ │ ├── platform │ │ └── wait │ │ │ └── wait.go │ │ └── registration │ │ ├── registar.go │ │ └── user.go ├── go-asn1-ber │ └── asn1-ber │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ber.go │ │ ├── content_int.go │ │ ├── generalizedTime.go │ │ ├── header.go │ │ ├── identifier.go │ │ ├── length.go │ │ ├── real.go │ │ └── util.go ├── go-ldap │ └── ldap │ │ └── v3 │ │ ├── LICENSE │ │ ├── add.go │ │ ├── bind.go │ │ ├── client.go │ │ ├── compare.go │ │ ├── conn.go │ │ ├── control.go │ │ ├── debug.go │ │ ├── del.go │ │ ├── dn.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── filter.go │ │ ├── ldap.go │ │ ├── moddn.go │ │ ├── modify.go │ │ ├── passwdmodify.go │ │ ├── request.go │ │ ├── search.go │ │ ├── unbind.go │ │ └── whoami.go ├── go-ozzo │ └── ozzo-validation │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── date.go │ │ ├── each.go │ │ ├── error.go │ │ ├── in.go │ │ ├── is │ │ └── rules.go │ │ ├── length.go │ │ ├── match.go │ │ ├── minmax.go │ │ ├── multipleof.go │ │ ├── not_in.go │ │ ├── not_nil.go │ │ ├── required.go │ │ ├── string.go │ │ ├── struct.go │ │ ├── util.go │ │ └── validation.go ├── goccy │ └── go-json │ │ ├── .codecov.yml │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── color.go │ │ ├── decode.go │ │ ├── docker-compose.yml │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ ├── decoder │ │ │ ├── anonymous_field.go │ │ │ ├── array.go │ │ │ ├── assign.go │ │ │ ├── bool.go │ │ │ ├── bytes.go │ │ │ ├── compile.go │ │ │ ├── compile_norace.go │ │ │ ├── compile_race.go │ │ │ ├── context.go │ │ │ ├── float.go │ │ │ ├── func.go │ │ │ ├── int.go │ │ │ ├── interface.go │ │ │ ├── invalid.go │ │ │ ├── map.go │ │ │ ├── number.go │ │ │ ├── option.go │ │ │ ├── path.go │ │ │ ├── ptr.go │ │ │ ├── slice.go │ │ │ ├── stream.go │ │ │ ├── string.go │ │ │ ├── struct.go │ │ │ ├── type.go │ │ │ ├── uint.go │ │ │ ├── unmarshal_json.go │ │ │ ├── unmarshal_text.go │ │ │ └── wrapped_string.go │ │ ├── encoder │ │ │ ├── code.go │ │ │ ├── compact.go │ │ │ ├── compiler.go │ │ │ ├── compiler_norace.go │ │ │ ├── compiler_race.go │ │ │ ├── context.go │ │ │ ├── decode_rune.go │ │ │ ├── encoder.go │ │ │ ├── indent.go │ │ │ ├── int.go │ │ │ ├── map112.go │ │ │ ├── map113.go │ │ │ ├── opcode.go │ │ │ ├── option.go │ │ │ ├── optype.go │ │ │ ├── query.go │ │ │ ├── string.go │ │ │ ├── string_table.go │ │ │ ├── vm │ │ │ │ ├── debug_vm.go │ │ │ │ ├── hack.go │ │ │ │ ├── util.go │ │ │ │ └── vm.go │ │ │ ├── vm_color │ │ │ │ ├── debug_vm.go │ │ │ │ ├── hack.go │ │ │ │ ├── util.go │ │ │ │ └── vm.go │ │ │ ├── vm_color_indent │ │ │ │ ├── debug_vm.go │ │ │ │ ├── util.go │ │ │ │ └── vm.go │ │ │ └── vm_indent │ │ │ │ ├── debug_vm.go │ │ │ │ ├── hack.go │ │ │ │ ├── util.go │ │ │ │ └── vm.go │ │ ├── errors │ │ │ └── error.go │ │ └── runtime │ │ │ ├── rtype.go │ │ │ ├── struct_field.go │ │ │ └── type.go │ │ ├── json.go │ │ ├── option.go │ │ ├── path.go │ │ └── query.go ├── gofrs │ └── flock │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── flock.go │ │ ├── flock_aix.go │ │ ├── flock_unix.go │ │ ├── flock_winapi.go │ │ └── flock_windows.go ├── golang-migrate │ └── migrate │ │ └── v4 │ │ ├── .dockerignore │ │ ├── .golangci.yml │ │ ├── .goreleaser.yml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── Dockerfile.circleci │ │ ├── Dockerfile.github-actions │ │ ├── FAQ.md │ │ ├── GETTING_STARTED.md │ │ ├── LICENSE │ │ ├── MIGRATIONS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── database │ │ ├── driver.go │ │ ├── error.go │ │ ├── multistmt │ │ │ └── parse.go │ │ ├── postgres │ │ │ ├── README.md │ │ │ ├── TUTORIAL.md │ │ │ └── postgres.go │ │ └── util.go │ │ ├── internal │ │ └── url │ │ │ └── url.go │ │ ├── log.go │ │ ├── migrate.go │ │ ├── migration.go │ │ ├── source │ │ ├── driver.go │ │ ├── errors.go │ │ ├── file │ │ │ ├── README.md │ │ │ └── file.go │ │ ├── iofs │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ └── iofs.go │ │ ├── migration.go │ │ └── parse.go │ │ └── util.go ├── golang │ ├── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── 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 │ └── snappy │ │ ├── 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 │ │ └── snappy.go ├── google │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ ├── go-multierror │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ └── go-uuid │ │ ├── LICENSE │ │ ├── README.md │ │ └── uuid.go ├── hydrogen18 │ └── stoppableListener │ │ ├── LICENSE │ │ ├── README.md │ │ └── listener.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 ├── jcmturner │ └── gofork │ │ ├── LICENSE │ │ ├── encoding │ │ └── asn1 │ │ │ ├── README.md │ │ │ ├── asn1.go │ │ │ ├── common.go │ │ │ └── marshal.go │ │ └── x │ │ └── crypto │ │ └── pbkdf2 │ │ └── pbkdf2.go ├── jmoiron │ └── sqlx │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bind.go │ │ ├── doc.go │ │ ├── named.go │ │ ├── named_context.go │ │ ├── reflectx │ │ ├── README.md │ │ └── reflect.go │ │ ├── sqlx.go │ │ └── sqlx_context.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .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 │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── 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 ├── kelseyhightower │ └── envconfig │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── doc.go │ │ ├── env_os.go │ │ ├── env_syscall.go │ │ ├── envconfig.go │ │ └── usage.go ├── klauspost │ └── compress │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compressible.go │ │ ├── fse │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── huff0 │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── huff0.go │ │ ├── internal │ │ └── snapref │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decodeheader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── dict.go │ │ ├── enc_base.go │ │ ├── enc_best.go │ │ ├── enc_better.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── seqdec.go │ │ ├── seqenc.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ └── diff │ │ └── diff.go ├── lestrrat-go │ ├── backoff │ │ └── v2 │ │ │ ├── .golangci.yml │ │ │ ├── Changes │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── constant.go │ │ │ ├── controller.go │ │ │ ├── doc.go │ │ │ ├── exponential.go │ │ │ ├── interface.go │ │ │ ├── jitter.go │ │ │ ├── null.go │ │ │ └── options.go │ ├── blackmagic │ │ ├── LICENSE │ │ ├── README.md │ │ └── blackmagic.go │ ├── httpcc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── directives.go │ │ └── httpcc.go │ ├── iter │ │ ├── LICENSE │ │ ├── arrayiter │ │ │ └── arrayiter.go │ │ └── mapiter │ │ │ └── mapiter.go │ ├── jwx │ │ ├── .golangci.yml │ │ ├── Changes │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── format.go │ │ ├── formatkind_string_gen.go │ │ ├── internal │ │ │ ├── base64 │ │ │ │ └── base64.go │ │ │ ├── ecutil │ │ │ │ └── ecutil.go │ │ │ ├── iter │ │ │ │ └── mapiter.go │ │ │ ├── json │ │ │ │ ├── goccy.go │ │ │ │ ├── json.go │ │ │ │ ├── registry.go │ │ │ │ └── stdlib.go │ │ │ ├── keyconv │ │ │ │ └── keyconv.go │ │ │ └── pool │ │ │ │ └── pool.go │ │ ├── jwa │ │ │ ├── README.md │ │ │ ├── compression_gen.go │ │ │ ├── content_encryption_gen.go │ │ │ ├── elliptic_gen.go │ │ │ ├── jwa.go │ │ │ ├── key_encryption_gen.go │ │ │ ├── key_type_gen.go │ │ │ ├── secp2561k.go │ │ │ └── signature_gen.go │ │ ├── jwe │ │ │ ├── README.md │ │ │ ├── compress.go │ │ │ ├── decrypt.go │ │ │ ├── encrypt.go │ │ │ ├── headers.go │ │ │ ├── headers_gen.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ │ ├── aescbc │ │ │ │ │ └── aescbc.go │ │ │ │ ├── cipher │ │ │ │ │ ├── cipher.go │ │ │ │ │ └── interface.go │ │ │ │ ├── concatkdf │ │ │ │ │ └── concatkdf.go │ │ │ │ ├── content_crypt │ │ │ │ │ ├── content_crypt.go │ │ │ │ │ └── interface.go │ │ │ │ ├── keyenc │ │ │ │ │ ├── interface.go │ │ │ │ │ └── keyenc.go │ │ │ │ └── keygen │ │ │ │ │ ├── interface.go │ │ │ │ │ └── keygen.go │ │ │ ├── io.go │ │ │ ├── jwe.go │ │ │ ├── message.go │ │ │ ├── options.go │ │ │ └── serializer.go │ │ ├── jwk │ │ │ ├── README.md │ │ │ ├── certchain.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_gen.go │ │ │ ├── es256k.go │ │ │ ├── interface.go │ │ │ ├── interface_gen.go │ │ │ ├── io.go │ │ │ ├── jwk.go │ │ │ ├── key_ops.go │ │ │ ├── okp.go │ │ │ ├── okp_gen.go │ │ │ ├── option.go │ │ │ ├── refresh.go │ │ │ ├── rsa.go │ │ │ ├── rsa_gen.go │ │ │ ├── set.go │ │ │ ├── symmetric.go │ │ │ ├── symmetric_gen.go │ │ │ ├── usage.go │ │ │ └── whitelist.go │ │ ├── jws │ │ │ ├── README.md │ │ │ ├── ecdsa.go │ │ │ ├── eddsa.go │ │ │ ├── es256k.go │ │ │ ├── headers.go │ │ │ ├── headers_gen.go │ │ │ ├── hmac.go │ │ │ ├── interface.go │ │ │ ├── io.go │ │ │ ├── jws.go │ │ │ ├── message.go │ │ │ ├── option.go │ │ │ ├── rsa.go │ │ │ ├── signer.go │ │ │ └── verifier.go │ │ ├── jwt │ │ │ ├── README.md │ │ │ ├── builder_gen.go │ │ │ ├── http.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ │ └── types │ │ │ │ │ ├── date.go │ │ │ │ │ └── string.go │ │ │ ├── io.go │ │ │ ├── jwt.go │ │ │ ├── options.go │ │ │ ├── serialize.go │ │ │ ├── token_gen.go │ │ │ └── validate.go │ │ ├── jwx.go │ │ ├── options.go │ │ └── x25519 │ │ │ └── x25519.go │ └── option │ │ ├── LICENSE │ │ ├── README.md │ │ └── option.go ├── lib │ └── pq │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── TESTS.md │ │ ├── array.go │ │ ├── buf.go │ │ ├── conn.go │ │ ├── conn_go18.go │ │ ├── connector.go │ │ ├── copy.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── krb.go │ │ ├── notice.go │ │ ├── notify.go │ │ ├── oid │ │ ├── doc.go │ │ └── types.go │ │ ├── rows.go │ │ ├── scram │ │ └── scram.go │ │ ├── ssl.go │ │ ├── ssl_permissions.go │ │ ├── ssl_windows.go │ │ ├── url.go │ │ ├── user_other.go │ │ ├── user_posix.go │ │ ├── user_windows.go │ │ └── uuid.go ├── miekg │ └── dns │ │ ├── .codecov.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 │ │ ├── labels.go │ │ ├── listen_no_reuseport.go │ │ ├── listen_reuseport.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 ├── modern-go │ ├── concurrent │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.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 │ │ ├── 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 ├── nxadm │ └── tail │ │ ├── CHANGES.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ratelimiter │ │ ├── Licence │ │ ├── leakybucket.go │ │ ├── memory.go │ │ └── storage.go │ │ ├── tail.go │ │ ├── tail_posix.go │ │ ├── tail_windows.go │ │ ├── util │ │ └── util.go │ │ ├── watch │ │ ├── filechanges.go │ │ ├── inotify.go │ │ ├── inotify_tracker.go │ │ ├── polling.go │ │ └── watch.go │ │ └── winfile │ │ └── winfile.go ├── onsi │ ├── ginkgo │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── config │ │ │ └── config.go │ │ ├── formatter │ │ │ └── formatter.go │ │ ├── ginkgo_dsl.go │ │ ├── internal │ │ │ ├── codelocation │ │ │ │ └── code_location.go │ │ │ ├── containernode │ │ │ │ └── container_node.go │ │ │ ├── failer │ │ │ │ └── failer.go │ │ │ ├── global │ │ │ │ └── init.go │ │ │ ├── leafnodes │ │ │ │ ├── benchmarker.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── it_node.go │ │ │ │ ├── measure_node.go │ │ │ │ ├── runner.go │ │ │ │ ├── setup_nodes.go │ │ │ │ ├── suite_nodes.go │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ └── synchronized_before_suite_node.go │ │ │ ├── remote │ │ │ │ ├── aggregator.go │ │ │ │ ├── forwarding_reporter.go │ │ │ │ ├── output_interceptor.go │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ ├── output_interceptor_win.go │ │ │ │ └── server.go │ │ │ ├── spec │ │ │ │ ├── spec.go │ │ │ │ └── specs.go │ │ │ ├── spec_iterator │ │ │ │ ├── index_computer.go │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ └── spec_iterator.go │ │ │ ├── specrunner │ │ │ │ ├── random_id.go │ │ │ │ └── spec_runner.go │ │ │ ├── suite │ │ │ │ └── suite.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ └── writer │ │ │ │ ├── fake_writer.go │ │ │ │ └── writer.go │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── fake_reporter.go │ │ │ ├── junit_reporter.go │ │ │ ├── reporter.go │ │ │ ├── stenographer │ │ │ │ ├── console_logging.go │ │ │ │ ├── fake_stenographer.go │ │ │ │ ├── stenographer.go │ │ │ │ └── support │ │ │ │ │ ├── go-colorable │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ └── noncolorable.go │ │ │ │ │ └── go-isatty │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ └── isatty_windows.go │ │ │ └── teamcity_reporter.go │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── deprecation_support.go │ │ │ ├── synchronization.go │ │ │ └── types.go │ └── gomega │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── docker-compose.yaml │ │ ├── format │ │ └── format.go │ │ ├── gomega_dsl.go │ │ ├── internal │ │ ├── assertion.go │ │ ├── async_assertion.go │ │ ├── duration_bundle.go │ │ └── gomega.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_regular_file.go │ │ ├── be_an_existing_file.go │ │ ├── be_closed_matcher.go │ │ ├── be_element_of_matcher.go │ │ ├── be_empty_matcher.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_false_matcher.go │ │ ├── be_identical_to.go │ │ ├── be_nil_matcher.go │ │ ├── be_numerically_matcher.go │ │ ├── be_sent_matcher.go │ │ ├── be_temporally_matcher.go │ │ ├── be_true_matcher.go │ │ ├── be_zero_matcher.go │ │ ├── consist_of.go │ │ ├── contain_element_matcher.go │ │ ├── contain_elements_matcher.go │ │ ├── contain_substring_matcher.go │ │ ├── equal_matcher.go │ │ ├── have_cap_matcher.go │ │ ├── have_field.go │ │ ├── have_http_body_matcher.go │ │ ├── have_http_header_with_value_matcher.go │ │ ├── have_http_status_matcher.go │ │ ├── have_key_matcher.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_len_matcher.go │ │ ├── have_occurred_matcher.go │ │ ├── have_prefix_matcher.go │ │ ├── have_suffix_matcher.go │ │ ├── match_error_matcher.go │ │ ├── match_json_matcher.go │ │ ├── match_regexp_matcher.go │ │ ├── match_xml_matcher.go │ │ ├── match_yaml_matcher.go │ │ ├── not.go │ │ ├── or.go │ │ ├── panic_matcher.go │ │ ├── receive_matcher.go │ │ ├── satisfy_matcher.go │ │ ├── semi_structured_data_support.go │ │ ├── succeed_matcher.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── type_support.go │ │ └── with_transform.go │ │ └── types │ │ └── types.go ├── pborman │ └── getopt │ │ └── v2 │ │ ├── LICENSE │ │ ├── bool.go │ │ ├── counter.go │ │ ├── duration.go │ │ ├── enum.go │ │ ├── error.go │ │ ├── generic.go │ │ ├── getopt.go │ │ ├── int.go │ │ ├── list.go │ │ ├── option.go │ │ ├── set.go │ │ ├── signed.go │ │ ├── string.go │ │ ├── unsigned.go │ │ └── var.go ├── pierrec │ └── lz4 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── block.go │ │ ├── debug.go │ │ ├── debug_stub.go │ │ ├── decode_amd64.go │ │ ├── decode_amd64.s │ │ ├── decode_other.go │ │ ├── errors.go │ │ ├── internal │ │ └── xxh32 │ │ │ └── xxh32zero.go │ │ ├── lz4.go │ │ ├── lz4_go1.10.go │ │ ├── lz4_notgo1.10.go │ │ ├── reader.go │ │ └── writer.go ├── pkg │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go └── rcrowley │ └── go-metrics │ ├── LICENSE │ ├── README.md │ ├── counter.go │ ├── debug.go │ ├── ewma.go │ ├── gauge.go │ ├── gauge_float64.go │ ├── graphite.go │ ├── healthcheck.go │ ├── histogram.go │ ├── json.go │ ├── log.go │ ├── memory.md │ ├── meter.go │ ├── metrics.go │ ├── opentsdb.go │ ├── registry.go │ ├── runtime.go │ ├── runtime_cgo.go │ ├── runtime_gccpufraction.go │ ├── runtime_no_cgo.go │ ├── runtime_no_gccpufraction.go │ ├── sample.go │ ├── syslog.go │ ├── timer.go │ └── writer.go ├── go.etcd.io └── bbolt │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── bolt_386.go │ ├── bolt_amd64.go │ ├── bolt_arm.go │ ├── bolt_arm64.go │ ├── bolt_linux.go │ ├── bolt_mips64x.go │ ├── bolt_mipsx.go │ ├── bolt_openbsd.go │ ├── bolt_ppc.go │ ├── bolt_ppc64.go │ ├── bolt_ppc64le.go │ ├── bolt_riscv64.go │ ├── bolt_s390x.go │ ├── bolt_unix.go │ ├── bolt_unix_aix.go │ ├── bolt_unix_solaris.go │ ├── bolt_windows.go │ ├── boltsync_unix.go │ ├── bucket.go │ ├── compact.go │ ├── cursor.go │ ├── db.go │ ├── doc.go │ ├── errors.go │ ├── freelist.go │ ├── freelist_hmap.go │ ├── mlock_unix.go │ ├── mlock_windows.go │ ├── node.go │ ├── page.go │ ├── tx.go │ └── unsafe.go ├── go.uber.org └── atomic │ ├── .codecov.yml │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── atomic.go │ ├── error.go │ └── string.go ├── google.golang.org └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── encoding │ │ ├── defval │ │ │ └── default.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 │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.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 │ │ ├── go_features_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 │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ ├── strings_pure.go │ │ ├── strings_unsafe_go120.go │ │ └── strings_unsafe_go121.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 │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_pure.go │ │ ├── value_union.go │ │ ├── value_unsafe_go120.go │ │ └── value_unsafe_go121.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ └── gofeaturespb │ ├── go_features.pb.go │ └── go_features.proto ├── gopkg.in ├── DATA-DOG │ └── go-sqlmock.v1 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── argument.go │ │ ├── driver.go │ │ ├── expectations.go │ │ ├── expectations_before_go18.go │ │ ├── expectations_go18.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── rows_go18.go │ │ ├── sqlmock.go │ │ ├── sqlmock_go18.go │ │ ├── statement.go │ │ └── util.go ├── jcmturner │ ├── aescts.v1 │ │ ├── LICENSE │ │ ├── README.md │ │ └── aescts.go │ ├── dnsutils.v1 │ │ ├── LICENSE │ │ └── srv.go │ ├── gokrb5.v7 │ │ ├── LICENSE │ │ ├── asn1tools │ │ │ └── tools.go │ │ ├── client │ │ │ ├── ASExchange.go │ │ │ ├── TGSExchange.go │ │ │ ├── cache.go │ │ │ ├── client.go │ │ │ ├── network.go │ │ │ ├── passwd.go │ │ │ ├── session.go │ │ │ └── settings.go │ │ ├── config │ │ │ ├── error.go │ │ │ ├── hosts.go │ │ │ └── krb5conf.go │ │ ├── credentials │ │ │ ├── ccache.go │ │ │ └── credentials.go │ │ ├── crypto │ │ │ ├── aes128-cts-hmac-sha1-96.go │ │ │ ├── aes128-cts-hmac-sha256-128.go │ │ │ ├── aes256-cts-hmac-sha1-96.go │ │ │ ├── aes256-cts-hmac-sha384-192.go │ │ │ ├── common │ │ │ │ └── common.go │ │ │ ├── crypto.go │ │ │ ├── des3-cbc-sha1-kd.go │ │ │ ├── etype │ │ │ │ └── etype.go │ │ │ ├── rc4-hmac.go │ │ │ ├── rfc3961 │ │ │ │ ├── encryption.go │ │ │ │ ├── keyDerivation.go │ │ │ │ └── nfold.go │ │ │ ├── rfc3962 │ │ │ │ ├── encryption.go │ │ │ │ └── keyDerivation.go │ │ │ ├── rfc4757 │ │ │ │ ├── checksum.go │ │ │ │ ├── encryption.go │ │ │ │ ├── keyDerivation.go │ │ │ │ └── msgtype.go │ │ │ └── rfc8009 │ │ │ │ ├── encryption.go │ │ │ │ └── keyDerivation.go │ │ ├── gssapi │ │ │ ├── MICToken.go │ │ │ ├── README.md │ │ │ ├── contextFlags.go │ │ │ ├── gssapi.go │ │ │ └── wrapToken.go │ │ ├── iana │ │ │ ├── addrtype │ │ │ │ └── constants.go │ │ │ ├── adtype │ │ │ │ └── constants.go │ │ │ ├── asnAppTag │ │ │ │ └── constants.go │ │ │ ├── chksumtype │ │ │ │ └── constants.go │ │ │ ├── constants.go │ │ │ ├── errorcode │ │ │ │ └── constants.go │ │ │ ├── etypeID │ │ │ │ └── constants.go │ │ │ ├── flags │ │ │ │ └── constants.go │ │ │ ├── keyusage │ │ │ │ └── constants.go │ │ │ ├── msgtype │ │ │ │ └── constants.go │ │ │ ├── nametype │ │ │ │ └── constants.go │ │ │ └── patype │ │ │ │ └── constants.go │ │ ├── kadmin │ │ │ ├── changepasswddata.go │ │ │ ├── message.go │ │ │ └── passwd.go │ │ ├── keytab │ │ │ └── keytab.go │ │ ├── krberror │ │ │ └── error.go │ │ ├── messages │ │ │ ├── APRep.go │ │ │ ├── APReq.go │ │ │ ├── KDCRep.go │ │ │ ├── KDCReq.go │ │ │ ├── KRBCred.go │ │ │ ├── KRBError.go │ │ │ ├── KRBPriv.go │ │ │ ├── KRBSafe.go │ │ │ └── Ticket.go │ │ ├── pac │ │ │ ├── client_claims.go │ │ │ ├── client_info.go │ │ │ ├── credentials_info.go │ │ │ ├── device_claims.go │ │ │ ├── device_info.go │ │ │ ├── kerb_validation_info.go │ │ │ ├── pac_type.go │ │ │ ├── s4u_delegation_info.go │ │ │ ├── signature_data.go │ │ │ ├── supplemental_cred.go │ │ │ └── upn_dns_info.go │ │ └── types │ │ │ ├── Authenticator.go │ │ │ ├── AuthorizationData.go │ │ │ ├── Cryptosystem.go │ │ │ ├── HostAddress.go │ │ │ ├── KerberosFlags.go │ │ │ ├── PAData.go │ │ │ ├── PrincipalName.go │ │ │ └── TypedData.go │ └── rpc.v1 │ │ ├── LICENSE │ │ ├── mstypes │ │ ├── claims.go │ │ ├── common.go │ │ ├── filetime.go │ │ ├── group_membership.go │ │ ├── kerb_sid_and_attributes.go │ │ ├── reader.go │ │ ├── rpc_unicode_string.go │ │ ├── sid.go │ │ └── user_session_key.go │ │ └── ndr │ │ ├── arrays.go │ │ ├── decoder.go │ │ ├── error.go │ │ ├── header.go │ │ ├── pipe.go │ │ ├── primitives.go │ │ ├── rawbytes.go │ │ ├── strings.go │ │ ├── tags.go │ │ └── union.go ├── square │ └── go-jose.v2 │ │ ├── .gitcookies.sh.enc │ │ ├── BUG-BOUNTY.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asymmetric.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── concat_kdf.go │ │ ├── ecdh_es.go │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ └── symmetric.go ├── tomb.v1 │ ├── LICENSE │ ├── README.md │ └── tomb.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── modules.txt /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dependency_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.dependency_license -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/go-fmt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/go-fmt/Dockerfile -------------------------------------------------------------------------------- /.github/actions/go-fmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/go-fmt/README.md -------------------------------------------------------------------------------- /.github/actions/go-fmt/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/go-fmt/action.yml -------------------------------------------------------------------------------- /.github/actions/go-test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/go-test/Dockerfile -------------------------------------------------------------------------------- /.github/actions/go-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/go-test/README.md -------------------------------------------------------------------------------- /.github/actions/go-test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/go-test/action.yml -------------------------------------------------------------------------------- /.github/actions/repo-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/repo-info/README.md -------------------------------------------------------------------------------- /.github/actions/run-ciab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/run-ciab/README.md -------------------------------------------------------------------------------- /.github/actions/todb-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/todb-init/README.md -------------------------------------------------------------------------------- /.github/actions/tvdb-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/actions/tvdb-init/README.md -------------------------------------------------------------------------------- /.github/containers/trafficserver-alpine/.env: -------------------------------------------------------------------------------- 1 | ../../../.env -------------------------------------------------------------------------------- /.github/workflows/ciab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/ciab.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/codeql.cpp.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/codeql.go.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/codeql.java.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/codeql.python.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/go.fmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/go.fmt.yml -------------------------------------------------------------------------------- /.github/workflows/go.vet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/go.vet.yml -------------------------------------------------------------------------------- /.github/workflows/tm.unit.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/tm.unit.tests.yml -------------------------------------------------------------------------------- /.github/workflows/to.unit.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/to.unit.tests.yml -------------------------------------------------------------------------------- /.github/workflows/tpv2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/tpv2.yml -------------------------------------------------------------------------------- /.github/workflows/tr.tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/tr.tests.yaml -------------------------------------------------------------------------------- /.github/workflows/weasel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.github/workflows/weasel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/BUILD.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GO_VERSION: -------------------------------------------------------------------------------- 1 | 1.23.11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/NOTICE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 8.1.0 2 | -------------------------------------------------------------------------------- /blueprints/BLUEPRINT_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/BLUEPRINT_TEMPLATE.md -------------------------------------------------------------------------------- /blueprints/api.guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/api.guidelines.md -------------------------------------------------------------------------------- /blueprints/ds-active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/ds-active.md -------------------------------------------------------------------------------- /blueprints/flexible-topologies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/flexible-topologies.md -------------------------------------------------------------------------------- /blueprints/img/to-soa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/img/to-soa.png -------------------------------------------------------------------------------- /blueprints/refetch-invalidation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/refetch-invalidation.md -------------------------------------------------------------------------------- /blueprints/server-capabilitites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/server-capabilitites.md -------------------------------------------------------------------------------- /blueprints/to-locks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/to-locks.md -------------------------------------------------------------------------------- /blueprints/to_soa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/to_soa.md -------------------------------------------------------------------------------- /blueprints/tr-load-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/tr-load-tests.md -------------------------------------------------------------------------------- /blueprints/user.permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/user.permissions.md -------------------------------------------------------------------------------- /blueprints/varnish-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/blueprints/varnish-support.md -------------------------------------------------------------------------------- /cache-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/.gitignore -------------------------------------------------------------------------------- /cache-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/Makefile -------------------------------------------------------------------------------- /cache-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/README.md -------------------------------------------------------------------------------- /cache-config/build/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/build/build_rpm.sh -------------------------------------------------------------------------------- /cache-config/t3c-apply/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-apply/README.md -------------------------------------------------------------------------------- /cache-config/t3c-apply/t3c-apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-apply/t3c-apply.go -------------------------------------------------------------------------------- /cache-config/t3c-apply/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-apply/util/util.go -------------------------------------------------------------------------------- /cache-config/t3c-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-check/README.md -------------------------------------------------------------------------------- /cache-config/t3c-check/t3c-check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-check/t3c-check.go -------------------------------------------------------------------------------- /cache-config/t3c-diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-diff/README.md -------------------------------------------------------------------------------- /cache-config/t3c-diff/t3c-diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-diff/t3c-diff.go -------------------------------------------------------------------------------- /cache-config/t3c-generate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-generate/README.md -------------------------------------------------------------------------------- /cache-config/t3c-request/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-request/README.md -------------------------------------------------------------------------------- /cache-config/t3c-tail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-tail/README.md -------------------------------------------------------------------------------- /cache-config/t3c-tail/t3c-tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-tail/t3c-tail.go -------------------------------------------------------------------------------- /cache-config/t3c-update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c-update/README.md -------------------------------------------------------------------------------- /cache-config/t3c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c/README.md -------------------------------------------------------------------------------- /cache-config/t3c/t3c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3c/t3c.go -------------------------------------------------------------------------------- /cache-config/t3cutil/actionlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3cutil/actionlog.go -------------------------------------------------------------------------------- /cache-config/t3cutil/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3cutil/enum.go -------------------------------------------------------------------------------- /cache-config/t3cutil/getdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3cutil/getdata.go -------------------------------------------------------------------------------- /cache-config/t3cutil/getdatacfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3cutil/getdatacfg.go -------------------------------------------------------------------------------- /cache-config/t3cutil/t3cutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/t3cutil/t3cutil.go -------------------------------------------------------------------------------- /cache-config/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/cache-config/testing/README.md -------------------------------------------------------------------------------- /cache-config/testing/docker/.env: -------------------------------------------------------------------------------- 1 | ../../../.env -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/atc.dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/atc.dev.sh -------------------------------------------------------------------------------- /dev/t3c/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/t3c/Dockerfile -------------------------------------------------------------------------------- /dev/t3c/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/t3c/run.sh -------------------------------------------------------------------------------- /dev/tpv2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/tpv2/Dockerfile -------------------------------------------------------------------------------- /dev/tpv2/proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/tpv2/proxy.json -------------------------------------------------------------------------------- /dev/tpv2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/tpv2/run.sh -------------------------------------------------------------------------------- /dev/traffic_monitor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_monitor/.gitignore -------------------------------------------------------------------------------- /dev/traffic_monitor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_monitor/Dockerfile -------------------------------------------------------------------------------- /dev/traffic_monitor/ops.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_monitor/ops.config.json -------------------------------------------------------------------------------- /dev/traffic_monitor/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_monitor/run.sh -------------------------------------------------------------------------------- /dev/traffic_monitor/tm.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_monitor/tm.config.json -------------------------------------------------------------------------------- /dev/traffic_ops/.pgpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_ops/.pgpass -------------------------------------------------------------------------------- /dev/traffic_ops/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_ops/Dockerfile -------------------------------------------------------------------------------- /dev/traffic_ops/cdn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_ops/cdn.json -------------------------------------------------------------------------------- /dev/traffic_ops/db.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_ops/db.config.json -------------------------------------------------------------------------------- /dev/traffic_ops/dbconf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_ops/dbconf.yml -------------------------------------------------------------------------------- /dev/traffic_ops/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_ops/run.sh -------------------------------------------------------------------------------- /dev/traffic_ops/seed.psql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_ops/seed.psql -------------------------------------------------------------------------------- /dev/traffic_portal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_portal/Dockerfile -------------------------------------------------------------------------------- /dev/traffic_portal/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_portal/config.js -------------------------------------------------------------------------------- /dev/traffic_portal/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_portal/run.sh -------------------------------------------------------------------------------- /dev/traffic_router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_router/.gitignore -------------------------------------------------------------------------------- /dev/traffic_router/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_router/Dockerfile -------------------------------------------------------------------------------- /dev/traffic_router/conf/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_router/conf/log4j2.xml -------------------------------------------------------------------------------- /dev/traffic_router/conf/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_router/conf/server.xml -------------------------------------------------------------------------------- /dev/traffic_router/conf/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_router/conf/web.xml -------------------------------------------------------------------------------- /dev/traffic_router/czf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_router/czf.json -------------------------------------------------------------------------------- /dev/traffic_router/lib: -------------------------------------------------------------------------------- 1 | ../../traffic_router/core/target/ROOT/WEB-INF/lib -------------------------------------------------------------------------------- /dev/traffic_router/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_router/run.sh -------------------------------------------------------------------------------- /dev/traffic_router/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/dev/traffic_router/settings.xml -------------------------------------------------------------------------------- /dev/traffic_router/webapps/ROOT: -------------------------------------------------------------------------------- 1 | ../../../traffic_router/core/target/ROOT -------------------------------------------------------------------------------- /doap_Traffic_Control.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/doap_Traffic_Control.rdf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | source/requirements.txt -------------------------------------------------------------------------------- /docs/source/_ext/atc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/_ext/atc.py -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/admin/cdni.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/cdni.rst -------------------------------------------------------------------------------- /docs/source/admin/images/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/images/bad.png -------------------------------------------------------------------------------- /docs/source/admin/images/good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/images/good.png -------------------------------------------------------------------------------- /docs/source/admin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/index.rst -------------------------------------------------------------------------------- /docs/source/admin/t3c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/t3c/.gitignore -------------------------------------------------------------------------------- /docs/source/admin/t3c/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/t3c/index.rst -------------------------------------------------------------------------------- /docs/source/admin/traffic_ops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/traffic_ops.rst -------------------------------------------------------------------------------- /docs/source/admin/traffic_stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/traffic_stats.rst -------------------------------------------------------------------------------- /docs/source/admin/traffic_vault.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/admin/traffic_vault.rst -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/v3/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/about.rst -------------------------------------------------------------------------------- /docs/source/api/v3/asns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/asns.rst -------------------------------------------------------------------------------- /docs/source/api/v3/asns_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/asns_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/cache_stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/cache_stats.rst -------------------------------------------------------------------------------- /docs/source/api/v3/cachegroups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/cachegroups.rst -------------------------------------------------------------------------------- /docs/source/api/v3/caches_stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/caches_stats.rst -------------------------------------------------------------------------------- /docs/source/api/v3/capabilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/capabilities.rst -------------------------------------------------------------------------------- /docs/source/api/v3/cdns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/cdns.rst -------------------------------------------------------------------------------- /docs/source/api/v3/cdns_domains.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/cdns_domains.rst -------------------------------------------------------------------------------- /docs/source/api/v3/cdns_health.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/cdns_health.rst -------------------------------------------------------------------------------- /docs/source/api/v3/cdns_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/cdns_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/cdns_routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/cdns_routing.rst -------------------------------------------------------------------------------- /docs/source/api/v3/coordinates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/coordinates.rst -------------------------------------------------------------------------------- /docs/source/api/v3/dbdump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/dbdump.rst -------------------------------------------------------------------------------- /docs/source/api/v3/divisions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/divisions.rst -------------------------------------------------------------------------------- /docs/source/api/v3/divisions_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/divisions_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/federations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/federations.rst -------------------------------------------------------------------------------- /docs/source/api/v3/isos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/isos.rst -------------------------------------------------------------------------------- /docs/source/api/v3/jobs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/jobs.rst -------------------------------------------------------------------------------- /docs/source/api/v3/logs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/logs.rst -------------------------------------------------------------------------------- /docs/source/api/v3/origins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/origins.rst -------------------------------------------------------------------------------- /docs/source/api/v3/osversions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/osversions.rst -------------------------------------------------------------------------------- /docs/source/api/v3/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/parameters.rst -------------------------------------------------------------------------------- /docs/source/api/v3/ping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/ping.rst -------------------------------------------------------------------------------- /docs/source/api/v3/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/plugins.rst -------------------------------------------------------------------------------- /docs/source/api/v3/profiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/profiles.rst -------------------------------------------------------------------------------- /docs/source/api/v3/profiles_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/profiles_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/regions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/regions.rst -------------------------------------------------------------------------------- /docs/source/api/v3/regions_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/regions_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/roles.rst -------------------------------------------------------------------------------- /docs/source/api/v3/servercheck.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/servercheck.rst -------------------------------------------------------------------------------- /docs/source/api/v3/servers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/servers.rst -------------------------------------------------------------------------------- /docs/source/api/v3/servers_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/servers_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/snapshot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/snapshot.rst -------------------------------------------------------------------------------- /docs/source/api/v3/statuses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/statuses.rst -------------------------------------------------------------------------------- /docs/source/api/v3/statuses_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/statuses_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/steering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/steering.rst -------------------------------------------------------------------------------- /docs/source/api/v3/system_info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/system_info.rst -------------------------------------------------------------------------------- /docs/source/api/v3/tenants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/tenants.rst -------------------------------------------------------------------------------- /docs/source/api/v3/tenants_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/tenants_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/topologies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/topologies.rst -------------------------------------------------------------------------------- /docs/source/api/v3/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/types.rst -------------------------------------------------------------------------------- /docs/source/api/v3/types_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/types_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/user_current.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/user_current.rst -------------------------------------------------------------------------------- /docs/source/api/v3/user_login.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/user_login.rst -------------------------------------------------------------------------------- /docs/source/api/v3/user_logout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/user_logout.rst -------------------------------------------------------------------------------- /docs/source/api/v3/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/users.rst -------------------------------------------------------------------------------- /docs/source/api/v3/users_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/users_id.rst -------------------------------------------------------------------------------- /docs/source/api/v3/vault_ping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v3/vault_ping.rst -------------------------------------------------------------------------------- /docs/source/api/v4/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/about.rst -------------------------------------------------------------------------------- /docs/source/api/v4/asns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/asns.rst -------------------------------------------------------------------------------- /docs/source/api/v4/asns_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/asns_id.rst -------------------------------------------------------------------------------- /docs/source/api/v4/async_status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/async_status.rst -------------------------------------------------------------------------------- /docs/source/api/v4/cache_stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/cache_stats.rst -------------------------------------------------------------------------------- /docs/source/api/v4/cachegroups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/cachegroups.rst -------------------------------------------------------------------------------- /docs/source/api/v4/caches_stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/caches_stats.rst -------------------------------------------------------------------------------- /docs/source/api/v4/cdn_locks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/cdn_locks.rst -------------------------------------------------------------------------------- /docs/source/api/v4/cdns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/cdns.rst -------------------------------------------------------------------------------- /docs/source/api/v4/cdns_domains.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/cdns_domains.rst -------------------------------------------------------------------------------- /docs/source/api/v4/cdns_health.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/cdns_health.rst -------------------------------------------------------------------------------- /docs/source/api/v4/cdns_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/cdns_id.rst -------------------------------------------------------------------------------- /docs/source/api/v4/dbdump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/dbdump.rst -------------------------------------------------------------------------------- /docs/source/api/v4/divisions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/divisions.rst -------------------------------------------------------------------------------- /docs/source/api/v4/isos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/isos.rst -------------------------------------------------------------------------------- /docs/source/api/v4/jobs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/jobs.rst -------------------------------------------------------------------------------- /docs/source/api/v4/logs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/logs.rst -------------------------------------------------------------------------------- /docs/source/api/v4/origins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/origins.rst -------------------------------------------------------------------------------- /docs/source/api/v4/osversions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/osversions.rst -------------------------------------------------------------------------------- /docs/source/api/v4/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/parameters.rst -------------------------------------------------------------------------------- /docs/source/api/v4/ping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/ping.rst -------------------------------------------------------------------------------- /docs/source/api/v4/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/plugins.rst -------------------------------------------------------------------------------- /docs/source/api/v4/profiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/profiles.rst -------------------------------------------------------------------------------- /docs/source/api/v4/regions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/regions.rst -------------------------------------------------------------------------------- /docs/source/api/v4/regions_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/regions_id.rst -------------------------------------------------------------------------------- /docs/source/api/v4/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/roles.rst -------------------------------------------------------------------------------- /docs/source/api/v4/servers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/servers.rst -------------------------------------------------------------------------------- /docs/source/api/v4/servers_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/servers_id.rst -------------------------------------------------------------------------------- /docs/source/api/v4/snapshot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/snapshot.rst -------------------------------------------------------------------------------- /docs/source/api/v4/statuses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/statuses.rst -------------------------------------------------------------------------------- /docs/source/api/v4/steering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/steering.rst -------------------------------------------------------------------------------- /docs/source/api/v4/tenants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/tenants.rst -------------------------------------------------------------------------------- /docs/source/api/v4/tenants_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/tenants_id.rst -------------------------------------------------------------------------------- /docs/source/api/v4/topologies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/topologies.rst -------------------------------------------------------------------------------- /docs/source/api/v4/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/types.rst -------------------------------------------------------------------------------- /docs/source/api/v4/types_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/types_id.rst -------------------------------------------------------------------------------- /docs/source/api/v4/user_login.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/user_login.rst -------------------------------------------------------------------------------- /docs/source/api/v4/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/users.rst -------------------------------------------------------------------------------- /docs/source/api/v4/users_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/users_id.rst -------------------------------------------------------------------------------- /docs/source/api/v4/vault_ping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v4/vault_ping.rst -------------------------------------------------------------------------------- /docs/source/api/v5/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/about.rst -------------------------------------------------------------------------------- /docs/source/api/v5/asns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/asns.rst -------------------------------------------------------------------------------- /docs/source/api/v5/asns_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/asns_id.rst -------------------------------------------------------------------------------- /docs/source/api/v5/cdn_locks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/cdn_locks.rst -------------------------------------------------------------------------------- /docs/source/api/v5/cdns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/cdns.rst -------------------------------------------------------------------------------- /docs/source/api/v5/cdns_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/cdns_id.rst -------------------------------------------------------------------------------- /docs/source/api/v5/dbdump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/dbdump.rst -------------------------------------------------------------------------------- /docs/source/api/v5/divisions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/divisions.rst -------------------------------------------------------------------------------- /docs/source/api/v5/isos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/isos.rst -------------------------------------------------------------------------------- /docs/source/api/v5/jobs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/jobs.rst -------------------------------------------------------------------------------- /docs/source/api/v5/logs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/logs.rst -------------------------------------------------------------------------------- /docs/source/api/v5/origins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/origins.rst -------------------------------------------------------------------------------- /docs/source/api/v5/osversions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/osversions.rst -------------------------------------------------------------------------------- /docs/source/api/v5/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/parameters.rst -------------------------------------------------------------------------------- /docs/source/api/v5/ping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/ping.rst -------------------------------------------------------------------------------- /docs/source/api/v5/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/plugins.rst -------------------------------------------------------------------------------- /docs/source/api/v5/profiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/profiles.rst -------------------------------------------------------------------------------- /docs/source/api/v5/regions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/regions.rst -------------------------------------------------------------------------------- /docs/source/api/v5/regions_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/regions_id.rst -------------------------------------------------------------------------------- /docs/source/api/v5/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/roles.rst -------------------------------------------------------------------------------- /docs/source/api/v5/servers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/servers.rst -------------------------------------------------------------------------------- /docs/source/api/v5/servers_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/servers_id.rst -------------------------------------------------------------------------------- /docs/source/api/v5/snapshot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/snapshot.rst -------------------------------------------------------------------------------- /docs/source/api/v5/statuses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/statuses.rst -------------------------------------------------------------------------------- /docs/source/api/v5/steering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/steering.rst -------------------------------------------------------------------------------- /docs/source/api/v5/tenants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/tenants.rst -------------------------------------------------------------------------------- /docs/source/api/v5/tenants_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/tenants_id.rst -------------------------------------------------------------------------------- /docs/source/api/v5/topologies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/topologies.rst -------------------------------------------------------------------------------- /docs/source/api/v5/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/types.rst -------------------------------------------------------------------------------- /docs/source/api/v5/types_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/types_id.rst -------------------------------------------------------------------------------- /docs/source/api/v5/user_login.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/user_login.rst -------------------------------------------------------------------------------- /docs/source/api/v5/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/users.rst -------------------------------------------------------------------------------- /docs/source/api/v5/users_id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/users_id.rst -------------------------------------------------------------------------------- /docs/source/api/v5/vault_ping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/api/v5/vault_ping.rst -------------------------------------------------------------------------------- /docs/source/basics/fwda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/basics/fwda.png -------------------------------------------------------------------------------- /docs/source/basics/http_11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/basics/http_11.rst -------------------------------------------------------------------------------- /docs/source/basics/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/basics/index.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/development/index.rst -------------------------------------------------------------------------------- /docs/source/docutils.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/docutils.conf -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/favicon.ico -------------------------------------------------------------------------------- /docs/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/glossary.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/overview/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/overview/index.rst -------------------------------------------------------------------------------- /docs/source/overview/jobs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/overview/jobs.rst -------------------------------------------------------------------------------- /docs/source/overview/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/overview/roles.rst -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/requirements.txt -------------------------------------------------------------------------------- /docs/source/tools/atstccfg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/tools/atstccfg.rst -------------------------------------------------------------------------------- /docs/source/tools/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/tools/index.rst -------------------------------------------------------------------------------- /docs/source/tools/toaccess.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/source/tools/toaccess.rst -------------------------------------------------------------------------------- /docs/wiki/GitHub-Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/docs/wiki/GitHub-Flow.png -------------------------------------------------------------------------------- /experimental/webfront/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/experimental/webfront/Dockerfile -------------------------------------------------------------------------------- /experimental/webfront/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/experimental/webfront/README.md -------------------------------------------------------------------------------- /experimental/webfront/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/experimental/webfront/rules.json -------------------------------------------------------------------------------- /experimental/webfront/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/experimental/webfront/server.pem -------------------------------------------------------------------------------- /experimental/webfront/webfront.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/experimental/webfront/webfront.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/go.sum -------------------------------------------------------------------------------- /grove/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/.gitignore -------------------------------------------------------------------------------- /grove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/README.md -------------------------------------------------------------------------------- /grove/VERSION: -------------------------------------------------------------------------------- 1 | 0.2 2 | -------------------------------------------------------------------------------- /grove/build/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/build/build_rpm.sh -------------------------------------------------------------------------------- /grove/build/grove.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/build/grove.init -------------------------------------------------------------------------------- /grove/build/grove.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/build/grove.logrotate -------------------------------------------------------------------------------- /grove/build/grove.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/build/grove.spec -------------------------------------------------------------------------------- /grove/cache/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/cache/handler.go -------------------------------------------------------------------------------- /grove/cache/responder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/cache/responder.go -------------------------------------------------------------------------------- /grove/cache/retryinggetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/cache/retryinggetter.go -------------------------------------------------------------------------------- /grove/cachedata/cachedata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/cachedata/cachedata.go -------------------------------------------------------------------------------- /grove/cacheobj/cacheobj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/cacheobj/cacheobj.go -------------------------------------------------------------------------------- /grove/chash/atsconsistenthash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/chash/atsconsistenthash.go -------------------------------------------------------------------------------- /grove/chash/atsorderedmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/chash/atsorderedmap.go -------------------------------------------------------------------------------- /grove/chash/atsorderedmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/chash/atsorderedmap_test.go -------------------------------------------------------------------------------- /grove/conf/grove.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/conf/grove.cfg -------------------------------------------------------------------------------- /grove/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/config/config.go -------------------------------------------------------------------------------- /grove/diskcache/diskcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/diskcache/diskcache.go -------------------------------------------------------------------------------- /grove/diskcache/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/diskcache/multi.go -------------------------------------------------------------------------------- /grove/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/docker/Dockerfile -------------------------------------------------------------------------------- /grove/docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /grove/grove.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/grove.cfg -------------------------------------------------------------------------------- /grove/grove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/grove.go -------------------------------------------------------------------------------- /grove/grovetccfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/grovetccfg/README.md -------------------------------------------------------------------------------- /grove/grovetccfg/grovetccfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/grovetccfg/grovetccfg.go -------------------------------------------------------------------------------- /grove/icache/icache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/icache/icache.go -------------------------------------------------------------------------------- /grove/integration_test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/integration_test/Dockerfile -------------------------------------------------------------------------------- /grove/integration_test/grove.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/integration_test/grove.cfg -------------------------------------------------------------------------------- /grove/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/lru/lru.go -------------------------------------------------------------------------------- /grove/memcache/memcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/memcache/memcache.go -------------------------------------------------------------------------------- /grove/plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/README.md -------------------------------------------------------------------------------- /grove/plugin/ats_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/ats_log.go -------------------------------------------------------------------------------- /grove/plugin/ats_log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/ats_log_test.go -------------------------------------------------------------------------------- /grove/plugin/hello_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/hello_context.go -------------------------------------------------------------------------------- /grove/plugin/hello_world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/hello_world.go -------------------------------------------------------------------------------- /grove/plugin/http_callgc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/http_callgc.go -------------------------------------------------------------------------------- /grove/plugin/http_memstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/http_memstats.go -------------------------------------------------------------------------------- /grove/plugin/http_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/http_stats.go -------------------------------------------------------------------------------- /grove/plugin/if_modified_since.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/if_modified_since.go -------------------------------------------------------------------------------- /grove/plugin/modify_headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/modify_headers.go -------------------------------------------------------------------------------- /grove/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/plugin.go -------------------------------------------------------------------------------- /grove/plugin/range_req_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/range_req_handler.go -------------------------------------------------------------------------------- /grove/plugin/record_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/plugin/record_stats.go -------------------------------------------------------------------------------- /grove/remap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/remap.json -------------------------------------------------------------------------------- /grove/remap/remap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/remap/remap.go -------------------------------------------------------------------------------- /grove/remapdata/remapdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/remapdata/remapdata.go -------------------------------------------------------------------------------- /grove/stat/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/stat/stats.go -------------------------------------------------------------------------------- /grove/stat/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/stat/stats_test.go -------------------------------------------------------------------------------- /grove/testorigin/testorigin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/testorigin/testorigin.go -------------------------------------------------------------------------------- /grove/thread/getter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/thread/getter.go -------------------------------------------------------------------------------- /grove/thread/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/thread/limiter.go -------------------------------------------------------------------------------- /grove/tiercache/tiercache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/tiercache/tiercache.go -------------------------------------------------------------------------------- /grove/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/version.go -------------------------------------------------------------------------------- /grove/web/cachecontrol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/web/cachecontrol.go -------------------------------------------------------------------------------- /grove/web/cachecontrol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/web/cachecontrol_test.go -------------------------------------------------------------------------------- /grove/web/connmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/web/connmap.go -------------------------------------------------------------------------------- /grove/web/httptee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/web/httptee.go -------------------------------------------------------------------------------- /grove/web/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/web/listener.go -------------------------------------------------------------------------------- /grove/web/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/grove/web/util.go -------------------------------------------------------------------------------- /infrastructure/ansible/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/infrastructure/ansible/.gitignore -------------------------------------------------------------------------------- /infrastructure/cdn-in-a-box/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /infrastructure/cdn-in-a-box/traffic_ops_data/divisions/010-north.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Quebec" 3 | } 4 | -------------------------------------------------------------------------------- /infrastructure/cdn-in-a-box/traffic_ops_data/divisions/020-usa.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "USA" 3 | } 4 | -------------------------------------------------------------------------------- /infrastructure/cdn-in-a-box/traffic_ops_data/server_capabilities/010-HDD.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "HDD" 3 | } 4 | -------------------------------------------------------------------------------- /infrastructure/docker/build/docker-compose-opt.yml.ats: -------------------------------------------------------------------------------- 1 | ../../../traffic_server/_tsb/docker-compose.yml -------------------------------------------------------------------------------- /lib/go-atscfg/astatsdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/astatsdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/atscfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/atscfg.go -------------------------------------------------------------------------------- /lib/go-atscfg/atscfg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/atscfg_test.go -------------------------------------------------------------------------------- /lib/go-atscfg/atsdotrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/atsdotrules.go -------------------------------------------------------------------------------- /lib/go-atscfg/atsdotrules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/atsdotrules_test.go -------------------------------------------------------------------------------- /lib/go-atscfg/bgfetchdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/bgfetchdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/cachedotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/cachedotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/chkconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/chkconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/chkconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/chkconfig_test.go -------------------------------------------------------------------------------- /lib/go-atscfg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/doc.go -------------------------------------------------------------------------------- /lib/go-atscfg/facts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/facts.go -------------------------------------------------------------------------------- /lib/go-atscfg/facts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/facts_test.go -------------------------------------------------------------------------------- /lib/go-atscfg/hostingdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/hostingdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/ipallowdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/ipallowdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/ipallowdotyaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/ipallowdotyaml.go -------------------------------------------------------------------------------- /lib/go-atscfg/loggingdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/loggingdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/loggingdotyaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/loggingdotyaml.go -------------------------------------------------------------------------------- /lib/go-atscfg/logsdotxml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/logsdotxml.go -------------------------------------------------------------------------------- /lib/go-atscfg/logsdotxml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/logsdotxml_test.go -------------------------------------------------------------------------------- /lib/go-atscfg/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/meta.go -------------------------------------------------------------------------------- /lib/go-atscfg/meta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/meta_test.go -------------------------------------------------------------------------------- /lib/go-atscfg/packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/packages.go -------------------------------------------------------------------------------- /lib/go-atscfg/packages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/packages_test.go -------------------------------------------------------------------------------- /lib/go-atscfg/parentdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/parentdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/plugindotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/plugindotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/recordsdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/recordsdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/remapdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/remapdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/serverunknown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/serverunknown.go -------------------------------------------------------------------------------- /lib/go-atscfg/setdscpdotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/setdscpdotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/snidotyaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/snidotyaml.go -------------------------------------------------------------------------------- /lib/go-atscfg/snidotyaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/snidotyaml_test.go -------------------------------------------------------------------------------- /lib/go-atscfg/storagedotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/storagedotconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/sysctldotconf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/sysctldotconf.go -------------------------------------------------------------------------------- /lib/go-atscfg/urisigningconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/urisigningconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/urlsigconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/urlsigconfig.go -------------------------------------------------------------------------------- /lib/go-atscfg/volumedotconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-atscfg/volumedotconfig.go -------------------------------------------------------------------------------- /lib/go-llog/llog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-llog/llog.go -------------------------------------------------------------------------------- /lib/go-log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-log/log.go -------------------------------------------------------------------------------- /lib/go-log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-log/log_test.go -------------------------------------------------------------------------------- /lib/go-log/standardlogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-log/standardlogger.go -------------------------------------------------------------------------------- /lib/go-log/standardlogger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-log/standardlogger_test.go -------------------------------------------------------------------------------- /lib/go-log/test.logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-log/test.logger.go -------------------------------------------------------------------------------- /lib/go-log/test.logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-log/test.logger_test.go -------------------------------------------------------------------------------- /lib/go-nagios/nagios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-nagios/nagios.go -------------------------------------------------------------------------------- /lib/go-rfc/cachecontrol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/cachecontrol.go -------------------------------------------------------------------------------- /lib/go-rfc/cachecontrol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/cachecontrol_test.go -------------------------------------------------------------------------------- /lib/go-rfc/caching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/caching.go -------------------------------------------------------------------------------- /lib/go-rfc/caching_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/caching_test.go -------------------------------------------------------------------------------- /lib/go-rfc/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/email.go -------------------------------------------------------------------------------- /lib/go-rfc/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/http.go -------------------------------------------------------------------------------- /lib/go-rfc/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/http_test.go -------------------------------------------------------------------------------- /lib/go-rfc/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/jwt.go -------------------------------------------------------------------------------- /lib/go-rfc/ldap/ldap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/ldap/ldap.go -------------------------------------------------------------------------------- /lib/go-rfc/mimetype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/mimetype.go -------------------------------------------------------------------------------- /lib/go-rfc/mimetype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/mimetype_test.go -------------------------------------------------------------------------------- /lib/go-rfc/rfc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/rfc.go -------------------------------------------------------------------------------- /lib/go-rfc/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-rfc/url.go -------------------------------------------------------------------------------- /lib/go-tc/acme_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/acme_account.go -------------------------------------------------------------------------------- /lib/go-tc/alerts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/alerts.go -------------------------------------------------------------------------------- /lib/go-tc/alerts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/alerts_test.go -------------------------------------------------------------------------------- /lib/go-tc/api_capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/api_capabilities.go -------------------------------------------------------------------------------- /lib/go-tc/asns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/asns.go -------------------------------------------------------------------------------- /lib/go-tc/async_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/async_status.go -------------------------------------------------------------------------------- /lib/go-tc/cachegroups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/cachegroups.go -------------------------------------------------------------------------------- /lib/go-tc/capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/capabilities.go -------------------------------------------------------------------------------- /lib/go-tc/cdn_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/cdn_lock.go -------------------------------------------------------------------------------- /lib/go-tc/cdn_notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/cdn_notification.go -------------------------------------------------------------------------------- /lib/go-tc/cdns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/cdns.go -------------------------------------------------------------------------------- /lib/go-tc/cdns_dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/cdns_dnssec.go -------------------------------------------------------------------------------- /lib/go-tc/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/constants.go -------------------------------------------------------------------------------- /lib/go-tc/coordinates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/coordinates.go -------------------------------------------------------------------------------- /lib/go-tc/crconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/crconfig.go -------------------------------------------------------------------------------- /lib/go-tc/crsstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/crsstats.go -------------------------------------------------------------------------------- /lib/go-tc/crstates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/crstates.go -------------------------------------------------------------------------------- /lib/go-tc/deliveryservices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/deliveryservices.go -------------------------------------------------------------------------------- /lib/go-tc/divisions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/divisions.go -------------------------------------------------------------------------------- /lib/go-tc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/doc.go -------------------------------------------------------------------------------- /lib/go-tc/domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/domains.go -------------------------------------------------------------------------------- /lib/go-tc/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/enum.go -------------------------------------------------------------------------------- /lib/go-tc/enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/enum_test.go -------------------------------------------------------------------------------- /lib/go-tc/federation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/federation.go -------------------------------------------------------------------------------- /lib/go-tc/federation_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/federation_resolver.go -------------------------------------------------------------------------------- /lib/go-tc/hwinfos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/hwinfos.go -------------------------------------------------------------------------------- /lib/go-tc/invalidationjobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/invalidationjobs.go -------------------------------------------------------------------------------- /lib/go-tc/iso.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/iso.go -------------------------------------------------------------------------------- /lib/go-tc/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/jobs.go -------------------------------------------------------------------------------- /lib/go-tc/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/log.go -------------------------------------------------------------------------------- /lib/go-tc/nullable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/nullable_test.go -------------------------------------------------------------------------------- /lib/go-tc/origins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/origins.go -------------------------------------------------------------------------------- /lib/go-tc/parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/parameters.go -------------------------------------------------------------------------------- /lib/go-tc/physlocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/physlocations.go -------------------------------------------------------------------------------- /lib/go-tc/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/plugins.go -------------------------------------------------------------------------------- /lib/go-tc/profile_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/profile_parameters.go -------------------------------------------------------------------------------- /lib/go-tc/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/profiles.go -------------------------------------------------------------------------------- /lib/go-tc/regions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/regions.go -------------------------------------------------------------------------------- /lib/go-tc/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/roles.go -------------------------------------------------------------------------------- /lib/go-tc/roles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/roles_test.go -------------------------------------------------------------------------------- /lib/go-tc/server_capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/server_capabilities.go -------------------------------------------------------------------------------- /lib/go-tc/serverchecks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/serverchecks.go -------------------------------------------------------------------------------- /lib/go-tc/servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/servers.go -------------------------------------------------------------------------------- /lib/go-tc/servers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/servers_test.go -------------------------------------------------------------------------------- /lib/go-tc/service_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/service_category.go -------------------------------------------------------------------------------- /lib/go-tc/sslkey_expirations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/sslkey_expirations.go -------------------------------------------------------------------------------- /lib/go-tc/staticdnsentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/staticdnsentry.go -------------------------------------------------------------------------------- /lib/go-tc/stats_summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/stats_summary.go -------------------------------------------------------------------------------- /lib/go-tc/statuses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/statuses.go -------------------------------------------------------------------------------- /lib/go-tc/steering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/steering.go -------------------------------------------------------------------------------- /lib/go-tc/steeringtarget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/steeringtarget.go -------------------------------------------------------------------------------- /lib/go-tc/system_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/system_info.go -------------------------------------------------------------------------------- /lib/go-tc/tenants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/tenants.go -------------------------------------------------------------------------------- /lib/go-tc/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/time.go -------------------------------------------------------------------------------- /lib/go-tc/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/time_test.go -------------------------------------------------------------------------------- /lib/go-tc/toextension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/toextension.go -------------------------------------------------------------------------------- /lib/go-tc/topologies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/topologies.go -------------------------------------------------------------------------------- /lib/go-tc/totest/asns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/asns.go -------------------------------------------------------------------------------- /lib/go-tc/totest/cachegroups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/cachegroups.go -------------------------------------------------------------------------------- /lib/go-tc/totest/cdns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/cdns.go -------------------------------------------------------------------------------- /lib/go-tc/totest/coordinates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/coordinates.go -------------------------------------------------------------------------------- /lib/go-tc/totest/divisions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/divisions.go -------------------------------------------------------------------------------- /lib/go-tc/totest/federations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/federations.go -------------------------------------------------------------------------------- /lib/go-tc/totest/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/jobs.go -------------------------------------------------------------------------------- /lib/go-tc/totest/origins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/origins.go -------------------------------------------------------------------------------- /lib/go-tc/totest/parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/parameters.go -------------------------------------------------------------------------------- /lib/go-tc/totest/physlocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/physlocations.go -------------------------------------------------------------------------------- /lib/go-tc/totest/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/profiles.go -------------------------------------------------------------------------------- /lib/go-tc/totest/regions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/regions.go -------------------------------------------------------------------------------- /lib/go-tc/totest/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/roles.go -------------------------------------------------------------------------------- /lib/go-tc/totest/server_checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/server_checks.go -------------------------------------------------------------------------------- /lib/go-tc/totest/servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/servers.go -------------------------------------------------------------------------------- /lib/go-tc/totest/statuses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/statuses.go -------------------------------------------------------------------------------- /lib/go-tc/totest/tenants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/tenants.go -------------------------------------------------------------------------------- /lib/go-tc/totest/topologies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/topologies.go -------------------------------------------------------------------------------- /lib/go-tc/totest/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/types.go -------------------------------------------------------------------------------- /lib/go-tc/totest/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totest/users.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/asns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/asns.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/cachegroups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/cachegroups.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/cdns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/cdns.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/coordinates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/coordinates.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/divisions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/divisions.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/federations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/federations.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/jobs.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/origins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/origins.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/parameters.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/profiles.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/regions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/regions.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/roles.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/servers.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/statuses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/statuses.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/tenants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/tenants.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/topologies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/topologies.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/types.go -------------------------------------------------------------------------------- /lib/go-tc/totestv4/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/totestv4/users.go -------------------------------------------------------------------------------- /lib/go-tc/tovalidate/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/tovalidate/db.go -------------------------------------------------------------------------------- /lib/go-tc/tovalidate/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/tovalidate/doc.go -------------------------------------------------------------------------------- /lib/go-tc/tovalidate/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/tovalidate/rules.go -------------------------------------------------------------------------------- /lib/go-tc/tovalidate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/tovalidate/validate.go -------------------------------------------------------------------------------- /lib/go-tc/traffic_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/traffic_monitor.go -------------------------------------------------------------------------------- /lib/go-tc/traffic_monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/traffic_monitor_test.go -------------------------------------------------------------------------------- /lib/go-tc/traffic_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/traffic_router.go -------------------------------------------------------------------------------- /lib/go-tc/traffic_router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/traffic_router_test.go -------------------------------------------------------------------------------- /lib/go-tc/traffic_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/traffic_stats.go -------------------------------------------------------------------------------- /lib/go-tc/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/types.go -------------------------------------------------------------------------------- /lib/go-tc/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/users.go -------------------------------------------------------------------------------- /lib/go-tc/users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-tc/users_test.go -------------------------------------------------------------------------------- /lib/go-util/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/assert/assertions.go -------------------------------------------------------------------------------- /lib/go-util/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/backoff.go -------------------------------------------------------------------------------- /lib/go-util/backoff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/backoff_test.go -------------------------------------------------------------------------------- /lib/go-util/collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/collections.go -------------------------------------------------------------------------------- /lib/go-util/collections_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/collections_test.go -------------------------------------------------------------------------------- /lib/go-util/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/doc.go -------------------------------------------------------------------------------- /lib/go-util/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/encrypt.go -------------------------------------------------------------------------------- /lib/go-util/encrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/encrypt_test.go -------------------------------------------------------------------------------- /lib/go-util/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/error.go -------------------------------------------------------------------------------- /lib/go-util/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/error_test.go -------------------------------------------------------------------------------- /lib/go-util/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/http.go -------------------------------------------------------------------------------- /lib/go-util/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/http_test.go -------------------------------------------------------------------------------- /lib/go-util/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/join.go -------------------------------------------------------------------------------- /lib/go-util/join_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/join_test.go -------------------------------------------------------------------------------- /lib/go-util/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/net.go -------------------------------------------------------------------------------- /lib/go-util/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/net_test.go -------------------------------------------------------------------------------- /lib/go-util/num.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/num.go -------------------------------------------------------------------------------- /lib/go-util/num_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/num_test.go -------------------------------------------------------------------------------- /lib/go-util/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/ptr.go -------------------------------------------------------------------------------- /lib/go-util/ptr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/ptr_test.go -------------------------------------------------------------------------------- /lib/go-util/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/str.go -------------------------------------------------------------------------------- /lib/go-util/str_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/str_test.go -------------------------------------------------------------------------------- /lib/go-util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/go-util/util.go -------------------------------------------------------------------------------- /lib/varnishcfg/access_control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/varnishcfg/access_control.go -------------------------------------------------------------------------------- /lib/varnishcfg/backends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/varnishcfg/backends.go -------------------------------------------------------------------------------- /lib/varnishcfg/backends_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/varnishcfg/backends_test.go -------------------------------------------------------------------------------- /lib/varnishcfg/cache_control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/varnishcfg/cache_control.go -------------------------------------------------------------------------------- /lib/varnishcfg/hitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/varnishcfg/hitch.go -------------------------------------------------------------------------------- /lib/varnishcfg/hitch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/varnishcfg/hitch_test.go -------------------------------------------------------------------------------- /lib/varnishcfg/vcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/varnishcfg/vcl.go -------------------------------------------------------------------------------- /lib/varnishcfg/vclbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/lib/varnishcfg/vclbuilder.go -------------------------------------------------------------------------------- /licenses/AL2-jsonformatter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/AL2-jsonformatter -------------------------------------------------------------------------------- /licenses/BSD-angular-chartjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/BSD-angular-chartjs -------------------------------------------------------------------------------- /licenses/BSD-go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/BSD-go -------------------------------------------------------------------------------- /licenses/BSD-jsdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/BSD-jsdiff -------------------------------------------------------------------------------- /licenses/CC0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/CC0 -------------------------------------------------------------------------------- /licenses/CC_A_SA_4-maxmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/CC_A_SA_4-maxmind -------------------------------------------------------------------------------- /licenses/ISC-netpacket_ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/ISC-netpacket_ipv6 -------------------------------------------------------------------------------- /licenses/MIT-ColReorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-ColReorder -------------------------------------------------------------------------------- /licenses/MIT-SecLists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-SecLists -------------------------------------------------------------------------------- /licenses/MIT-angular_loading_bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-angular_loading_bar -------------------------------------------------------------------------------- /licenses/MIT-angular_ui_tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-angular_ui_tree -------------------------------------------------------------------------------- /licenses/MIT-buttons-html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-buttons-html5 -------------------------------------------------------------------------------- /licenses/MIT-chartjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-chartjs -------------------------------------------------------------------------------- /licenses/MIT-cropper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-cropper -------------------------------------------------------------------------------- /licenses/MIT-datatables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-datatables -------------------------------------------------------------------------------- /licenses/MIT-datatables-buttons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-datatables-buttons -------------------------------------------------------------------------------- /licenses/MIT-downloadjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-downloadjs -------------------------------------------------------------------------------- /licenses/MIT-fast-json-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-fast-json-patch -------------------------------------------------------------------------------- /licenses/MIT-fontawesome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-fontawesome -------------------------------------------------------------------------------- /licenses/MIT-gentelella: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-gentelella -------------------------------------------------------------------------------- /licenses/MIT-jquery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-jquery -------------------------------------------------------------------------------- /licenses/MIT-momentjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-momentjs -------------------------------------------------------------------------------- /licenses/MIT-normalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-normalize -------------------------------------------------------------------------------- /licenses/MIT-underscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/MIT-underscore -------------------------------------------------------------------------------- /licenses/SIL-1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/licenses/SIL-1.1 -------------------------------------------------------------------------------- /misc/changelog.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/changelog.pl -------------------------------------------------------------------------------- /misc/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/git/README.md -------------------------------------------------------------------------------- /misc/git/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/git/pre-commit -------------------------------------------------------------------------------- /misc/kickstart_drive_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/kickstart_drive_config.sh -------------------------------------------------------------------------------- /misc/logos/ATC-PNG-FULL-BLACK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-PNG-FULL-BLACK.png -------------------------------------------------------------------------------- /misc/logos/ATC-PNG-FULL-WHITE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-PNG-FULL-WHITE.png -------------------------------------------------------------------------------- /misc/logos/ATC-PNG-LARGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-PNG-LARGE.png -------------------------------------------------------------------------------- /misc/logos/ATC-PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-PNG.png -------------------------------------------------------------------------------- /misc/logos/ATC-SVG-FULL-BLACK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-SVG-FULL-BLACK.svg -------------------------------------------------------------------------------- /misc/logos/ATC-SVG-FULL-WHITE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-SVG-FULL-WHITE.svg -------------------------------------------------------------------------------- /misc/logos/ATC-SVG-FULL.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-SVG-FULL.sketch -------------------------------------------------------------------------------- /misc/logos/ATC-SVG.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-SVG.sketch -------------------------------------------------------------------------------- /misc/logos/ATC-SVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/logos/ATC-SVG.svg -------------------------------------------------------------------------------- /misc/parse_diffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/parse_diffs.py -------------------------------------------------------------------------------- /misc/release.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/misc/release.pl -------------------------------------------------------------------------------- /pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/pkg -------------------------------------------------------------------------------- /pkg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/pkg.ps1 -------------------------------------------------------------------------------- /tc-health-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/.gitignore -------------------------------------------------------------------------------- /tc-health-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/README.md -------------------------------------------------------------------------------- /tc-health-client/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/config/config.go -------------------------------------------------------------------------------- /tc-health-client/sar/multisar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/sar/multisar.go -------------------------------------------------------------------------------- /tc-health-client/sar/sar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/sar/sar.go -------------------------------------------------------------------------------- /tc-health-client/sar/sar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/sar/sar_test.go -------------------------------------------------------------------------------- /tc-health-client/sar/tcphdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/sar/tcphdr.go -------------------------------------------------------------------------------- /tc-health-client/sar/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/sar/util.go -------------------------------------------------------------------------------- /tc-health-client/testing/docker/.env: -------------------------------------------------------------------------------- 1 | ../../../.env -------------------------------------------------------------------------------- /tc-health-client/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tc-health-client/util/util.go -------------------------------------------------------------------------------- /test/astats_sim/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/astats_sim/Readme.md -------------------------------------------------------------------------------- /test/astats_sim/_astats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/astats_sim/_astats -------------------------------------------------------------------------------- /test/astats_sim/_astats_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/astats_sim/_astats_static -------------------------------------------------------------------------------- /test/astats_sim/ats_sim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/astats_sim/ats_sim.js -------------------------------------------------------------------------------- /test/fakeOrigin/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/.dockerignore -------------------------------------------------------------------------------- /test/fakeOrigin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/.gitignore -------------------------------------------------------------------------------- /test/fakeOrigin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/Dockerfile -------------------------------------------------------------------------------- /test/fakeOrigin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/README.md -------------------------------------------------------------------------------- /test/fakeOrigin/build/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/build/config.json -------------------------------------------------------------------------------- /test/fakeOrigin/docs/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/docs/Testing.md -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/bin.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/config.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/dtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/dtp.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/fwd_delay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/fwd_delay.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/fwd_posevt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/fwd_posevt.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/handler.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/num.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/num.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/plugutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/plugutils.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/text.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/type_bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/type_bin.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/type_binf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/type_binf.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/type_gen3s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/type_gen3s.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/type_tex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/type_tex.go -------------------------------------------------------------------------------- /test/fakeOrigin/dtp/type_txt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/dtp/type_txt.go -------------------------------------------------------------------------------- /test/fakeOrigin/fakeOrigin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/fakeOrigin.go -------------------------------------------------------------------------------- /test/fakeOrigin/m3u8/m3u8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/m3u8/m3u8.go -------------------------------------------------------------------------------- /test/fakeOrigin/shard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/shard.sh -------------------------------------------------------------------------------- /test/fakeOrigin/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/fakeOrigin/version.go -------------------------------------------------------------------------------- /test/router/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/Readme.md -------------------------------------------------------------------------------- /test/router/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/client/client.go -------------------------------------------------------------------------------- /test/router/css/loadtest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/css/loadtest.css -------------------------------------------------------------------------------- /test/router/data/httpresult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/data/httpresult.go -------------------------------------------------------------------------------- /test/router/dnssec/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/dnssec/Readme.md -------------------------------------------------------------------------------- /test/router/dnssec/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/dnssec/dnssec.go -------------------------------------------------------------------------------- /test/router/dnssec/dnssec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/dnssec/dnssec_test.go -------------------------------------------------------------------------------- /test/router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/index.html -------------------------------------------------------------------------------- /test/router/js/load-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/js/load-test.jsx -------------------------------------------------------------------------------- /test/router/load/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/load/load.go -------------------------------------------------------------------------------- /test/router/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/test/router/server/server.go -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/golang/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /tools/golang/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tools/golang/Dockerfile -------------------------------------------------------------------------------- /tools/golang/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tools/golang/docker-compose.yml -------------------------------------------------------------------------------- /tools/golang/unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tools/golang/unit-tests.sh -------------------------------------------------------------------------------- /tools/traffic_vault_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/tools/traffic_vault_util.go -------------------------------------------------------------------------------- /traffic_control/clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_control/clients/README.md -------------------------------------------------------------------------------- /traffic_monitor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/.gitignore -------------------------------------------------------------------------------- /traffic_monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/README.md -------------------------------------------------------------------------------- /traffic_monitor/cache/astats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/cache/astats.csv -------------------------------------------------------------------------------- /traffic_monitor/cache/astats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/cache/astats.go -------------------------------------------------------------------------------- /traffic_monitor/cache/astats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/cache/astats.json -------------------------------------------------------------------------------- /traffic_monitor/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/cache/cache.go -------------------------------------------------------------------------------- /traffic_monitor/cache/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/cache/data.go -------------------------------------------------------------------------------- /traffic_monitor/cache/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/cache/noop.go -------------------------------------------------------------------------------- /traffic_monitor/cache/vstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/cache/vstats.go -------------------------------------------------------------------------------- /traffic_monitor/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/config/config.go -------------------------------------------------------------------------------- /traffic_monitor/datareq/dsstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/datareq/dsstat.go -------------------------------------------------------------------------------- /traffic_monitor/datareq/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/datareq/stat.go -------------------------------------------------------------------------------- /traffic_monitor/ds/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/ds/stat.go -------------------------------------------------------------------------------- /traffic_monitor/ds/stat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/ds/stat_test.go -------------------------------------------------------------------------------- /traffic_monitor/dsdata/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/dsdata/stat.go -------------------------------------------------------------------------------- /traffic_monitor/health/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/health/cache.go -------------------------------------------------------------------------------- /traffic_monitor/health/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/health/event.go -------------------------------------------------------------------------------- /traffic_monitor/manager/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/manager/health.go -------------------------------------------------------------------------------- /traffic_monitor/manager/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/manager/peer.go -------------------------------------------------------------------------------- /traffic_monitor/manager/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/manager/stat.go -------------------------------------------------------------------------------- /traffic_monitor/peer/crstates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/peer/crstates.go -------------------------------------------------------------------------------- /traffic_monitor/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/peer/peer.go -------------------------------------------------------------------------------- /traffic_monitor/peer/peer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/peer/peer_test.go -------------------------------------------------------------------------------- /traffic_monitor/poller/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/poller/cache.go -------------------------------------------------------------------------------- /traffic_monitor/poller/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/poller/peer.go -------------------------------------------------------------------------------- /traffic_monitor/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/static/index.html -------------------------------------------------------------------------------- /traffic_monitor/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/static/script.js -------------------------------------------------------------------------------- /traffic_monitor/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/static/style.css -------------------------------------------------------------------------------- /traffic_monitor/tests/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /traffic_monitor/tests/_integration/.env: -------------------------------------------------------------------------------- 1 | ../../../.env -------------------------------------------------------------------------------- /traffic_monitor/todata/todata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/todata/todata.go -------------------------------------------------------------------------------- /traffic_monitor/towrap/towrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/towrap/towrap.go -------------------------------------------------------------------------------- /traffic_monitor/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_monitor/version.go -------------------------------------------------------------------------------- /traffic_ops/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/INSTALL.md -------------------------------------------------------------------------------- /traffic_ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/README.md -------------------------------------------------------------------------------- /traffic_ops/app/bin/tests/.env: -------------------------------------------------------------------------------- 1 | ../../../../.env -------------------------------------------------------------------------------- /traffic_ops/app/conf/cdn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/app/conf/cdn.conf -------------------------------------------------------------------------------- /traffic_ops/app/conf/production/backends.conf: -------------------------------------------------------------------------------- 1 | { 2 | "routes": [] 3 | } 4 | -------------------------------------------------------------------------------- /traffic_ops/app/db/SQUASH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/app/db/SQUASH.md -------------------------------------------------------------------------------- /traffic_ops/app/db/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/app/db/admin.go -------------------------------------------------------------------------------- /traffic_ops/app/db/dbconf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/app/db/dbconf.yml -------------------------------------------------------------------------------- /traffic_ops/app/db/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traffic_ops/app/db/patches.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/app/db/patches.sql -------------------------------------------------------------------------------- /traffic_ops/app/db/seeds.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/app/db/seeds.sql -------------------------------------------------------------------------------- /traffic_ops/app/db/trafficvault/test/.env: -------------------------------------------------------------------------------- 1 | ../../../../../.env -------------------------------------------------------------------------------- /traffic_ops/app/db/trafficvault/test/aes.key: -------------------------------------------------------------------------------- 1 | pRQOUFjoj5UhUkLOnvVT/VPB1+cb5SY9WNXkS2m6DiQ= 2 | -------------------------------------------------------------------------------- /traffic_ops/app/db/trafficvault/test/new-aes.key: -------------------------------------------------------------------------------- 1 | U+522hf5MGw4MvxSpVQkjokiUC8kQCP2UkEYxCfsAzs= 2 | -------------------------------------------------------------------------------- /traffic_ops/build/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/build/build_rpm.sh -------------------------------------------------------------------------------- /traffic_ops/install/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/install/README -------------------------------------------------------------------------------- /traffic_ops/install/data/json/osversions.json: -------------------------------------------------------------------------------- 1 | { 2 | "CentOS 7.2": "centos72" 3 | } 4 | -------------------------------------------------------------------------------- /traffic_ops/install/data/json/post_install.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traffic_ops/install/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/install/etc/README -------------------------------------------------------------------------------- /traffic_ops/testing/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/testing/api/README.md -------------------------------------------------------------------------------- /traffic_ops/traffic_ops_golang/swaggerdocs/v13/.env: -------------------------------------------------------------------------------- 1 | ../../../../.env -------------------------------------------------------------------------------- /traffic_ops/traffic_ops_golang/swaggerdocs/v13/swaggerspec/requirements.txt: -------------------------------------------------------------------------------- 1 | swagger2rst 2 | -------------------------------------------------------------------------------- /traffic_ops/v3-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/README.md -------------------------------------------------------------------------------- /traffic_ops/v3-client/about.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/about.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/asn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/asn.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/cdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/cdn.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/crconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/crconfig.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/division.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/division.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/dsuser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/dsuser.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/iso.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/iso.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/job.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/log.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/origin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/origin.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/ping.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/profile.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/region.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/role.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/server.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/session.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/status.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/steering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/steering.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/tenant.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/topology.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/type.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/user.go -------------------------------------------------------------------------------- /traffic_ops/v3-client/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v3-client/util.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/README.md -------------------------------------------------------------------------------- /traffic_ops/v4-client/about.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/about.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/acme.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/asn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/asn.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/cdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/cdn.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/cdn_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/cdn_lock.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/crconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/crconfig.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/division.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/division.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/iso.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/iso.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/job.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/log.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/origin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/origin.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/ping.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/profile.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/region.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/role.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/server.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/session.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/status.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/steering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/steering.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/tenant.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/topology.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/type.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/user.go -------------------------------------------------------------------------------- /traffic_ops/v4-client/vault.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v4-client/vault.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/README.md -------------------------------------------------------------------------------- /traffic_ops/v5-client/about.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/about.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/acme.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/asn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/asn.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/cdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/cdn.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/cdn_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/cdn_lock.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/crconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/crconfig.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/division.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/division.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/iso.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/iso.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/job.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/log.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/origin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/origin.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/ping.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/profile.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/region.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/role.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/server.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/session.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/status.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/steering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/steering.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/tenant.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/topology.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/type.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/user.go -------------------------------------------------------------------------------- /traffic_ops/v5-client/vault.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops/v5-client/vault.go -------------------------------------------------------------------------------- /traffic_ops_db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops_db/.gitignore -------------------------------------------------------------------------------- /traffic_ops_db/docker/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /traffic_ops_db/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops_db/docker/Dockerfile -------------------------------------------------------------------------------- /traffic_ops_db/docker/todb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_ops_db/docker/todb.sh -------------------------------------------------------------------------------- /traffic_ops_db/test/docker/.env: -------------------------------------------------------------------------------- 1 | ../../../.env -------------------------------------------------------------------------------- /traffic_portal/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/.gitattributes -------------------------------------------------------------------------------- /traffic_portal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/.gitignore -------------------------------------------------------------------------------- /traffic_portal/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/Gruntfile.js -------------------------------------------------------------------------------- /traffic_portal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/README.md -------------------------------------------------------------------------------- /traffic_portal/app/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/app/src/app.js -------------------------------------------------------------------------------- /traffic_portal/app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/app/src/index.html -------------------------------------------------------------------------------- /traffic_portal/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/build/README.md -------------------------------------------------------------------------------- /traffic_portal/build/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/build/build_rpm.sh -------------------------------------------------------------------------------- /traffic_portal/conf/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/conf/config.js -------------------------------------------------------------------------------- /traffic_portal/conf/configDev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/conf/configDev.js -------------------------------------------------------------------------------- /traffic_portal/grunt/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/grunt/clean.js -------------------------------------------------------------------------------- /traffic_portal/grunt/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/grunt/copy.js -------------------------------------------------------------------------------- /traffic_portal/grunt/dart-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/grunt/dart-sass.js -------------------------------------------------------------------------------- /traffic_portal/grunt/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/grunt/express.js -------------------------------------------------------------------------------- /traffic_portal/grunt/html2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/grunt/html2js.js -------------------------------------------------------------------------------- /traffic_portal/grunt/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/grunt/uglify.js -------------------------------------------------------------------------------- /traffic_portal/grunt/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/grunt/watch.js -------------------------------------------------------------------------------- /traffic_portal/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/karma.conf.js -------------------------------------------------------------------------------- /traffic_portal/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/package-lock.json -------------------------------------------------------------------------------- /traffic_portal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/package.json -------------------------------------------------------------------------------- /traffic_portal/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_portal/server.js -------------------------------------------------------------------------------- /traffic_portal/server/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traffic_portal/test/integration/CommonUtils/Readme.md: -------------------------------------------------------------------------------- 1 | All the common methods should go in here 2 | -------------------------------------------------------------------------------- /traffic_portal/test/integration/Downloads/Readme.md: -------------------------------------------------------------------------------- 1 | Where user download file from TP -------------------------------------------------------------------------------- /traffic_router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/.gitignore -------------------------------------------------------------------------------- /traffic_router/build/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/build/build_rpm.sh -------------------------------------------------------------------------------- /traffic_router/build/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/build/pom.xml -------------------------------------------------------------------------------- /traffic_router/connector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/connector/pom.xml -------------------------------------------------------------------------------- /traffic_router/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/core/.gitignore -------------------------------------------------------------------------------- /traffic_router/core/.pmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/core/.pmd -------------------------------------------------------------------------------- /traffic_router/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/core/pom.xml -------------------------------------------------------------------------------- /traffic_router/neustar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/neustar/README.md -------------------------------------------------------------------------------- /traffic_router/neustar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/neustar/pom.xml -------------------------------------------------------------------------------- /traffic_router/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/pom.xml -------------------------------------------------------------------------------- /traffic_router/shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/shared/.gitignore -------------------------------------------------------------------------------- /traffic_router/shared/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_router/shared/pom.xml -------------------------------------------------------------------------------- /traffic_router/tests/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /traffic_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_server/README.md -------------------------------------------------------------------------------- /traffic_server/_tsb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_server/_tsb/.gitignore -------------------------------------------------------------------------------- /traffic_server/_tsb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_server/_tsb/Dockerfile -------------------------------------------------------------------------------- /traffic_server/_tsb/patches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_server/_tsb/patches.yml -------------------------------------------------------------------------------- /traffic_server/_tsb/repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_server/_tsb/repos.yml -------------------------------------------------------------------------------- /traffic_server/_tsb/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_server/_tsb/run.sh -------------------------------------------------------------------------------- /traffic_stats/build/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_stats/build/build_rpm.sh -------------------------------------------------------------------------------- /traffic_stats/influxdb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_stats/influxdb/config.go -------------------------------------------------------------------------------- /traffic_stats/influxdb/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_stats/influxdb/query.go -------------------------------------------------------------------------------- /traffic_stats/traffic_stats.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_stats/traffic_stats.cfg -------------------------------------------------------------------------------- /traffic_stats/traffic_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_stats/traffic_stats.go -------------------------------------------------------------------------------- /traffic_stats/traffic_stats.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/traffic_stats/traffic_stats.init -------------------------------------------------------------------------------- /traffic_stats/trafficcontrol-scenes/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "video": false 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/models/gen.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | //go:generate stringer -type=FieldType 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.16 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/TESTS.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/krb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/krb.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/rows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @miekg @tmthrgd 2 | -------------------------------------------------------------------------------- /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/onsi/gomega/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM golang:1.15 2 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/Makefile -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/README.md -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/bucket.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/cursor.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/db.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/doc.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/errors.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/node.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/page.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/tx.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/go.etcd.io/bbolt/unsafe.go -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/tomb.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/tomb.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/tomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/tomb.v1/tomb.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/trafficcontrol/HEAD/vendor/modules.txt --------------------------------------------------------------------------------