com.google.cloud.opentelemetry.metric.CloudMetricClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exporter-metrics Show documentation
Show all versions of exporter-metrics Show documentation
Cloud Monitoring Exporter for OpenTelemetry
/*
* Copyright 2022 Google
*
* 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.opentelemetry.metric;
import com.google.api.MetricDescriptor;
import com.google.monitoring.v3.CreateMetricDescriptorRequest;
import com.google.monitoring.v3.ProjectName;
import com.google.monitoring.v3.TimeSeries;
import java.util.List;
/** Wrapper interface for writing to Google Cloud Monitoring. */
public interface CloudMetricClient {
/**
* Construct a metric descriptor.
*
* This informs Cloud Monitoring of label descriptions, metric descriptions, units, etc.
*/
MetricDescriptor createMetricDescriptor(CreateMetricDescriptorRequest request);
/**
* Send a timeseries to Cloud Monitoring.
*
* @param name The name of the project where we write the timeseries.
* @param timeSeries The list of timeseries to write.
*
Note: This can only take one point at per timeseries.
*/
void createTimeSeries(ProjectName name, List timeSeries);
/** Shutdown this client, cleaning up any resources. */
void shutdown();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy