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

1type CreatorTimeseriesMetrics {
2
3# Seconds of ads played per time chunk.
4adBreaksInSeconds: CreatorTimeseriesMetric!
5
6# Ad time (in seconds) per hour per time chunk.
7adTimePerHour: CreatorTimeseriesMetric!
8
9# Average number of viewers per time chunk.
10averageViewers: CreatorTimeseriesMetric!
11
12# Number of chat messages per time chunk.
13chatMessages: CreatorTimeseriesMetric!
14
15# Number of clip views per time chunk.
16clipViews: CreatorTimeseriesMetric!
17
18# Number of clips created per time chunk.
19clipsCreated: CreatorTimeseriesMetric!
20
21# Number of follows during this timestamp.
22follows: CreatorTimeseriesMetric!
23
24# Granularity of the time series, default unit is five minutes.
25granularity: Granularity!
26
27# Host/Raid viewers per time chunk.
28hostRaidViewers: CreatorTimeseriesMetric!
29
30# Live number of views per time chunk.
31liveViews: CreatorTimeseriesMetric!
32
33# Max viewers per time chunk.
34maxViewers: CreatorTimeseriesMetric!
35
36# Minutes watched per time chunk.
37minutesWatched: CreatorTimeseriesMetric!
38
39# Number of subscriptions per time chunk.
40newSubscriptions: CreatorTimeseriesMetric!
41
42# Promotion clicks for the time period.
43promotionClick: CreatorTimeseriesMetric!
44
45# Promotion displays for the time period.
46promotionDisplay: CreatorTimeseriesMetric!
47
48# Time streamed per time chunk.
49timeStreamed: CreatorTimeseriesMetric!
50
51# Number of people chatting per time chunk.
52uniqueChatters: CreatorTimeseriesMetric!
53
54# Number of unique people watching per time chunk.
55uniqueViewers: CreatorTimeseriesMetric!
56
57}