This is an automated email from the ASF dual-hosted git repository.
chhsiao pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git.
from 1acb38c Removed unused function `Resources::isScalarQuantity`.
new 0e5d6d7 Moved CSI plugin metrics out from SLRP metrics.
new fea9905 Refactored SLRP with `ServiceManager` to manage container
lifecycles.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
src/CMakeLists.txt | 2 +
src/Makefile.am | 4 +
src/csi/metrics.cpp | 126 ++++
src/{log => csi}/metrics.hpp | 32 +-
src/csi/service_manager.cpp | 726 +++++++++++++++++++++
src/csi/service_manager.hpp | 85 +++
src/resource_provider/storage/provider.cpp | 714 ++------------------
src/resource_provider/storage/provider_process.hpp | 51 +-
8 files changed, 1016 insertions(+), 724 deletions(-)
create mode 100644 src/csi/metrics.cpp
copy src/{log => csi}/metrics.hpp (58%)
create mode 100644 src/csi/service_manager.cpp
create mode 100644 src/csi/service_manager.hpp