Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 24 25 package org.objectweb.cjdbc.common.monitor; 26 27 35 public final class DataCollection 36 { 37 38 public static final int BACKEND_ACTIVE_TRANSACTION = 10; 39 40 public static final int BACKEND_PENDING_REQUESTS = 11; 41 42 public static final int BACKEND_TOTAL_ACTIVE_CONNECTIONS = 12; 43 44 public static final int BACKEND_TOTAL_REQUEST = 13; 45 46 public static final int BACKEND_TOTAL_READ_REQUEST = 14; 47 48 public static final int BACKEND_TOTAL_WRITE_REQUEST = 15; 49 50 public static final int BACKEND_TOTAL_TRANSACTIONS = 16; 51 52 53 public static final int CACHE_STATS_COUNT_SELECT = 20; 54 55 public static final int CACHE_STATS_COUNT_HITS = 21; 56 57 public static final int CACHE_STATS_COUNT_INSERT = 22; 58 59 public static final int CACHE_STATS_HITS_PERCENTAGE = 23; 60 61 public static final int CACHE_STATS_NUMBER_ENTRIES = 24; 62 63 64 public static final int CLIENT_TIME_ACTIVE = 32; 65 66 67 public static final int CONTROLLER_TOTAL_MEMORY = 40; 68 69 public static final int CONTROLLER_USED_MEMORY = 41; 70 71 public static final int CONTROLLER_THREADS_NUMBER = 42; 72 73 public static final int CONTROLLER_WORKER_PENDING_QUEUE = 43; 74 75 public static final int CONTROLLER_IDLE_WORKER_THREADS = 44; 76 77 78 public static final int DATABASES_ACTIVE_THREADS = 50; 79 80 public static final int DATABASES_PENDING_CONNECTIONS = 51; 81 82 public static final int DATABASES_NUMBER_OF_THREADS = 52; 83 84 85 public static final int SCHEDULER_NUMBER_READ = 60; 86 87 public static final int SCHEDULER_NUMBER_WRITES = 61; 88 89 public static final int SCHEDULER_PENDING_TRANSACTIONS = 62; 90 91 public static final int SCHEDULER_PENDING_WRITES = 63; 92 93 public static final int SCHEDULER_NUMBER_REQUESTS = 64; 94 } 95
| Popular Tags
|