コード例 #1
0
        public List <DateTime> GetDates(string machineName, DateTime startDate, DateTime endDate)
        {
            var action = new GetMetricsAction(dbContext);

            return(action.GetDates(machineName, startDate, endDate));
        }
コード例 #2
0
        public List <float> GetPhysicalDisk(string machineName)
        {
            var action = new GetMetricsAction(dbContext);

            return(action.GetPhysicalDisk(machineName));
        }
コード例 #3
0
        public List <float> GetPhysicalDisk(string machineName, DateTime startDate, DateTime endDate)
        {
            var action = new GetMetricsAction(dbContext);

            return(action.GetPhysicalDisk(machineName, startDate, endDate));
        }
コード例 #4
0
        public List <float> GetProcessor(string machineName)
        {
            var action = new GetMetricsAction(dbContext);

            return(action.GetProcessor(machineName));
        }