reports

package
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 7, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AvailableReports = []ReportInfo{
	{
		Type:        "installs",
		Description: "Daily install and uninstall statistics",
		Frequency:   "Daily",
		Format:      "CSV",
		Access:      "Cloud Storage export",
	},
	{
		Type:        "crashes",
		Description: "Crash reports with stack traces",
		Frequency:   "Real-time",
		Format:      "JSON via Vitals API",
		Access:      "gpc vitals crashes",
	},
	{
		Type:        "anr",
		Description: "ANR (Application Not Responding) reports",
		Frequency:   "Real-time",
		Format:      "JSON via Vitals API",
		Access:      "gpc vitals anr",
	},
	{
		Type:        "reviews",
		Description: "User reviews and ratings",
		Frequency:   "Real-time",
		Format:      "JSON",
		Access:      "gpc reviews list",
	},
	{
		Type:        "ratings",
		Description: "Rating distribution over time",
		Frequency:   "Daily",
		Format:      "CSV",
		Access:      "Cloud Storage export",
	},
	{
		Type:        "financial",
		Description: "Earnings and financial reports",
		Frequency:   "Monthly",
		Format:      "CSV",
		Access:      "Play Console (requires merchant)",
	},
	{
		Type:        "subscriptions",
		Description: "Subscription metrics and churn",
		Frequency:   "Daily",
		Format:      "CSV",
		Access:      "Cloud Storage export",
	},
	{
		Type:        "statistics",
		Description: "Aggregate app statistics",
		Frequency:   "Daily",
		Format:      "CSV",
		Access:      "Cloud Storage export",
	},
}

AvailableReports lists all available report types

View Source
var ReportsCmd = &cobra.Command{
	Use:   "reports",
	Short: "View available reports",
	Long: `View information about available reports from Google Play Console.

Note: Full report downloads require the Play Console web interface or
Cloud Storage export. This command shows report types and availability.`,
}

Functions

This section is empty.

Types

type ReportInfo

type ReportInfo struct {
	Type        string `json:"type"`
	Description string `json:"description"`
	Frequency   string `json:"frequency"`
	Format      string `json:"format"`
	Access      string `json:"access"`
}

ReportInfo represents report information

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL