Interface LLServerMetricsMXBean

All Known Implementing Classes:
LLServerMetricsBean

@MXBean public interface LLServerMetricsMXBean
Server metrics.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addDeletes(long count)
    Increment the number of deletes performed.
    void
    addReads(long count)
    Increment the number of reads performed.
    void
    addWrites(long count)
    Increment the number of writes performed.
    long
     
    long
     
    long
     
  • Method Details

    • getWrites

      long getWrites()
      Returns:
      The number of writes that have been performed.
    • getReads

      long getReads()
      Returns:
      The number of reads that have been performed.
    • getDeletes

      long getDeletes()
      Returns:
      The number of deletes that have been performed.
    • addWrites

      void addWrites(long count)
      Increment the number of writes performed.
      Parameters:
      count - The count to add
    • addReads

      void addReads(long count)
      Increment the number of reads performed.
      Parameters:
      count - The count to add
    • addDeletes

      void addDeletes(long count)
      Increment the number of deletes performed.
      Parameters:
      count - The count to add