|
@@ -10,18 +10,21 @@ namespace OhmGraphite.Test
|
|
|
[Fact, Trait("Category", "integration")]
|
|
|
public async void InsertGraphiteTest()
|
|
|
{
|
|
|
- var writer = new GraphiteWriter("graphite", 2003, "my-pc", tags: false);
|
|
|
- await writer.ReportMetrics(DateTime.Now, TestSensorCreator.Values());
|
|
|
-
|
|
|
- // wait for carbon to sync to disk
|
|
|
- Thread.Sleep(TimeSpan.FromSeconds(4));
|
|
|
-
|
|
|
+ using (var writer = new GraphiteWriter("graphite", 2003, "my-pc", tags: false))
|
|
|
using (var client = new HttpClient())
|
|
|
{
|
|
|
- var resp = await client.GetAsync("http://graphite/render?format=csv&target=ohm.my-pc.intelcpu.0.temperature.cpucore.1");
|
|
|
- var content = await resp.Content.ReadAsStringAsync();
|
|
|
- Assert.Contains("ohm.my-pc.intelcpu.0.temperature.cpucore.1", content);
|
|
|
+ await writer.ReportMetrics(DateTime.Now, TestSensorCreator.Values());
|
|
|
+
|
|
|
+ // wait for carbon to sync to disk
|
|
|
+ Thread.Sleep(TimeSpan.FromSeconds(4));
|
|
|
+
|
|
|
+ {
|
|
|
+ var resp = await client.GetAsync("http://graphite/render?format=csv&target=ohm.my-pc.intelcpu.0.temperature.cpucore.1");
|
|
|
+ var content = await resp.Content.ReadAsStringAsync();
|
|
|
+ Assert.Contains("ohm.my-pc.intelcpu.0.temperature.cpucore.1", content);
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
[Fact, Trait("Category", "integration")]
|
|
@@ -30,19 +33,22 @@ namespace OhmGraphite.Test
|
|
|
// Let the tag engine time to breathe
|
|
|
Thread.Sleep(TimeSpan.FromSeconds(2));
|
|
|
|
|
|
- var writer = new GraphiteWriter("graphite", 2003, "my-pc", tags: true);
|
|
|
- await writer.ReportMetrics(DateTime.Now, TestSensorCreator.Values());
|
|
|
-
|
|
|
- // wait for carbon to sync to disk
|
|
|
- Thread.Sleep(TimeSpan.FromSeconds(4));
|
|
|
-
|
|
|
+ using (var writer = new GraphiteWriter("graphite", 2003, "my-pc", tags: true))
|
|
|
using (var client = new HttpClient())
|
|
|
+
|
|
|
{
|
|
|
- var resp = await client.GetAsync("http://graphite/render?format=csv&target=seriesByTag('sensor_type=Temperature','hardware_type=CPU')");
|
|
|
- var content = await resp.Content.ReadAsStringAsync();
|
|
|
- Assert.Contains("host=my-pc", content);
|
|
|
- Assert.Contains("app=ohm", content);
|
|
|
- Assert.Contains("sensor_type=Temperature", content);
|
|
|
+ await writer.ReportMetrics(DateTime.Now, TestSensorCreator.Values());
|
|
|
+
|
|
|
+ // wait for carbon to sync to disk
|
|
|
+ Thread.Sleep(TimeSpan.FromSeconds(4));
|
|
|
+
|
|
|
+ {
|
|
|
+ var resp = await client.GetAsync("http://graphite/render?format=csv&target=seriesByTag('sensor_type=Temperature','hardware_type=CPU')");
|
|
|
+ var content = await resp.Content.ReadAsStringAsync();
|
|
|
+ Assert.Contains("host=my-pc", content);
|
|
|
+ Assert.Contains("app=ohm", content);
|
|
|
+ Assert.Contains("sensor_type=Temperature", content);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|