Dan Vanderboom

Results 11 comments of Dan Vanderboom

Sounds like a great new feature idea. Contributions are welcome! When I used this control, I used some kind of manual setting or signaling of which node was set, and...

Ray, thanks for sharing your idea. Unfortunately, I'm no longer updating this repo. I will take contributions and accept pull requests if you care to implement this yourself.

A tree structure can only have one root, but it's possible one could write a modification that would let you pick at what level of the tree to start rendering...

I'd like to be able to monitor custom metrics defined and reported by Orleans systems. While activations per silo or grain type are a good high-level gut check that the...

I consider some factors of the reliability of metrics caching in https://github.com/danvanderboom/Orleans.TelemetryConsumers.MetricsTracker/issues/4 including an idea for recovering silo metric data on restart, so long as the cluster itself is up...

Metrics APIs: TrackMetric, IncrementMetric, and DecrementMetric make a good pattern. These are good for tracking double values. I'd love to see these added: - TrackCounter, IncrementCounter, DecrementCounter - for long...

@veikkoeeva I don't actually have any business-value KPI needs that I'm planning to address with my recent work on metrics tracking. Those scenarios might be better tracked within logic in...

We'll need to be careful about persisting any metrics to disk. If we're persisting every metric update, every counter increment, it will be difficult not to slow the system down....

@galvesribeiro Agreed. I'm doing that myself, having implemented a second telemetry consumer to route logging calls to a logging service and database.

With talk of building an OrleansHostManager which could host multiple Orleans silos on a single machine (and manage rollouts/rollbacks, health monitoring), we're probably talking another level of aggregation for statistics/metrics....