| 1842 | |
| 1843 | #[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] |
| 1844 | pub struct AdminApiBehaviorOverviewResponse { |
| 1845 | pub timezone: String, |
| 1846 | pub days: usize, |
| 1847 | pub total_events: usize, |
| 1848 | pub unique_ips: usize, |
| 1849 | pub unique_pages: usize, |
| 1850 | pub avg_latency_ms: f64, |
| 1851 | pub timeseries: Vec<ApiBehaviorBucket>, |
| 1852 | pub top_endpoints: Vec<ApiBehaviorBucket>, |
| 1853 | pub top_pages: Vec<ApiBehaviorBucket>, |
| 1854 | pub device_distribution: Vec<ApiBehaviorBucket>, |
| 1855 | pub browser_distribution: Vec<ApiBehaviorBucket>, |
| 1856 | pub os_distribution: Vec<ApiBehaviorBucket>, |
| 1857 | pub region_distribution: Vec<ApiBehaviorBucket>, |
| 1858 | pub recent_events: Vec<AdminApiBehaviorEvent>, |
| 1859 | } |
| 1860 | |
| 1861 | #[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] |
| 1862 | pub struct AdminApiBehaviorEventsResponse { |
nothing calls this directly
no outgoing calls
no test coverage detected