This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"queries": [ | |
{ | |
"objectName": "cocktail:type=CocktailManager,name=CocktailManager", | |
"resultAlias": "cocktail", | |
"attributes": [ | |
"AddedCommentCount", | |
"CreatedCocktailCount", | |
"DisplayedCocktailCount", | |
"SearchedCocktailCount", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:jmxtrans="http://www.jmxtrans.org/schema/embedded" | |
xsi:schemaLocation="... | |
http://www.jmxtrans.org/schema/embedded http://www.jmxtrans.org/schema/embedded/jmxtrans-1.0.xsd"> | |
<context:annotation-config/> | |
<jmxtrans:jmxtrans> | |
<jmxtrans:configuration>classpath:jmxtrans.json</jmxtrans:configuration> | |
<jmxtrans:configuration>classpath:org/jmxtrans/embedded/config/tomcat-6.json</jmxtrans:configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bees app:info cyrille-leclerc/gf3-test-128mb | |
WARNING: Cannot set BOOTSTRAP_VERSION | |
Application : cyrille-leclerc/gf3-test-128mb | |
Title : cyrille-leclerc/gf3-test-128mb | |
Created : Fri May 17 23:35:47 CEST 2013 | |
Status : active | |
URL : gf3-test-128mb.cyrille-leclerc.cloudbees.net | |
clusterSize : 1 | |
container : java_free | |
containerType : glassfish3-v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$top -pid <<glassfish3-clickstack>> | |
# | |
# | |
# | |
Load Avg: 2.53, 1.99, 1.82 CPU usage: 3.82% user, 3.15% sys, 93.1% idle | |
SharedLibs: 11M resident, 5696K data, 0B linkedit. | |
MemRegions: 67883 total, 4012M resident, 66M private, 1430M shared. | |
PhysMem: 1880M wired, 3137M active, 3126M inactive, 8144M used, 41M free. | |
VM: 364G vsize, 1052M framework vsize, 15536534(14) pageins, 711557(0) pageouts. | |
Networks: packets: 3528976/1918M in, 1565539/244M out. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<maven2-moduleset plugin="[email protected]"> | |
<actions/> | |
<description></description> | |
<logRotator class="hudson.tasks.LogRotator"> | |
<daysToKeep>60</daysToKeep> | |
<numToKeep>-1</numToKeep> | |
<artifactDaysToKeep>-1</artifactDaysToKeep> | |
<artifactNumToKeep>20</artifactNumToKeep> | |
</logRotator> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ bees app:instance:list gf3-debug-1713 | |
Instance ID : cyrille-leclerc/9ba06407-cfc37263 | |
#proxyConfig : {"use_ssl":false,"disable_proxy_buffering":"true"} | |
#revproxy : stax.revproxy | |
#server ID : admin/stax.genapp.5412f454 | |
#serverIP : 10.190.201.20 | |
application ID : cyrille-leclerc/gf3-debug-1713 | |
deployed : 2013-08-08T15:14:40+00:00 | |
host : ec2-23-20-174-143.compute-1.amazonaws.com | |
nodeName : i-21e4b84e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bees app:instance:invoke -i cyrille-leclerc/4b9ba562-cbf3ba08 --script jmx_invoker --args="-on *:* -l" | |
Exit code: 1 | |
INVALID INVOCATION: Option "-on (--object-name)" is required | |
Arguments: --pid-file /var/genapp/apps/4b9ba562/.genapp/app_pid | |
Usage: | |
--pid-file PID_FILE : PID FILE of the JVM to attach to. | |
--pid or --pid-file required | |
-attr (--attribute) ATTRIBUTE_NAME : attribute to read or to update. If a | |
[VAL] : VAL is passed, then it is a write | |
action, otherwise, it is a read action |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def summarize(t) { | |
def minutes = 0; | |
def now = System.currentTimeMillis(); | |
def month = 30L*24*60*60*1000; | |
t.items.each { job -> | |
if (job instanceof Job) { | |
def b = job.lastBuild; | |
while (b!=null && (now-b.timeInMillis<month)) { | |
minutes += b.duration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def qaCatalinaBase = '/opt/apache-tomcat-8-qa' | |
def qaHttpPort = 8081 | |
def stagingCatalinaBase = '/opt/apache-tomcat-8-staging' | |
def stagingHttpPort = 8082 | |
def perfsCatalinaBase = '/opt/apache-tomcat-8-perfs' | |
def perfsHttpPort = 8084 | |
def productionCatalinaBase = '/opt/apache-tomcat-8-production' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def qaCatalinaBase = '/opt/apache-tomcat-8-qa' | |
def qaHttpPort = 8081 | |
def stagingCatalinaBase = '/opt/apache-tomcat-8-staging' | |
def stagingHttpPort = 8082 | |
def perfsCatalinaBase = '/opt/apache-tomcat-8-perfs' | |
def perfsHttpPort = 8084 | |
def productionCatalinaBase = '/opt/apache-tomcat-8-production' |
OlderNewer