()
| 16 | |
| 17 | |
| 18 | async def test_counter_async(): |
| 19 | for i in range(100): |
| 20 | await metrics.aemit_counter("total count", count=100, classify="test5") |
| 21 | for j in range(100): |
| 22 | await metrics.aemit_counter("key", count=1, classify="test5") |
| 23 | |
| 24 | |
| 25 | def test_counter(): |