├── .gitignore ├── .travis.yml ├── README.md ├── pom.xml └── src ├── main └── java │ └── com │ └── googlecode │ └── objectify │ └── insight │ ├── Bucket.java │ ├── BucketFactory.java │ ├── BucketKey.java │ ├── BucketList.java │ ├── Clock.java │ ├── Codepointer.java │ ├── Collect.java │ ├── Collector.java │ ├── Flusher.java │ ├── InsightAsyncDatastoreService.java │ ├── InsightFilter.java │ ├── InsightIterable.java │ ├── InsightIterator.java │ ├── InsightList.java │ ├── InsightPreparedQuery.java │ ├── InsightQueryResultIterable.java │ ├── Operation.java │ ├── Recorder.java │ ├── puller │ ├── BigUploader.java │ ├── BucketAggregator.java │ ├── InsightDataset.java │ ├── Puller.java │ └── TablePicker.java │ ├── servlet │ ├── AbstractBigQueryServlet.java │ ├── AbstractPullerServlet.java │ ├── AbstractTableMakerServlet.java │ ├── GuicePullerServlet.java │ └── GuiceTableMakerServlet.java │ └── util │ ├── QueueHelper.java │ ├── ReflectionUtils.java │ ├── StackTraceUtils.java │ └── TaskHandleHelper.java └── test └── java └── com └── googlecode └── objectify └── insight ├── CodepointerTest.java ├── puller ├── TablePickerTest.java └── test │ └── PullerTest.java ├── test ├── FlusherTest.java ├── InsightAsyncDatastoreServiceTest.java ├── InsightCollectorTest.java ├── InsightCollectorTimeTest.java ├── InsightPreparedQueryTest.java ├── RecorderTest.java └── util │ ├── BucketsMatcher.java │ ├── FakeQueryResultList.java │ ├── PassThroughProxy.java │ └── TestBase.java └── util └── test └── StackTraceUtilsTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/Bucket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/Bucket.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/BucketFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/BucketFactory.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/BucketKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/BucketKey.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/BucketList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/BucketList.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/Clock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/Clock.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/Codepointer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/Codepointer.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/Collect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/Collect.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/Collector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/Collector.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/Flusher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/Flusher.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/InsightAsyncDatastoreService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/InsightAsyncDatastoreService.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/InsightFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/InsightFilter.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/InsightIterable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/InsightIterable.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/InsightIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/InsightIterator.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/InsightList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/InsightList.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/InsightPreparedQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/InsightPreparedQuery.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/InsightQueryResultIterable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/InsightQueryResultIterable.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/Operation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/Operation.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/Recorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/Recorder.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/puller/BigUploader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/puller/BigUploader.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/puller/BucketAggregator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/puller/BucketAggregator.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/puller/InsightDataset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/puller/InsightDataset.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/puller/Puller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/puller/Puller.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/puller/TablePicker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/puller/TablePicker.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/servlet/AbstractBigQueryServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/servlet/AbstractBigQueryServlet.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/servlet/AbstractPullerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/servlet/AbstractPullerServlet.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/servlet/AbstractTableMakerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/servlet/AbstractTableMakerServlet.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/servlet/GuicePullerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/servlet/GuicePullerServlet.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/servlet/GuiceTableMakerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/servlet/GuiceTableMakerServlet.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/util/QueueHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/util/QueueHelper.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/util/ReflectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/util/ReflectionUtils.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/util/StackTraceUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/util/StackTraceUtils.java -------------------------------------------------------------------------------- /src/main/java/com/googlecode/objectify/insight/util/TaskHandleHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/main/java/com/googlecode/objectify/insight/util/TaskHandleHelper.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/CodepointerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/CodepointerTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/puller/TablePickerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/puller/TablePickerTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/puller/test/PullerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/puller/test/PullerTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/FlusherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/FlusherTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/InsightAsyncDatastoreServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/InsightAsyncDatastoreServiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/InsightCollectorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/InsightCollectorTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/InsightCollectorTimeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/InsightCollectorTimeTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/InsightPreparedQueryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/InsightPreparedQueryTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/RecorderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/RecorderTest.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/util/BucketsMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/util/BucketsMatcher.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/util/FakeQueryResultList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/util/FakeQueryResultList.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/util/PassThroughProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/util/PassThroughProxy.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/test/util/TestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/test/util/TestBase.java -------------------------------------------------------------------------------- /src/test/java/com/googlecode/objectify/insight/util/test/StackTraceUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objectify/objectify-insight/HEAD/src/test/java/com/googlecode/objectify/insight/util/test/StackTraceUtilsTest.java --------------------------------------------------------------------------------