--- swagger: '2.0' info: version: 1.0.0 title: GeoWebCache Memory Cache Statistics description: A response contains memory cache statistics contact: name: GeoServer email: 'geoserver-users@osgeo.org' url: 'https://geoserver.org/comm/' host: localhost:8080 schemes: - http basePath: /geoserver/gwc/rest paths: /statistics: get: operationId: statisticsGet tags: - "GwcMemoryCacheStatistics" summary: Returns XML or JSON response with memory cache statistics description: When appended with .json or .xml will respond with memory caches statistics in the requested format if the blobstore used is an instance of MemoryBlobStore. produces: - application/html - application/json responses: 200: description: OK examples: application/xml: | 0 0 0 0 100.0 0.0 0.0 67108864 0 application/json: | { "org.geowebcache.storage.blobstore.memory.CacheStatistics": { "evictionCount": 0, "hitCount": 0, "totalSize": 16777216, "actualSize": 0, "missRate": 0, "totalCount": 0, "currentMemoryOccupation": 0, "hitRate": 100, "missCount": 0 } }