Akka.Monitoring.StatsD.ActorStatsDMonitor.UpdateGauge C# (CSharp) Method

UpdateGauge() public method

public UpdateGauge ( string metricName, int value, double sampleRate ) : void
metricName string
value int
sampleRate double
return void
        public override void UpdateGauge(string metricName, int value, double sampleRate)
        {
            Metrics.GaugeAbsoluteValue(metricName, value);
        }