001/* 002 * Copyright 2013 Anyware Services 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017package org.ametys.web.cache.monitoring; 018 019/** 020 * Constants for cache monitoring 021 */ 022public interface Constants 023{ 024 /** The id of the configuration parameter corresponding to the pool to access monitoring datasource */ 025 public static final String MONITORING_DATASOURCE_POOL_CONFIG_PARAM = "cache.monitoring.datasource.jdbc.pool"; 026 027 /** The name of the table for page resource access */ 028 public static final String SQL_TABLE_NAME_PAGE_ACCESS = "Cache_RA_Back"; 029 /** The name of the table for page elements resource access */ 030 public static final String SQL_TABLE_NAME_PAGE_ELEMENTS_ACCESS = "Cache_RA_Back_Page_Element"; 031 /** The name of the table for front resource access */ 032 public static final String SQL_TABLE_NAME_FRONT_ACCESS = "Cache_RA_Front"; 033 /** The name of the table for httpserver resource access */ 034 public static final String SQL_TABLE_NAME_HTTPSERVER_ACCESS = "Cache_RA_HTTPServer"; 035 036 /** The name of the table for back statictics */ 037 public static final String SQL_TABLE_NAME_PAGE_STATISTICS = "Cache_Stats_Back"; 038 /** The name of the table for back statictics for page elements*/ 039 public static final String SQL_TABLE_NAME_PAGE_ELEMENTS_STATISTICS = "Cache_Stats_Back_Page_Element"; 040 /** The name of the table for front statictics */ 041 public static final String SQL_TABLE_NAME_HTTPSERVER_AND_FRONT_STATISTICS = "Cache_Stats_Front"; 042 043 /** The request attribute to transmit the page access object */ 044 public static final String REQUEST_ATTRIBUTE_PAGEACCESS = "MONITORING_PAGE_ACCESS"; 045}