summaryrefslogtreecommitdiffstats
path: root/Documentation/cmd-stream-events.txt
blob: b467b6789c146d0257e838f29bf5d3df3ea1ea9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
gerrit stream-events
====================

NAME
----
gerrit stream-events - Monitor events occuring in real time

SYNOPSIS
--------
[verse]
'ssh' -p <port> <host> 'gerrit stream-events'

DESCRIPTION
-----------

Provides a portal into the major events occuring on the server,
outputing activity data in real-time to the client.  Events are
filtered by the caller's access permissions, ensuring the caller
only receives events for changes they can view on the web, or in
the project repository.

Event output is in JSON, one event per line.

ACCESS
------
Any user who has configured an SSH key.

SCRIPTING
---------
This command is intended to be used in scripts.

EXAMPLES
--------

-----
  $ ssh -p 29418 review.example.com gerrit stream-events
  {"type":"comment-added",change:{"project":"tools/gerrit", ...}, ...}
  {"type":"comment-added",change:{"project":"tools/gerrit", ...}, ...}
-----

SCHEMA
------
The JSON messages consist of nested objects referencing the *change*,
*patchset*, *account* involved, and other attributes as appropriate.
The currently supported message types are *patchset-created*,
*comment-added*, *change-merged*, *change-deferred* and
*change-abandoned*.

Note that any field may be missing in the JSON messages, so consumers of
this JSON stream should deal with that appropriately.

Events
~~~~~~
Patchset Created
^^^^^^^^^^^^^^^^
type:: "patchset-created"

change:: link:json.html#change[change attribute]

patchset:: link:json.html#patchset[patchset attribute]

uploader:: link:json.html#account[account attribute]

Change Deferred
^^^^^^^^^^^^^^^
type:: "change-deferred"

change:: link:json.html#change[change attribute]

patchset:: link:json.html#patchset[patchset attribute]

deferrer:: link:json.html#account[account attribute]

Change Abandoned
^^^^^^^^^^^^^^^^
type:: "change-abandoned"

change:: link:json.html#change[change attribute]

patchset:: link:json.html#patchset[patchset attribute]

abandoner:: link:json.html#account[account attribute]

Change Restored
^^^^^^^^^^^^^^^^
type:: "change-restored"

change:: link:json.html#change[change attribute]

patchset:: link:json.html#patchset[patchset attribute]

restorer:: link:json.html#account[account attribute]

Change Merged
^^^^^^^^^^^^^
type:: "change-merged"

change:: link:json.html#change[change attribute]

patchset:: link:json.html#patchset[patchset attribute]

submitter:: link:json.html#account[account attribute]

Comment Added
^^^^^^^^^^^^^
type:: "comment-added"

change:: link:json.html#change[change attribute]

patchset:: link:json.html#patchset[patchset attribute]

author:: link:json.html#account[account attribute]

comment:: Comment text author had written

Ref Updated
^^^^^^^^^^^
type:: "ref-updated"

submitter:: link:json.html#account[account attribute]

refUpdate:: link:json.html#refupdate[refupdate attribute]


SEE ALSO
--------

* link:json.html[JSON Data Formats]
* link:access-control.html[Access Controls]

GERRIT
------
Part of link:index.html[Gerrit Code Review]