コード例 #1
0
ファイル: DeviceProxy.cs プロジェクト: vvv37912/iotedge
            public static void AddSentMessage(IIdentity identity, IMessage message)
            {
                string from = message.GetSenderId();
                string to   = identity.Id;

                string fromRouteOutput = message.GetOutput();
                string toRouteInput    = message.GetInput();

                SentMessagesCounter.Increment(1, new[] { from, to, fromRouteOutput, toRouteInput });
            }
コード例 #2
0
ファイル: DeviceProxy.cs プロジェクト: nlcamp/iotedge
            public static void AddSentMessage(IIdentity identity, IMessage message)
            {
                string from = message.GetSenderId();
                string to   = identity.Id;

                string fromRouteOutput = message.GetOutput();
                string toRouteInput    = message.GetInput();
                string priority        = message.ProcessedPriority.ToString();

                SentMessagesCounter.Increment(1, new[] { from, to, fromRouteOutput, toRouteInput, priority, bool.TrueString });
            }