public async Task AddStat(MetricDto input)
 {
     var mapped = input.MapTo <MetricElement>();
     await _metricElementRepository.InsertAndGetIdAsync(mapped);
 }