7

I am interacting with the cloudkit dashboard and looking at data collected by my app.

How can I export all the data from the dashboard (data-> csv or json) so that I can do some analytics on it?

Thanks!

  • 1
    http://stackoverflow.com/questions/38279009/is-there-any-option-to-export-all-cloud-kit-data – ICL1901 Dec 20 '16 at 15:08
  • The link above doesn't have information OP asked, which is reasonable: so far in Sept 2017 I don't think there's a way to export data as a way you desired. The only viable option would be writing your own exporting app. The link does contain information about how to do that. – superarts.org Sep 08 '17 at 15:16
  • 1
    As of **2018**, it's still not possible to export your data from CloudKit directly. But querying all your records and writing the results to a CSV file is fairly easy to do in Swift. – Clifton Labrum Aug 31 '18 at 04:45
  • 1
    Still the same situation now, in mid-February 2019... – Gene Loparco Feb 16 '19 at 01:24
  • And now it's March 2020! I think @Sascha's comment may be correct. Time to roll our own. – ICL1901 Mar 11 '20 at 17:39

1 Answers1

1

I don't think Apple will ever provide an export feature. The system is capable to collecting more than 40 events per second. This could very quickly be massive amount of data. Instead there is a possibility to query the system via an API, so you can build an external website to query your results and possibly export your data from there.

Sascha
  • 47
  • 5