Package org.elasticsearch.monitor.jvm
Class JvmStats.GarbageCollector
- java.lang.Object
-
- org.elasticsearch.monitor.jvm.JvmStats.GarbageCollector
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Constructor Summary
Constructors Constructor Description GarbageCollector(java.lang.String name, long collectionCount, long collectionTime)
GarbageCollector(StreamInput in)
-
Method Summary
Modifier and Type Method Description long
getCollectionCount()
TimeValue
getCollectionTime()
java.lang.String
getName()
void
writeTo(StreamOutput out)
Write this into the StreamOutput.
-
-
-
Constructor Detail
-
GarbageCollector
public GarbageCollector(java.lang.String name, long collectionCount, long collectionTime)
-
GarbageCollector
public GarbageCollector(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Writeable
Write this into the StreamOutput.
-
getName
public java.lang.String getName()
-
getCollectionCount
public long getCollectionCount()
-
getCollectionTime
public TimeValue getCollectionTime()
-
-