Something like statsd + graphite for Google App Engine?

I am new to GAE, and although I looked around, I did not see anything that mimics the statsd functionality for GAE. Basically, it would be nice to have something that you could easily set statistics and see graphical results.

http://codeascraft.etsy.com/2011/02/15/measure-anything-measure-everything/

+4
source share
1 answer

One thing that seems complicated for statsd is handling an unlimited amount of data. If you're interested in aggregate application statistics (across the entire dataset), I would suggest using the App Engine API or the App Engine data store in conjunction with Google BigQuery .

If you are interested in analyzing App Engine logs, there are two projects you can see that help move application log data to BigQuery:

  • log2bq , a Python application for GAE-> BigQuery logs
  • Mache , a framework for clicking on GAE log data in BigQuery (I know you're asking about Python, but this one is written in Java)

You can also transfer Datastore data to BigQuery for analysis to collect and analyze general statistics. The GAE team recently began testing a feature that imports data from an experimental backup storage tool directly into BigQuery. See this link for more information.

BigQuery does not provide its own visualization tools, but there are many ways to visualize BigQuery query results, examples include:

There are more on the page of third-party tools BigQuery .

+1
source

Source: https://habr.com/ru/post/1445120/


All Articles