Skip to content

Latest commit

 

History

History
37 lines (34 loc) · 3.06 KB

SystemDiagnosticsSnapshotDTO.md

File metadata and controls

37 lines (34 loc) · 3.06 KB

IO.Swagger.Model.SystemDiagnosticsSnapshotDTO

Properties

Name Type Description Notes
TotalNonHeap string Total size of non heap. [optional]
TotalNonHeapBytes long? Total number of bytes allocated to the JVM not used for heap [optional]
UsedNonHeap string Amount of use non heap. [optional]
UsedNonHeapBytes long? Total number of bytes used by the JVM not in the heap space [optional]
FreeNonHeap string Amount of free non heap. [optional]
FreeNonHeapBytes long? Total number of free non-heap bytes available to the JVM [optional]
MaxNonHeap string Maximum size of non heap. [optional]
MaxNonHeapBytes long? The maximum number of bytes that the JVM can use for non-heap purposes [optional]
NonHeapUtilization string Utilization of non heap. [optional]
TotalHeap string Total size of heap. [optional]
TotalHeapBytes long? The total number of bytes that are available for the JVM heap to use [optional]
UsedHeap string Amount of used heap. [optional]
UsedHeapBytes long? The number of bytes of JVM heap that are currently being used [optional]
FreeHeap string Amount of free heap. [optional]
FreeHeapBytes long? The number of bytes that are allocated to the JVM heap but not currently being used [optional]
MaxHeap string Maximum size of heap. [optional]
MaxHeapBytes long? The maximum number of bytes that can be used by the JVM [optional]
HeapUtilization string Utilization of heap. [optional]
AvailableProcessors int? Number of available processors if supported by the underlying system. [optional]
ProcessorLoadAverage double? The processor load average if supported by the underlying system. [optional]
TotalThreads int? Total number of threads. [optional]
DaemonThreads int? Number of daemon threads. [optional]
Uptime string The uptime of the Java virtual machine [optional]
FlowFileRepositoryStorageUsage StorageUsageDTO The flowfile repository storage usage. [optional]
ContentRepositoryStorageUsage List<StorageUsageDTO> The content repository storage usage. [optional]
ProvenanceRepositoryStorageUsage List<StorageUsageDTO> The provenance repository storage usage. [optional]
GarbageCollection List<GarbageCollectionDTO> The garbage collection details. [optional]
StatsLastRefreshed string When the diagnostics were generated. [optional]
VersionInfo VersionInfoDTO The nifi, os, java, and build version information [optional]

[Back to Model list] [Back to API list] [Back to README]