You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ma...@apache.org on 2020/04/16 20:15:25 UTC

[trafficcontrol] branch master updated (7939bb4 -> 55c6ae0)

This is an automated email from the ASF dual-hosted git repository.

mattjackson pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git.


    from 7939bb4  Fix nil pointer dereference in sslkeys/add validation (#4638)
     add 55c6ae0  Stats over http parse (#4605)

No new revisions were added by this update.

Summary of changes:
 docs/source/overview/profiles_and_parameters.rst   |  11 +-
 ...ts_type_astats_dsnames.go => astats-dsnames.go} |  83 ++---
 traffic_monitor/cache/astats.go                    | 235 ++++++++++++-
 traffic_monitor/cache/astats.json                  |  40 +--
 traffic_monitor/cache/astats_test.go               |  55 +--
 traffic_monitor/cache/cache.go                     | 141 +++++---
 traffic_monitor/cache/data.go                      |  89 +++--
 traffic_monitor/cache/data_test.go                 |  62 ++--
 .../cache/{stats_type_noop.go => noop.go}          |  37 +-
 traffic_monitor/cache/statistics.go                | 204 +++++++++++
 traffic_monitor/cache/statistics_test.go           |  48 +++
 traffic_monitor/cache/stats_over_http.go           | 389 +++++++++++++++++++++
 traffic_monitor/cache/stats_over_http.json         |  74 ++++
 traffic_monitor/cache/stats_over_http_test.go      |  81 +++++
 traffic_monitor/cache/stats_type_astats.go         | 220 ------------
 traffic_monitor/cache/stats_types.go               | 126 +++++--
 traffic_monitor/ds/stat.go                         |  16 +-
 traffic_monitor/ds/stat_test.go                    |  26 +-
 traffic_monitor/health/cache.go                    |  86 ++---
 traffic_monitor/health/cache_test.go               |  49 +--
 traffic_monitor/manager/health.go                  |  10 +-
 traffic_monitor/manager/stat.go                    |  14 +-
 traffic_monitor/threadsafe/cachemaxkbpses.go       |  12 +-
 traffic_monitor/threadsafe/durationmap.go          |   2 +-
 traffic_monitor/threadsafe/polledcaches.go         |   4 +-
 traffic_monitor/threadsafe/resultstathistory.go    |   4 +-
 .../threadsafe/resultstathistory_test.go           |   7 +-
 traffic_monitor/todata/todata.go                   |  12 +-
 28 files changed, 1521 insertions(+), 616 deletions(-)
 rename traffic_monitor/cache/{stats_type_astats_dsnames.go => astats-dsnames.go} (57%)
 rename traffic_monitor/cache/{stats_type_noop.go => noop.go} (50%)
 create mode 100644 traffic_monitor/cache/statistics.go
 create mode 100644 traffic_monitor/cache/statistics_test.go
 create mode 100644 traffic_monitor/cache/stats_over_http.go
 create mode 100644 traffic_monitor/cache/stats_over_http.json
 create mode 100644 traffic_monitor/cache/stats_over_http_test.go
 delete mode 100644 traffic_monitor/cache/stats_type_astats.go