Skip to content

Instantly share code, notes, and snippets.

@jpasichnyk
Created June 13, 2015 20:41
Show Gist options
  • Save jpasichnyk/e4bca663138cad192881 to your computer and use it in GitHub Desktop.
Save jpasichnyk/e4bca663138cad192881 to your computer and use it in GitHub Desktop.
repro for mono dns lookup crash
using System;
using StatsdClient;
namespace Tests
{
public class IPV4ParsingTests
{
public static void Main(String[] argv)
{
var metricsConfig = new MetricsConfig
{
StatsdServerName = "localhost"
};
StatsdClient.Metrics.Configure(metricsConfig);
Metrics.Gauge("test",1);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment