MessageProducer.java
6.75 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
package com.dianping.cat.message;
/**
* <p>
* Message factory is used to create new transaction,event and/or heartbeat.
* </p>
*
* <p>
* Normally, application code logs message in following ways, for example:
* <ul>
* <li>Event
*
* <pre>
* public class MyClass {
* public static MessageFactory CAT = Cat.getFactory();
*
* public void bizMethod() {
* Event event = CAT.newEvent("Review", "New");
*
* event.addData("id", 12345);
* event.addData("user", "john");
* ...
* event.setStatus("0");
* event.complete();
* }
* ...
* }
* </pre>
*
* </li>
* <li>Heartbeat
*
* <pre>
* public class MyClass {
* public static MessageFactory CAT = Cat.getFactory();
*
* public void bizMethod() {
* Heartbeat event = CAT.newHeartbeat("System", "Status");
*
* event.addData("ip", "192.168.10.111");
* event.addData("host", "host-1");
* event.addData("load", "2.1");
* event.addData("cpu", "0.12,0.10");
* event.addData("memory.total", "2G");
* event.addData("memory.free", "456M");
* event.setStatus("0");
* event.complete();
* }
* ...
* }
* </pre>
*
* </li>
* <li>Transaction
*
* <pre>
* public class MyClass {
* public static MessageFactory CAT = Cat.getFactory();
*
* public void bizMethod() {
* Transaction t = CAT.newTransaction("URL", "MyPage");
*
* try {
* // do your business here
* t.addData("k1", "v1");
* t.addData("k2", "v2");
* t.addData("k3", "v3");
* Thread.sleep(30);
*
* t.setStatus("0");
* } catch (Exception e) {
* t.setStatus(e);
* } finally {
* t.complete();
* }
* }
* ...
* }
* </pre>
*
* </li>
* </ul>
*
* or logs event or heartbeat in one shot, for example:
* <ul>
* <li>Event
*
* <pre>
* public class MyClass {
* public static MessageFactory CAT = Cat.getFactory();
*
* public void bizMethod() {
* CAT.logEvent("Review", "New", "0", "id=12345&user=john");
* }
* ...
* }
* </pre>
*
* </li>
* <li>Heartbeat
*
* <pre>
* public class MyClass {
* public static MessageFactory CAT = Cat.getFactory();
*
* public void bizMethod() {
* CAT.logHeartbeat("System", "Status", "0", "ip=192.168.10.111&host=host-1&load=2.1&cpu=0.12,0.10&memory.total=2G&memory.free=456M");
* }
* ...
* }
* </pre>
*
* </li>
* </ul>
* </p>
*
* @author Frankie Wu
*/
public interface MessageProducer {
/**
* Create a new message id.
*
* @return new message id
*/
public String createMessageId();
/**
* Check if the CAT client is enabled for current domain.
*
* @return true if CAT client is enabled, false means CAT client is disabled.
*/
public boolean isEnabled();
/**
* Log an error.
*
* @param cause
* root cause exception
*/
public void logError(Throwable cause);
/**
* Log an error.
*
* @param cause
* root cause exception
*/
public void logError(String message, Throwable cause);
/**
* Log an event in one shot with SUCCESS status.
*
* @param type
* event type
* @param name
* event name
*/
public void logEvent(String type, String name);
/**
* Log an trace in one shot with SUCCESS status.
*
* @param type
* trace type
* @param name
* trace name
*/
public void logTrace(String type, String name);
/**
* Log an event in one shot.
*
* @param type
* event type
* @param name
* event name
* @param status
* "0" means success, otherwise means error code
* @param nameValuePairs
* name value pairs in the format of "a=1&b=2&..."
*/
public void logEvent(String type, String name, String status, String nameValuePairs);
/**
* Log an trace in one shot.
*
* @param type
* trace type
* @param name
* trace name
* @param status
* "0" means success, otherwise means error code
* @param nameValuePairs
* name value pairs in the format of "a=1&b=2&..."
*/
public void logTrace(String type, String name, String status, String nameValuePairs);
/**
* Log a heartbeat in one shot.
*
* @param type
* heartbeat type
* @param name
* heartbeat name
* @param status
* "0" means success, otherwise means error code
* @param nameValuePairs
* name value pairs in the format of "a=1&b=2&..."
*/
public void logHeartbeat(String type, String name, String status, String nameValuePairs);
/**
* Log a metric in one shot.
*
* @param name
* metric name
* @param status
* "0" means success, otherwise means error code
* @param nameValuePairs
* name value pairs in the format of "a=1&b=2&..."
*/
public void logMetric(String name, String status, String nameValuePairs);
/**
* Create a new event with given type and name.
*
* @param type
* event type
* @param name
* event name
*/
public Event newEvent(String type, String name);
/**
* Create a new trace with given type and name.
*
* @param type
* trace type
* @param name
* trace name
*/
public Trace newTrace(String type, String name);
/**
* Create a new heartbeat with given type and name.
*
* @param type
* heartbeat type
* @param name
* heartbeat name
*/
public Heartbeat newHeartbeat(String type, String name);
/**
* Create a new metric with given type and name.
*
* @param type
* metric type
* @param name
* metric name
*/
public Metric newMetric(String type, String name);
/**
* Create a new transaction with given type and name.
*
* @param type
* transaction type
* @param name
* transaction name
*/
public Transaction newTransaction(String type, String name);
/**
* Create a forked transaction for child thread.
*
* @param type
* transaction type
* @param name
* transaction name
* @return forked transaction
*/
public ForkedTransaction newForkedTransaction(String type, String name);
/**
* Create a tagged transaction for another process or thread.
*
* @param type
* transaction type
* @param name
* transaction name
* @param tag
* tag applied to the transaction
* @return tagged transaction
*/
public TaggedTransaction newTaggedTransaction(String type, String name, String tag);
}