UNPKG

556 BTypeScriptView Raw
1import { OnInit } from '@angular/core';
2import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
3export declare class JhiJvmThreadsComponent implements OnInit {
4 private modalService;
5 threadStats: {
6 threadDumpAll: number;
7 threadDumpRunnable: number;
8 threadDumpTimedWaiting: number;
9 threadDumpWaiting: number;
10 threadDumpBlocked: number;
11 };
12 /**
13 * object containing thread related metrics
14 */
15 threadData: any;
16 constructor(modalService: NgbModal);
17 ngOnInit(): void;
18 open(): void;
19}