Contains the applications.

| Field | Type | Description |
| App.appId | long | Primary key. The id of the application. Auto incremented value. |
| App.appCode | String | The code of the application. |
| App.appName | String | The name of the application. |
Contains the users of the applications.

| Field | Type | Description |
| AppUser.userId | long | Primary key. The id of the user. Auto incremented value. |
| AppUser.userName | String | The login of the user. |
Contains the versions of the applications.

| Field | Type | Description |
| AppVersion.versionId | long | Primary key. The id of the version. Auto incremented value. |
| AppVersion.versionName | String | The name of the version. |
| AppVersion.appId | long | Foreign key on App.appId. |
Contains the client hosts.

| Field | Type | Description |
| ClientHost.clientHostId | long | Primary key. The id of the client host. Auto incremented value. |
| ClientHost.clientHostIP | String | The IP Address of the client host. |
Contains the types of timer delay.

| Field | Type | Description |
| DelayType.delayTypeId | long | Primary key. The id of the delay type. Auto incremented value. |
| DelayType.delayTypeCode | String | The code of the delay type. |
| DelayType.delayTypeValue | int | The corresponding integer value. |
Contains the environments.

| Field | Type | Description |
| Env.envId | long | Primary key. The id of the environment. Auto incremented value. |
| Env.envCode | String | The code of the environment. |
| Env.envName | String | The name of the environment. |
| Env.orgId | long | Foreign key on Org.orgId. |
Contains the associations between the environments and the hosts.

| Field | Type | Description |
| EnvHostAssoc.envId | long | Foreign key on Env.envId. |
| EnvHostAssoc.hostId | long | Foreign key on Host.hostId. |
Contains the features of the applications (URL, methods of classes, etc.).

| Field | Type | Description |
| Feature.featureId | long | Primary key. The id of the feature. Auto incremented value. |
| Feature.featureName | String | The name of the feature. |
| Feature.appId | long | Foreign key on App.appId. |
Contains commons informations for every hit on the application. One row per hit.

Contains the hit result (Success, Error).

| Field | Type | Description |
| HitResult.hitResultId | long | Primary key. The id of the hit result. Auto incremented value. |
| HitResult.hitResultCode | String | The code of the feature (Success, Error). |
| HitResult.hitResultValue | int | The corresponding integer value. |
Contains commons informations for every hit on the URL of the web application. One row per hit.

| Field | Type | Description |
| HitURL.hitId | long | Foreign key on Hit.hitId. |
| HitURL.inputHeaderSize | long | The size of the request headers. |
| HitURL.inputStreamSize | long | The size of the input stream that was read by the servlet. |
| HitURL.isNewSession | boolean | True if this session has just been created by this request. |
| HitURL.method | String | The HTTP method requested (GET, POST, ...). |
| HitURL.outputHeaderSize | long | The size of the response headers. |
| HitURL.outputStreamSize | long | The size of the stream send in the response. |
| HitURL.queryStringSize | int | The size of the query string. |
| HitURL.responseCode | int | The HTTP response code (200, 404, ...). |
| HitURL.sessionId | long | Foreign key on Session.sessionId. |
Contains the hosts.

| Field | Type | Description |
| Host.hostId | long | Primary key. The id of the host. Auto incremented value. |
| Host.hostName | String | The name of the host. |
| Host.hostAlias | String | The alias of the host. |
Contains the methods of classes.

| Field | Type | Description |
| Method.featureId | long | Foreign key on Feature.featureId. |
| Method.className | String | The name of the class. |
| Method.methodName | String | The name of the method. |
Contains the organizations.

| Field | Type | Description |
| Org.orgId | long | Primary key. The id of the organization. Auto incremented value. |
| Org.orgCode | String | The code of the organization. |
| Org.orgName | String | The name of the organization. |
Contains the sessions on the applications.

| Field | Type | Description |
| Session.sessionId | long | Primary key. The id of the session. Auto incremented value. |
| Session.sessionCode | String | The code of the session. |
| Session.clientHostId | long | Foreign key on ClientHost.clientHostId. |
| Session.envId | long | Foreign key on Env.envId. |
| Session.userId | long | Foreign key on AppUser.userId. |
| Session.versionId | long | Foreign key on AppVersion.versionId. |
Contains the URLs on the applications.

| Field | Type | Description |
| URL.featureId | long | Foreign key on Feature.featureId. |
| URL.webappId | long | Foreign key on Webapp.webappId. |
(Bad name for this table, should have been called FeatureParam) Contains the names of the parameters passed to the features.

| Field | Type | Description |
| URLParam.urlParamId | long | Primary key. The id of the parameter. Auto incremented value. |
| URLParam.urlParamName | String | The name of the parameter. |
(Bad name for this table, should have been called FeatureParVal) Contains the values of the parameters passed to the features.

| Field | Type | Description |
| URLParVal.urlParamValueId | long | Primary key. The id of the parameter value. Auto incremented value. |
| URLParVal.urlParamId | long | Foreign key on URLParam.urlParamId. |
| URLParVal.hitId | long | Foreign key on Hit.hitId. |
| URLParVal.urlParamValue | String | The value of the parameter. |
Contains the web applications.

| Field | Type | Description |
| Webapp.webappId | long | Primary key. The id of the parameter web application. Auto incremented value. |
| Webapp.appId | long | Foreign key on App.appId. |
| Webapp.webappName | String | The context path of the web application. |