Java Code Examples for com.sun.jmx.snmp.SnmpCounter64
The following examples show how to use
com.sun.jmx.snmp.SnmpCounter64.
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source Project: jdk8u_jdk Author: JetBrains File: JvmCompilationMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpInt(node.getJvmJITCompilerTimeMonitoring()); case 2: return new SnmpCounter64(node.getJvmJITCompilerTimeMs()); case 1: return new SnmpString(node.getJvmJITCompilerName()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #2
Source Project: dragonwell8_jdk Author: alibaba File: JvmCompilationMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpInt(node.getJvmJITCompilerTimeMonitoring()); case 2: return new SnmpCounter64(node.getJvmJITCompilerTimeMs()); case 1: return new SnmpString(node.getJvmJITCompilerName()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #3
Source Project: TencentKona-8 Author: Tencent File: JvmClassLoadingMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 4: return new SnmpInt(node.getJvmClassesVerboseLevel()); case 3: return new SnmpCounter64(node.getJvmClassesUnloadedCount()); case 2: return new SnmpCounter64(node.getJvmClassesTotalLoadedCount()); case 1: return new SnmpGauge(node.getJvmClassesLoadedCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #4
Source Project: jdk8u60 Author: chenghanpeng File: JvmCompilationMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpInt(node.getJvmJITCompilerTimeMonitoring()); case 2: return new SnmpCounter64(node.getJvmJITCompilerTimeMs()); case 1: return new SnmpString(node.getJvmJITCompilerName()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #5
Source Project: jdk8u_jdk Author: JetBrains File: JvmClassLoadingMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 4: return new SnmpInt(node.getJvmClassesVerboseLevel()); case 3: return new SnmpCounter64(node.getJvmClassesUnloadedCount()); case 2: return new SnmpCounter64(node.getJvmClassesTotalLoadedCount()); case 1: return new SnmpGauge(node.getJvmClassesLoadedCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #6
Source Project: openjdk-jdk8u Author: AdoptOpenJDK File: JvmClassLoadingMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 4: return new SnmpInt(node.getJvmClassesVerboseLevel()); case 3: return new SnmpCounter64(node.getJvmClassesUnloadedCount()); case 2: return new SnmpCounter64(node.getJvmClassesTotalLoadedCount()); case 1: return new SnmpGauge(node.getJvmClassesLoadedCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #7
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: JvmCompilationMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpInt(node.getJvmJITCompilerTimeMonitoring()); case 2: return new SnmpCounter64(node.getJvmJITCompilerTimeMs()); case 1: return new SnmpString(node.getJvmJITCompilerName()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #8
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: JvmClassLoadingMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 4: return new SnmpInt(node.getJvmClassesVerboseLevel()); case 3: return new SnmpCounter64(node.getJvmClassesUnloadedCount()); case 2: return new SnmpCounter64(node.getJvmClassesTotalLoadedCount()); case 1: return new SnmpGauge(node.getJvmClassesLoadedCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #9
Source Project: jdk8u-jdk Author: lambdalab-mirror File: JvmCompilationMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpInt(node.getJvmJITCompilerTimeMonitoring()); case 2: return new SnmpCounter64(node.getJvmJITCompilerTimeMs()); case 1: return new SnmpString(node.getJvmJITCompilerName()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #10
Source Project: jdk8u-jdk Author: lambdalab-mirror File: JvmClassLoadingMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 4: return new SnmpInt(node.getJvmClassesVerboseLevel()); case 3: return new SnmpCounter64(node.getJvmClassesUnloadedCount()); case 2: return new SnmpCounter64(node.getJvmClassesTotalLoadedCount()); case 1: return new SnmpGauge(node.getJvmClassesLoadedCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #11
Source Project: hottub Author: dsrg-uoft File: JvmCompilationMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpInt(node.getJvmJITCompilerTimeMonitoring()); case 2: return new SnmpCounter64(node.getJvmJITCompilerTimeMs()); case 1: return new SnmpString(node.getJvmJITCompilerName()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #12
Source Project: hottub Author: dsrg-uoft File: JvmClassLoadingMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 4: return new SnmpInt(node.getJvmClassesVerboseLevel()); case 3: return new SnmpCounter64(node.getJvmClassesUnloadedCount()); case 2: return new SnmpCounter64(node.getJvmClassesTotalLoadedCount()); case 1: return new SnmpGauge(node.getJvmClassesLoadedCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #13
Source Project: openjdk-8-source Author: keerath File: JvmCompilationMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpInt(node.getJvmJITCompilerTimeMonitoring()); case 2: return new SnmpCounter64(node.getJvmJITCompilerTimeMs()); case 1: return new SnmpString(node.getJvmJITCompilerName()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #14
Source Project: openjdk-8-source Author: keerath File: JvmClassLoadingMeta.java License: GNU General Public License v2.0 | 6 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 4: return new SnmpInt(node.getJvmClassesVerboseLevel()); case 3: return new SnmpCounter64(node.getJvmClassesUnloadedCount()); case 2: return new SnmpCounter64(node.getJvmClassesTotalLoadedCount()); case 1: return new SnmpGauge(node.getJvmClassesLoadedCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #15
Source Project: dragonwell8_jdk Author: alibaba File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #16
Source Project: TencentKona-8 Author: Tencent File: JvmThreadingMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 6: return new SnmpInt(node.getJvmThreadCpuTimeMonitoring()); case 5: return new SnmpInt(node.getJvmThreadContentionMonitoring()); case 4: return new SnmpCounter64(node.getJvmThreadTotalStartedCount()); case 3: return new SnmpCounter(node.getJvmThreadPeakCount()); case 2: return new SnmpGauge(node.getJvmThreadDaemonCount()); case 1: return new SnmpGauge(node.getJvmThreadCount()); case 10: { throw new SnmpStatusException(SnmpStatusException.noSuchInstance); } case 7: return new SnmpCounter64(node.getJvmThreadPeakCountReset()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #17
Source Project: TencentKona-8 Author: Tencent File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #18
Source Project: jdk8u60 Author: chenghanpeng File: JvmThreadingMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 6: return new SnmpInt(node.getJvmThreadCpuTimeMonitoring()); case 5: return new SnmpInt(node.getJvmThreadContentionMonitoring()); case 4: return new SnmpCounter64(node.getJvmThreadTotalStartedCount()); case 3: return new SnmpCounter(node.getJvmThreadPeakCount()); case 2: return new SnmpGauge(node.getJvmThreadDaemonCount()); case 1: return new SnmpGauge(node.getJvmThreadCount()); case 10: { throw new SnmpStatusException(SnmpStatusException.noSuchInstance); } case 7: return new SnmpCounter64(node.getJvmThreadPeakCountReset()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #19
Source Project: jdk8u60 Author: chenghanpeng File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #20
Source Project: openjdk-jdk8u Author: AdoptOpenJDK File: JvmThreadingMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 6: return new SnmpInt(node.getJvmThreadCpuTimeMonitoring()); case 5: return new SnmpInt(node.getJvmThreadContentionMonitoring()); case 4: return new SnmpCounter64(node.getJvmThreadTotalStartedCount()); case 3: return new SnmpCounter(node.getJvmThreadPeakCount()); case 2: return new SnmpGauge(node.getJvmThreadDaemonCount()); case 1: return new SnmpGauge(node.getJvmThreadCount()); case 10: { throw new SnmpStatusException(SnmpStatusException.noSuchInstance); } case 7: return new SnmpCounter64(node.getJvmThreadPeakCountReset()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #21
Source Project: openjdk-jdk8u Author: AdoptOpenJDK File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #22
Source Project: openjdk-8 Author: bpupadhyaya File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #23
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: JvmThreadingMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 6: return new SnmpInt(node.getJvmThreadCpuTimeMonitoring()); case 5: return new SnmpInt(node.getJvmThreadContentionMonitoring()); case 4: return new SnmpCounter64(node.getJvmThreadTotalStartedCount()); case 3: return new SnmpCounter(node.getJvmThreadPeakCount()); case 2: return new SnmpGauge(node.getJvmThreadDaemonCount()); case 1: return new SnmpGauge(node.getJvmThreadCount()); case 10: { throw new SnmpStatusException(SnmpStatusException.noSuchInstance); } case 7: return new SnmpCounter64(node.getJvmThreadPeakCountReset()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #24
Source Project: jdk8u_jdk Author: JetBrains File: JvmThreadingMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 6: return new SnmpInt(node.getJvmThreadCpuTimeMonitoring()); case 5: return new SnmpInt(node.getJvmThreadContentionMonitoring()); case 4: return new SnmpCounter64(node.getJvmThreadTotalStartedCount()); case 3: return new SnmpCounter(node.getJvmThreadPeakCount()); case 2: return new SnmpGauge(node.getJvmThreadDaemonCount()); case 1: return new SnmpGauge(node.getJvmThreadCount()); case 10: { throw new SnmpStatusException(SnmpStatusException.noSuchInstance); } case 7: return new SnmpCounter64(node.getJvmThreadPeakCountReset()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #25
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #26
Source Project: jdk8u-jdk Author: lambdalab-mirror File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #27
Source Project: hottub Author: dsrg-uoft File: JvmThreadingMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 6: return new SnmpInt(node.getJvmThreadCpuTimeMonitoring()); case 5: return new SnmpInt(node.getJvmThreadContentionMonitoring()); case 4: return new SnmpCounter64(node.getJvmThreadTotalStartedCount()); case 3: return new SnmpCounter(node.getJvmThreadPeakCount()); case 2: return new SnmpGauge(node.getJvmThreadDaemonCount()); case 1: return new SnmpGauge(node.getJvmThreadCount()); case 10: { throw new SnmpStatusException(SnmpStatusException.noSuchInstance); } case 7: return new SnmpCounter64(node.getJvmThreadPeakCountReset()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #28
Source Project: hottub Author: dsrg-uoft File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #29
Source Project: openjdk-8-source Author: keerath File: JvmThreadingMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 6: return new SnmpInt(node.getJvmThreadCpuTimeMonitoring()); case 5: return new SnmpInt(node.getJvmThreadContentionMonitoring()); case 4: return new SnmpCounter64(node.getJvmThreadTotalStartedCount()); case 3: return new SnmpCounter(node.getJvmThreadPeakCount()); case 2: return new SnmpGauge(node.getJvmThreadDaemonCount()); case 1: return new SnmpGauge(node.getJvmThreadCount()); case 10: { throw new SnmpStatusException(SnmpStatusException.noSuchInstance); } case 7: return new SnmpCounter64(node.getJvmThreadPeakCountReset()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }
Example #30
Source Project: openjdk-8-source Author: keerath File: JvmMemGCEntryMeta.java License: GNU General Public License v2.0 | 5 votes |
/** * Get the value of a scalar variable */ public SnmpValue get(long var, Object data) throws SnmpStatusException { switch((int)var) { case 3: return new SnmpCounter64(node.getJvmMemGCTimeMs()); case 2: return new SnmpCounter64(node.getJvmMemGCCount()); default: break; } throw new SnmpStatusException(SnmpStatusException.noSuchObject); }