A library suite that allows applications to define what diagnostics data to collect, and where to output that data to.
Questions tagged [event-flow]
27 questions
0
votes
1 answer
Flex Event flows for built-in event and custom event
I hava a custom component and it contains a child icon. If I add a mouse-click event listener to both component(click-listener1) and icon(click-listener2), the event dispatched sequence is click-listener2, then click-listener1. I can understand it.…

Pansy Xue
- 25
- 6
0
votes
1 answer
Microsoft.Diagnostics.EventFlow with Inputs.EventSource
I am trying to use EventSource with Microsoft.Diagnostics.EventFlow and I cannot make it output to the console. Here is an example where it works with Inputs.Trace but does not work with Inputs.EventSource:
myEventFLowConfig.json:
{
"type":…

tridy
- 1,166
- 1
- 12
- 21
0
votes
0 answers
as3, Event Bubbling, and capture phase
Setting the bubbles property of an event to false means the event does not bubble up the display list at all.
My question is, will the event not go through the capture phase either, or is this not a condition?
0
votes
1 answer
Distinguish applications emitting events to AI using Microsoft.Diagnostics.EventFlow
I have two services running in Azure Service Fabric. Now, i want to capture some events from both and redirect them to the same instance of AI.
My eventFlowConfig.json looks like this:
{
"inputs": [
{
"type": "EventSource",
…

Dmytro Gokun
- 405
- 3
- 24
0
votes
2 answers
write log to Application insights from local service fabric
I am trying to integrate Azure App insights service into the service fabric app for logging and instrumentation. I am running fabric code on my local VM. I exactly followed the document here [scenario 2]. Other resources on learn.microsoft.com also…

teeboy
- 408
- 3
- 13
0
votes
1 answer
Service Fabric Performance Counters in Application Insights
I'm trying to send performance data (i.e. CPU and Memory Usage) from my service fabric nodes to Azure Application Insights. However they do not seem to be appearing in my application insights metrics explorer.
The performance counters are…

Brian Delaney
- 181
- 1
- 16
0
votes
1 answer
Event Flow Filters Not Correctly Filtering Using Event Source As Input And ApplicationInsights as Output. Any ideas?
I am using event flow to send telemetry data to application insights in a service fabric application. The events seem to be created correctly but I seem to be encountering problems with the eventFlow filtering. When I try to filter my events as a…

Brian Delaney
- 181
- 1
- 16
0
votes
1 answer
Changing tracelevel filter setting in EventFlow without calling constructor again?
Is there way change a filter on the fly? I'm considering using EventFlow with Service Fabric, but would like to have the ability to for example change the tracelevel without having to restart the service and feeding it a new json config file with a…

Hans Ravnaas
- 21
- 5
0
votes
1 answer
ServiceFabric. ApplicationInsights. EventFlow. Disabling log messages from TplEventSource
I am working on Service Fabric(5.5.216) project. Please bear in mind, that I am new to Azure development, so I might miss something really obvious. I am using VS 2015 Update 3. .Net Framework 4.6.2. I've been able to add Application Insights(2.2.0)…

fatherOfWine
- 1,191
- 16
- 39
0
votes
1 answer
What is a good example to listen to event both at the "link" (or div) and at the parent or ancestor element?
Most of the time I see code registering an event listener for a link or a div or button, and handle everything from there. But the event capturing and bubbling is good to handle events at the offspring and then at the ancestor level. But what is a…

nonopolarity
- 146,324
- 131
- 460
- 740
0
votes
1 answer
Why does a book say DOM event flow has both Capturing and Bubbling? Then won't the event occur twice?
The book Professional Javascript by Zakas says that
1) IE uses event bubbling
2) Netscape uses event capturing
3) DOM event flow is first capturing and then bubbling
So, won't the event handler be called twice? What is this DOM event flow, is it…

nonopolarity
- 146,324
- 131
- 460
- 740
0
votes
1 answer
UIControl subclass - how to stop touch event flow?
I am writing a board game app (like chess). The main view recognizes swipe gestures (UISwipeGestureRecognizer) started anywhere in its fullscreen view, which make the board rotating.
Now I added a square-shaped transparent subview exactly over the…

Voyteck
- 354
- 2
- 13