Can we get some description about the below 3 properties: maxFineAge, maxHourlyAge and maxDailyAge. Is there any articles which describes these properties in detail.
#com.l7tech.service.metrics.maxFineAge=3600000
#com.l7tech.service.metrics.maxHourlyAge=604800000
#com.l7tech.service.metrics.maxDailyAge=31536000000
Component: CA API Gateway
In the service_metrics table, there are 3 types of bins that are created – fine bins (5 second bins), hourly bins, and Daily bins. Each type of bin contains information about the number of requests that occurred for a specific service within an interval
Each bin has a default time interval (in milliseconds) for when they are generated
Each bin has a property that determines the max age (in milliseconds) they can be. The max age determines how long a bin record can exist in the service metrics table. Once the record is older than its max age, it will be deleted during the next clean up (this cleanup process will be discussed more in the Deletions section). The default values are:
#com.l7tech.service.metrics.maxFineAge=3600000 (1 hour)
#com.l7tech.service.metrics.maxHourlyAge=604800000 (1 week)
#com.l7tech.service.metrics.maxDailyAge=31536000000 (1 year)