예제 #1
0
        public async Task <string> Get()
        {
            await stats.CountAsync("get");                                   // Aggregated metrics

            await stats.CountAsync($"{System.Environment.MachineName}.get"); // Contaner metric

            return($"[FROM: {System.Environment.MachineName}]: Hello world!");
        }