OBJECT

TimeseriesStats

Stats within a time frame broken down by granularity. This is used for per channel stats, per team stats use "CreatorTimeseriesMetrics".

link GraphQL Schema definition

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