All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.marschall.micrometer.jfr.JfrGaugeEvent Maven / Gradle / Ivy

The newest version!
package com.github.marschall.micrometer.jfr;

import io.micrometer.core.instrument.Meter.Id;
import jdk.jfr.Event;

final class JfrGaugeEvent extends AbstractJfrMeterEvent implements DoubleValueEvent {

  JfrGaugeEvent(Id id, Event event) {
    super(id, event);
  }

  @Override
  public void setValue(double value) {
    int attributeIndex = 0;

    attributeIndex = this.setCommonEventAttributes(attributeIndex);
    event.set(attributeIndex++, value);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy