├── .gitignore ├── AUTHORS ├── CODEOWNERS ├── COPYING ├── ChangeLog ├── Makefile.am ├── README.md ├── autogen.sh ├── config └── .gitignore ├── configure.ac ├── docs ├── PMWatch_User_Guide.docx ├── PMWatch_User_Guide.pdf ├── README ├── README_INSTALL ├── README_INSTALL.txt └── esxi │ ├── README │ └── README_INSTALL ├── m4 └── .gitignore ├── package_pmwatch.sh ├── prepare_pmwatch_release.sh ├── scripts ├── esxi │ ├── install-pmw │ └── pmw_vars.sh ├── install-pmw ├── pmw_vars.cmd └── pmw_vars.sh └── src ├── .gitignore ├── esxi └── pmwatch-stop ├── inc ├── pmw_api.h ├── pmw_collect.h ├── pmw_comm.h ├── pmw_struct.h ├── pmw_utils.h └── pmw_version.h ├── pmw_api.c ├── pmw_collect.c ├── pmw_comm.c ├── pmw_utils.c ├── pmwatch-stop └── pmwatch.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * hari.tg@intel.com -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/autogen.sh -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/config/.gitignore -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/PMWatch_User_Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/docs/PMWatch_User_Guide.docx -------------------------------------------------------------------------------- /docs/PMWatch_User_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/docs/PMWatch_User_Guide.pdf -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/docs/README -------------------------------------------------------------------------------- /docs/README_INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/docs/README_INSTALL -------------------------------------------------------------------------------- /docs/README_INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/docs/README_INSTALL.txt -------------------------------------------------------------------------------- /docs/esxi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/docs/esxi/README -------------------------------------------------------------------------------- /docs/esxi/README_INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/docs/esxi/README_INSTALL -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | *.m4 -------------------------------------------------------------------------------- /package_pmwatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/package_pmwatch.sh -------------------------------------------------------------------------------- /prepare_pmwatch_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/prepare_pmwatch_release.sh -------------------------------------------------------------------------------- /scripts/esxi/install-pmw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/scripts/esxi/install-pmw -------------------------------------------------------------------------------- /scripts/esxi/pmw_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/scripts/esxi/pmw_vars.sh -------------------------------------------------------------------------------- /scripts/install-pmw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/scripts/install-pmw -------------------------------------------------------------------------------- /scripts/pmw_vars.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/scripts/pmw_vars.cmd -------------------------------------------------------------------------------- /scripts/pmw_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/scripts/pmw_vars.sh -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.lo 3 | .dirstamp 4 | .deps 5 | .libs -------------------------------------------------------------------------------- /src/esxi/pmwatch-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/esxi/pmwatch-stop -------------------------------------------------------------------------------- /src/inc/pmw_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/inc/pmw_api.h -------------------------------------------------------------------------------- /src/inc/pmw_collect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/inc/pmw_collect.h -------------------------------------------------------------------------------- /src/inc/pmw_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/inc/pmw_comm.h -------------------------------------------------------------------------------- /src/inc/pmw_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/inc/pmw_struct.h -------------------------------------------------------------------------------- /src/inc/pmw_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/inc/pmw_utils.h -------------------------------------------------------------------------------- /src/inc/pmw_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/inc/pmw_version.h -------------------------------------------------------------------------------- /src/pmw_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/pmw_api.c -------------------------------------------------------------------------------- /src/pmw_collect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/pmw_collect.c -------------------------------------------------------------------------------- /src/pmw_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/pmw_comm.c -------------------------------------------------------------------------------- /src/pmw_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/pmw_utils.c -------------------------------------------------------------------------------- /src/pmwatch-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/pmwatch-stop -------------------------------------------------------------------------------- /src/pmwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/intel-pmwatch/HEAD/src/pmwatch.c --------------------------------------------------------------------------------