问题描述
我在Pi2上运行了一个项目,我想将统计信息提交给statsd服务器。我尝试通过NuGet安装的所有客户端都不兼容。他们给出了"StatsdClient 1.1.26与UAP不兼容,Version = v10.0"。错误。
I have a project running on the Pi2 which I want to submit stats to a statsd server. All the clients I tried installing via NuGet were not compatible. They gave a "StatsdClient 1.1.26 is not compatible with UAP,Version=v10.0." error.
有人能指出我对UAP兼容的statsd客户端吗?
Can anyone point me towards a UAP compatable statsd client?
谢谢!
推荐答案
参见
你可能想看看
https://github.com/ Microsoft / Windows-universal-samples / tree / master / Samples / StreamSocket
You might like to look at https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/StreamSocket
这是一种UWP的套接字方式。
which is a UWP way of doing sockets.
使用 Windows.Networking.Sockets ;
using Windows.Networking.Sockets;
来自其他地方。
这篇关于统计客户?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!