]> source.dussan.org Git - sonarqube.git/blob
59fccd64b463da1a6904a99f103d7e7454e40fac
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2022 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.platform.monitoring;
21
22 public interface DbConnectionSectionMBean {
23
24   /**
25    * Is database schema up-to-date or should it be upgraded ?
26    */
27   String getMigrationStatus();
28
29   /**
30    *
31    */
32   int getPoolActiveConnections();
33
34   /**
35    * The maximum number of active connections that can be allocated from this pool at the same time, or negative for no limit.
36    */
37   int getPoolMaxActiveConnections();
38
39   int getPoolIdleConnections();
40
41   /**
42    * The maximum number of connections that can remain idle in the pool, without extra ones being released, or negative for no limit.
43    */
44   int getPoolMaxIdleConnections();
45
46   /**
47    * The minimum number of connections that can remain idle in the pool, without extra ones being created, or zero to create none.
48    */
49   int getPoolMinIdleConnections();
50
51   /**
52    * The initial number of connections that are created when the pool is started.
53    */
54   int getPoolInitialSize();
55
56   /**
57    * The maximum number of milliseconds that the pool will wait
58    * (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely.
59    */
60   long getPoolMaxWaitMillis();
61
62   /**
63    * Flag to remove abandoned connections if they exceed the {@link #getPoolRemoveAbandonedTimeoutSeconds()}.
64    */
65   boolean getPoolRemoveAbandoned();
66
67   /**
68    * Timeout in seconds before an abandoned connection can be removed.
69    */
70   int getPoolRemoveAbandonedTimeoutSeconds();
71 }