com.google.cloud.logging.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcloud-java-logging Show documentation
Show all versions of gcloud-java-logging Show documentation
Java idiomatic client for Stackdriver Logging.
/*
* 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.
*/
/**
* A client to Stackdriver Logging.
*
* Here's a simple usage example for using gcloud-java from Compute Engine/App Engine Flexible.
* This example shows how to write and list log entries. For the complete source code see
*
* WriteAndListLogEntries.java.
*
{@code
* LoggingOptions options = LoggingOptions.defaultInstance();
* try(Logging logging = options.service()) {
*
* LogEntry firstEntry = LogEntry.builder(StringPayload.of("message"))
* .logName("test-log")
* .resource(MonitoredResource.builder("global")
* .addLabel("project_id", options.projectId())
* .build())
* .build();
* logging.write(Collections.singleton(firstEntry));
*
* Page entries = logging.listLogEntries(
* EntryListOption.filter("logName=projects/" + options.projectId() + "/logs/test-log"));
* Iterator entryIterator = entries.iterateAll();
* while (entryIterator.hasNext()) {
* System.out.println(entryIterator.next());
* }
* }}
*
* This second example shows how to use a {@link java.util.logging.Logger} to write log entries
* to Stackdriver Logging. The snippet installs a Stackdriver Logging handler using
* {@code LoggingHandler.addHandler(Logger, LoggingHandler)}. Notice that this could also be done
* through the {@code logging.properties} file, adding the following line:
*
* {@code com.google.cloud.examples.logging.snippets.AddLoggingHandler.handlers=com.google.cloud.logging.LoggingHandler}
*
* For the complete source code see
*
* AddLoggingHandler.java.
* {@code
* Logger logger = Logger.getLogger(AddLoggingHandler.class.getName());
* LoggingHandler.addHandler(logger, new LoggingHandler());
* logger.warning("test warning");
* }
*
* @see Stackdriver Logging
*/
package com.google.cloud.logging;