12345678910111213141516171819202122232425 |
- namespace metrics_collector
- {
- using System;
-
- class MetricsCollector
- {
- static void Main(string[] args)
- {
- string url = "amqp://localhost:61616";
- string address = "sampleQueue";
-
- Console.WriteLine("Receiving random metrics from " + url + "/" + address);
- while (true) {
-
-
- Console.WriteLine("Got: " + null);
-
- System.Threading.Thread.Sleep(1000);
- }
- }
- }
- }
|