/*
 * Metrics for jstat PMDA (Java Virtual Machine Statistics)
 *
 * Copyright (c) 2007-2008 Aconex.  All Rights Reserved.
 * 
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 * 
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

jstat {
    synchronizer
    control
    garbage
    memory
}

jstat.synchronizer {
    contended_lock_attempts	JSTAT:0:0
    deflations			JSTAT:0:1
    futile_wakeups		JSTAT:0:2
    inflations			JSTAT:0:3
    notifications		JSTAT:0:4
    parks			JSTAT:0:5
}

jstat.control {
    command			JSTAT:0:6
    refresh			JSTAT:0:7
}

jstat.garbage {
    minor
    major
}

jstat.garbage.minor {
    count			JSTAT:0:8
    time			JSTAT:0:9
}
  
jstat.garbage.major {
    count			JSTAT:0:10
    time			JSTAT:0:11
}

jstat.memory {
    eden
    survivor0
    survivor1
    old
    permanent
}

jstat.memory.eden {
    capacity			JSTAT:0:12
    init_capacity		JSTAT:0:13
    max_capacity		JSTAT:0:14
    used			JSTAT:0:15
}

jstat.memory.survivor0 {
    capacity			JSTAT:0:16
    init_capacity		JSTAT:0:17
    max_capacity		JSTAT:0:18
    used			JSTAT:0:19
}

jstat.memory.survivor1 {
    capacity			JSTAT:0:20
    init_capacity		JSTAT:0:21
    max_capacity		JSTAT:0:22
    used			JSTAT:0:23
}

jstat.memory.old {
    capacity			JSTAT:0:24
    init_capacity		JSTAT:0:25
    max_capacity		JSTAT:0:26
    used			JSTAT:0:27
}

jstat.memory.permanent {
    capacity			JSTAT:0:28
    init_capacity		JSTAT:0:29
    max_capacity		JSTAT:0:30
    used			JSTAT:0:31
}
