ng-jhipster
Version:
A Jhipster util library for Angular
20 lines (19 loc) • 556 B
TypeScript
import { OnInit } from '@angular/core';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
export declare class JhiJvmThreadsComponent implements OnInit {
private modalService;
threadStats: {
threadDumpAll: number;
threadDumpRunnable: number;
threadDumpTimedWaiting: number;
threadDumpWaiting: number;
threadDumpBlocked: number;
};
/**
* object containing thread related metrics
*/
threadData: any;
constructor(modalService: NgbModal);
ngOnInit(): void;
open(): void;
}