forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoggingExample.java
577 lines (524 loc) · 18.5 KB
/
LoggingExample.java
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.examples.logging;
import com.google.cloud.MonitoredResource;
import com.google.cloud.MonitoredResourceDescriptor;
import com.google.cloud.logging.LogEntry;
import com.google.cloud.logging.Logging;
import com.google.cloud.logging.Logging.EntryListOption;
import com.google.cloud.logging.LoggingOptions;
import com.google.cloud.logging.Metric;
import com.google.cloud.logging.MetricInfo;
import com.google.cloud.logging.Payload.StringPayload;
import com.google.cloud.logging.Severity;
import com.google.cloud.logging.Sink;
import com.google.cloud.logging.SinkInfo;
import com.google.cloud.logging.SinkInfo.Destination;
import com.google.cloud.logging.SinkInfo.Destination.BucketDestination;
import com.google.cloud.logging.SinkInfo.Destination.DatasetDestination;
import com.google.cloud.logging.SinkInfo.Destination.TopicDestination;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
/**
* An example of using Stackdriver Logging.
*
* <p>This example demonstrates a simple/typical Logging usage.
*
* <p>See the
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/google-cloud-examples/README.md">
* README</a> for compilation instructions. Run this code with
* <pre>{@code target/appassembler/bin/LoggingExample
* -Dexec.args="[<project_id>]
* create metric <metric> <filter>
* create sink <sink> bucket|dataset|topic <destination> <filter>?
* list metrics
* list sinks
* list resource-descriptors
* list entries <filter>?
* delete metric <metric>
* delete sink <sink>
* delete log <logName>
* into metric <metric>
* info sink <sink>
* write <logName> <severity> <message> (<key> <value>)*"}</pre>
*
* <p>The first parameter is an optional {@code project_id} (logged-in project will be used if not
* supplied). Second parameter is a Logging operation and can be used to demonstrate its usage. For
* operations that apply to more than one entity (`list`, `create`, `info` and `delete`) the third
* parameter specifies the entity.
*/
public class LoggingExample {
private static final Map<String, LoggingAction> CREATE_ACTIONS = new HashMap<>();
private static final Map<String, LoggingAction> INFO_ACTIONS = new HashMap<>();
private static final Map<String, LoggingAction> LIST_ACTIONS = new HashMap<>();
private static final Map<String, LoggingAction> DELETE_ACTIONS = new HashMap<>();
private static final Map<String, LoggingAction> ACTIONS = new HashMap<>();
private abstract static class LoggingAction<T> {
abstract void run(Logging logging, T arg) throws Exception;
abstract T parse(String... args) throws Exception;
protected String params() {
return "";
}
}
private static class Tuple<X, Y> {
private final X x;
private final Y y;
private Tuple(X x, Y y) {
this.x = x;
this.y = y;
}
public static <X, Y> Tuple<X, Y> of(X x, Y y) {
return new Tuple<>(x, y);
}
X x() {
return x;
}
Y y() {
return y;
}
}
private static class ParentAction extends LoggingAction<Tuple<LoggingAction, Object>> {
private final Map<String, LoggingAction> subActions;
ParentAction(Map<String, LoggingAction> subActions) {
this.subActions = ImmutableMap.copyOf(subActions);
}
@Override
@SuppressWarnings("unchecked")
void run(Logging logging, Tuple<LoggingAction, Object> subaction) throws Exception {
subaction.x().run(logging, subaction.y());
}
@Override
Tuple<LoggingAction, Object> parse(String... args) throws Exception {
if (args.length >= 1) {
LoggingAction action = subActions.get(args[0]);
if (action != null) {
Object actionArguments = action.parse(Arrays.copyOfRange(args, 1, args.length));
return Tuple.of(action, actionArguments);
} else {
throw new IllegalArgumentException("Unrecognized entity '" + args[0] + "'.");
}
}
throw new IllegalArgumentException("Missing required entity.");
}
@Override
public String params() {
StringBuilder builder = new StringBuilder();
for (Map.Entry<String, LoggingAction> entry : subActions.entrySet()) {
builder.append('\n').append(entry.getKey());
String param = entry.getValue().params();
if (param != null && !param.isEmpty()) {
builder.append(' ').append(param);
}
}
return builder.toString();
}
}
private abstract static class NoArgsAction extends LoggingAction<Void> {
@Override
Void parse(String... args) throws Exception {
if (args.length == 0) {
return null;
}
throw new IllegalArgumentException("This action takes no arguments.");
}
}
/**
* This class demonstrates how to list Logging metrics.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.metrics/list">
* List metrics</a>
*/
private static class ListMetricsAction extends NoArgsAction {
@Override
public void run(Logging logging, Void arg) {
Iterator<Metric> metricIterator = logging.listMetrics().iterateAll();
while (metricIterator.hasNext()) {
System.out.println(metricIterator.next());
}
}
}
private abstract static class MetricAction extends LoggingAction<String> {
@Override
String parse(String... args) throws Exception {
String message;
if (args.length == 1) {
return args[0];
} else if (args.length > 1) {
message = "Too many arguments.";
} else {
message = "Missing required metric name.";
}
throw new IllegalArgumentException(message);
}
@Override
public String params() {
return "<metric>";
}
}
/**
* This class demonstrates how to retrieve information on a Logging metric.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.metrics/get">
* Get metric</a>
*/
private static class MetricInfoAction extends MetricAction {
@Override
public void run(Logging logging, String metric) {
System.out.printf("Metric info: %s%n", logging.getMetric(metric));
}
}
/**
* This class demonstrates how to delete a Logging metric.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.metrics/delete">
* Delete a metric</a>
*/
private static class DeleteMetricAction extends MetricAction {
@Override
public void run(Logging logging, String metric) {
logging.deleteMetric(metric);
System.out.printf("Deleted metric %s%n", metric);
}
}
/**
* This class demonstrates how to create a Logging metric.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.metrics/create">
* Create a metric</a>
*/
private static class CreateMetricAction extends LoggingAction<MetricInfo> {
@Override
public void run(Logging logging, MetricInfo metric) {
System.out.printf("Created metric %s%n", logging.create(metric));
}
@Override
MetricInfo parse(String... args) throws Exception {
String message;
if (args.length == 2) {
return MetricInfo.of(args[0], args[1]);
} else if (args.length > 2) {
message = "Too many arguments.";
} else {
message = "Missing required metric name or filter.";
}
throw new IllegalArgumentException(message);
}
@Override
public String params() {
return "<metric> <filter>";
}
}
/**
* This class demonstrates how to list Logging sinks.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.sinks/list">
* List sinks</a>
*/
private static class ListSinksAction extends NoArgsAction {
@Override
public void run(Logging logging, Void arg) {
Iterator<Sink> sinkIterator = logging.listSinks().iterateAll();
while (sinkIterator.hasNext()) {
System.out.println(sinkIterator.next());
}
}
}
private abstract static class SinkAction extends LoggingAction<String> {
@Override
String parse(String... args) throws Exception {
String message;
if (args.length == 1) {
return args[0];
} else if (args.length > 1) {
message = "Too many arguments.";
} else {
message = "Missing required sink name.";
}
throw new IllegalArgumentException(message);
}
@Override
public String params() {
return "<sink>";
}
}
/**
* This class demonstrates how to retrieve information on a Logging sink.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.sinks/get">
* Get sink</a>
*/
private static class SinkInfoAction extends SinkAction {
@Override
public void run(Logging logging, String sink) {
System.out.printf("Sink info: %s%n", logging.getSink(sink));
}
}
/**
* This class demonstrates how to delete a Logging sink.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.sinks/delete">
* Delete a sink</a>
*/
private static class DeleteSinkAction extends SinkAction {
@Override
public void run(Logging logging, String sink) {
logging.deleteSink(sink);
System.out.printf("Deleted sink %s%n", sink);
}
}
/**
* This class demonstrates how to create a Logging sink.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.sinks/create">
* Create a sink</a>
*/
private static class CreateSinkAction extends LoggingAction<SinkInfo> {
@Override
public void run(Logging logging, SinkInfo sink) {
System.out.printf("Created sink %s%n", logging.create(sink));
}
@Override
SinkInfo parse(String... args) throws Exception {
if (args.length >= 3) {
if (args.length > 4) {
throw new IllegalArgumentException("Too many arguments.");
}
String name = args[0];
Destination destination;
switch (args[1]) {
case "bucket":
destination = BucketDestination.of(args[2]);
break;
case "dataset":
destination = DatasetDestination.of(args[2]);
break;
case "topic":
destination = TopicDestination.of(args[2]);
break;
default:
throw new IllegalArgumentException("Second argument must be bucket|dataset|topic.");
}
SinkInfo.Builder builder = SinkInfo.builder(name, destination);
if (args.length == 4) {
builder.filter(args[3]);
}
return builder.build();
}
throw new IllegalArgumentException("Missing required sink name, destination or filter.");
}
@Override
public String params() {
return "<sink> bucket|dataset|topic <destination> <filter>?";
}
}
/**
* This class demonstrates how to list Logging monitored resource descriptors.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/monitoredResourceDescriptors/list">
* List monitored resource descriptor</a>
*/
private static class ListResourceDescriptorsAction extends NoArgsAction {
@Override
public void run(Logging logging, Void arg) {
Iterator<MonitoredResourceDescriptor> monitoredResourceIterator =
logging.listMonitoredResourceDescriptors().iterateAll();
while (monitoredResourceIterator.hasNext()) {
System.out.println(monitoredResourceIterator.next());
}
}
}
/**
* This class demonstrates how to write Logging entries.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/entries/write">
* Write log entries</a>
*/
private static class WriteEntryAction extends LoggingAction<LogEntry> {
@Override
public void run(Logging logging, LogEntry entry) {
MonitoredResource resource = MonitoredResource.builder("global")
.addLabel("project_id", logging.options().projectId())
.build();
LogEntry entryWithResource = entry.toBuilder().resource(resource).build();
logging.write(Collections.singleton(entryWithResource));
System.out.printf("Written entry %s%n", entryWithResource);
}
@Override
LogEntry parse(String... args) throws Exception {
if (args.length >= 3) {
if ((args.length & 0x1) != 0x1) {
throw new IllegalArgumentException("Labels must be a list of key-value pairs.");
}
String logName = args[0];
Severity severity = Severity.valueOf(args[1].toUpperCase());
String message = args[2];
Map<String, String> labels = Maps.newHashMapWithExpectedSize((args.length - 3) / 2);
for (int i = 3; i < args.length; i += 2) {
labels.put(args[i], args[i + 1]);
}
return LogEntry.builder(StringPayload.of(message))
.logName(logName)
.severity(severity)
.labels(labels)
.build();
} else {
throw new IllegalArgumentException("Missing required arguments.");
}
}
@Override
public String params() {
return "<logName> <severity> <message> (<key> <value>)*";
}
}
/**
* This class demonstrates how to list Logging entries.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/entries/list">
* List log entries</a>
*/
private static class ListEntriesAction extends LoggingAction<String> {
@Override
public void run(Logging logging, String filter) {
Iterator<LogEntry> entryIterator;
if (filter == null) {
entryIterator = logging.listLogEntries().iterateAll();
} else {
entryIterator = logging.listLogEntries(EntryListOption.filter(filter)).iterateAll();
}
while (entryIterator.hasNext()) {
System.out.println(entryIterator.next());
}
}
@Override
String parse(String... args) throws Exception {
if (args.length == 0) {
return null;
} else if (args.length == 1) {
return args[0];
}
throw new IllegalArgumentException("Too many arguments.");
}
@Override
public String params() {
return "<filter>?";
}
}
/**
* This class demonstrates how to delete a Logging log.
*
* @see <a href="https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/projects.logs/delete">
* Delete a log</a>
*/
private static class DeleteLogAction extends LoggingAction<String> {
@Override
public void run(Logging logging, String logName) {
logging.deleteLog(logName);
System.out.printf("Deleted log %s%n", logName);
}
@Override
String parse(String... args) throws Exception {
String message;
if (args.length == 1) {
return args[0];
} else if (args.length > 1) {
message = "Too many arguments.";
} else {
message = "Missing required log name.";
}
throw new IllegalArgumentException(message);
}
@Override
public String params() {
return "<logName>";
}
}
static {
CREATE_ACTIONS.put("metric", new CreateMetricAction());
CREATE_ACTIONS.put("sink", new CreateSinkAction());
INFO_ACTIONS.put("metric", new MetricInfoAction());
INFO_ACTIONS.put("sink", new SinkInfoAction());
LIST_ACTIONS.put("metrics", new ListMetricsAction());
LIST_ACTIONS.put("sinks", new ListSinksAction());
LIST_ACTIONS.put("entries", new ListEntriesAction());
LIST_ACTIONS.put("resource-descriptors", new ListResourceDescriptorsAction());
DELETE_ACTIONS.put("metric", new DeleteMetricAction());
DELETE_ACTIONS.put("sink", new DeleteSinkAction());
DELETE_ACTIONS.put("log", new DeleteLogAction());
ACTIONS.put("create", new ParentAction(CREATE_ACTIONS));
ACTIONS.put("info", new ParentAction(INFO_ACTIONS));
ACTIONS.put("list", new ParentAction(LIST_ACTIONS));
ACTIONS.put("delete", new ParentAction(DELETE_ACTIONS));
ACTIONS.put("write", new WriteEntryAction());
}
private static void printUsage() {
StringBuilder actionAndParams = new StringBuilder();
for (Map.Entry<String, LoggingAction> entry : ACTIONS.entrySet()) {
actionAndParams.append("\n\t").append(entry.getKey());
String param = entry.getValue().params();
if (param != null && !param.isEmpty()) {
actionAndParams.append(' ').append(param.replace("\n", "\n\t\t"));
}
}
System.out.printf("Usage: %s [<project_id>] operation [entity] <args>*%s%n",
LoggingExample.class.getSimpleName(), actionAndParams);
}
@SuppressWarnings("unchecked")
public static void main(String... args) throws Exception {
if (args.length < 1) {
System.out.println("Missing required project id and action");
printUsage();
return;
}
LoggingOptions.Builder optionsBuilder = LoggingOptions.builder();
LoggingAction action;
String actionName;
if (args.length >= 2 && !ACTIONS.containsKey(args[0])) {
actionName = args[1];
optionsBuilder.projectId(args[0]);
action = ACTIONS.get(args[1]);
args = Arrays.copyOfRange(args, 2, args.length);
} else {
actionName = args[0];
action = ACTIONS.get(args[0]);
args = Arrays.copyOfRange(args, 1, args.length);
}
if (action == null) {
System.out.println("Unrecognized action.");
printUsage();
return;
}
try (Logging logging = optionsBuilder.build().service()) {
Object arg;
try {
arg = action.parse(args);
} catch (IllegalArgumentException ex) {
System.out.printf("Invalid input for action '%s'. %s%n", actionName, ex.getMessage());
System.out.printf("Expected: %s%n", action.params());
return;
} catch (Exception ex) {
System.out.println("Failed to parse arguments.");
ex.printStackTrace();
return;
}
action.run(logging, arg);
}
}
}