OBJECT
CreatorTimeseriesMetrics
Metrics within a time frame broken down by granularity. This is used for per team stats, per channel stats use "TimeseriesStats".
link GraphQL Schema definition
1 type CreatorTimeseriesMetrics { 2 3 # Seconds of ads played per time chunk. 4 : CreatorTimeseriesMetric! 5 6 # Ad time (in seconds) per hour per time chunk. 7 : CreatorTimeseriesMetric! 8 9 # Average number of viewers per time chunk. 10 : CreatorTimeseriesMetric! 11 12 # Number of chat messages per time chunk. 13 : CreatorTimeseriesMetric! 14 15 # Number of clip views per time chunk. 16 : CreatorTimeseriesMetric! 17 18 # Number of clips created per time chunk. 19 : CreatorTimeseriesMetric! 20 21 # Number of follows during this timestamp. 22 : CreatorTimeseriesMetric! 23 24 # Granularity of the time series, default unit is five minutes. 25 : Granularity! 26 27 # Host/Raid viewers per time chunk. 28 : CreatorTimeseriesMetric! 29 30 # Live number of views per time chunk. 31 : CreatorTimeseriesMetric! 32 33 # Max viewers per time chunk. 34 : CreatorTimeseriesMetric! 35 36 # Minutes watched per time chunk. 37 : CreatorTimeseriesMetric! 38 39 # Number of subscriptions per time chunk. 40 : CreatorTimeseriesMetric! 41 42 # Promotion clicks for the time period. 43 : CreatorTimeseriesMetric! 44 45 # Promotion displays for the time period. 46 : CreatorTimeseriesMetric! 47 48 # Time streamed per time chunk. 49 : CreatorTimeseriesMetric! 50 51 # Number of people chatting per time chunk. 52 : CreatorTimeseriesMetric! 53 54 # Number of unique people watching per time chunk. 55 : CreatorTimeseriesMetric! 56 57 }