All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hudi.config.metrics.HoodieMetricsDatadogConfig Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.hudi.config.metrics;

import org.apache.hudi.common.config.ConfigClassProperty;
import org.apache.hudi.common.config.ConfigGroups;
import org.apache.hudi.common.config.ConfigProperty;
import org.apache.hudi.common.config.HoodieConfig;

import javax.annotation.concurrent.Immutable;

import java.util.Properties;

import static org.apache.hudi.config.metrics.HoodieMetricsConfig.METRIC_PREFIX;

/**
 * Configs for Datadog reporter type.
 * 

* {@link org.apache.hudi.metrics.MetricsReporterType#DATADOG} */ @Immutable @ConfigClassProperty(name = "Metrics Configurations for Datadog reporter", groupName = ConfigGroups.Names.METRICS, description = "Enables reporting on Hudi metrics using the Datadog reporter type. " + "Hudi publishes metrics on every commit, clean, rollback etc.") public class HoodieMetricsDatadogConfig extends HoodieConfig { public static final String DATADOG_PREFIX = METRIC_PREFIX + ".datadog"; public static final ConfigProperty REPORT_PERIOD_IN_SECONDS = ConfigProperty .key(DATADOG_PREFIX + ".report.period.seconds") .defaultValue(30) .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Datadog reporting period in seconds. Default to 30."); public static final ConfigProperty API_SITE_VALUE = ConfigProperty .key(DATADOG_PREFIX + ".api.site") .noDefaultValue() .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Datadog API site: EU or US"); public static final ConfigProperty API_KEY = ConfigProperty .key(DATADOG_PREFIX + ".api.key") .noDefaultValue() .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Datadog API key"); public static final ConfigProperty API_KEY_SKIP_VALIDATION = ConfigProperty .key(DATADOG_PREFIX + ".api.key.skip.validation") .defaultValue(false) .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Before sending metrics via Datadog API, whether to skip validating Datadog API key or not. " + "Default to false."); public static final ConfigProperty API_KEY_SUPPLIER = ConfigProperty .key(DATADOG_PREFIX + ".api.key.supplier") .noDefaultValue() .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Datadog API key supplier to supply the API key at runtime. " + "This will take effect if hoodie.metrics.datadog.api.key is not set."); public static final ConfigProperty API_TIMEOUT_IN_SECONDS = ConfigProperty .key(DATADOG_PREFIX + ".api.timeout.seconds") .defaultValue(3) .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Datadog API timeout in seconds. Default to 3."); public static final ConfigProperty METRIC_PREFIX_VALUE = ConfigProperty .key(DATADOG_PREFIX + ".metric.prefix") .noDefaultValue() .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Datadog metric prefix to be prepended to each metric name with a dot as delimiter. " + "For example, if it is set to foo, foo. will be prepended."); public static final ConfigProperty METRIC_HOST_NAME = ConfigProperty .key(DATADOG_PREFIX + ".metric.host") .noDefaultValue() .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Datadog metric host to be sent along with metrics data."); public static final ConfigProperty METRIC_TAG_VALUES = ConfigProperty .key(DATADOG_PREFIX + ".metric.tags") .noDefaultValue() .markAdvanced() .sinceVersion("0.6.0") .withDocumentation("Datadog metric tags (comma-delimited) to be sent along with metrics data."); /** * @deprecated Use {@link #REPORT_PERIOD_IN_SECONDS} and its methods instead */ @Deprecated public static final String DATADOG_REPORT_PERIOD_SECONDS = REPORT_PERIOD_IN_SECONDS.key(); /** * @deprecated Use {@link #REPORT_PERIOD_IN_SECONDS} and its methods instead */ @Deprecated public static final int DEFAULT_DATADOG_REPORT_PERIOD_SECONDS = REPORT_PERIOD_IN_SECONDS.defaultValue(); /** * @deprecated Use {@link #API_SITE_VALUE} and its methods instead */ @Deprecated public static final String DATADOG_API_SITE = API_SITE_VALUE.key(); /** * @deprecated Use {@link #API_KEY} and its methods instead */ @Deprecated public static final String DATADOG_API_KEY = API_KEY.key(); /** * @deprecated Use {@link #API_KEY_SKIP_VALIDATION} and its methods instead */ @Deprecated public static final String DATADOG_API_KEY_SKIP_VALIDATION = API_KEY_SKIP_VALIDATION.key(); /** * @deprecated Use {@link #API_KEY_SKIP_VALIDATION} and its methods instead */ @Deprecated public static final boolean DEFAULT_DATADOG_API_KEY_SKIP_VALIDATION = API_KEY_SKIP_VALIDATION.defaultValue(); /** * @deprecated Use {@link #API_KEY_SUPPLIER} and its methods instead */ @Deprecated public static final String DATADOG_API_KEY_SUPPLIER = API_KEY_SUPPLIER.key(); /** * @deprecated Use {@link #API_TIMEOUT_IN_SECONDS} and its methods instead */ @Deprecated public static final String DATADOG_API_TIMEOUT_SECONDS = API_TIMEOUT_IN_SECONDS.key(); /** * @deprecated Use {@link #API_TIMEOUT_IN_SECONDS} and its methods instead */ @Deprecated public static final int DEFAULT_DATADOG_API_TIMEOUT_SECONDS = API_TIMEOUT_IN_SECONDS.defaultValue(); /** * @deprecated Use {@link #METRIC_PREFIX_VALUE} and its methods instead */ @Deprecated public static final String DATADOG_METRIC_PREFIX = METRIC_PREFIX_VALUE.key(); /** * @deprecated Use {@link #METRIC_HOST_NAME} and its methods instead */ @Deprecated public static final String DATADOG_METRIC_HOST = METRIC_HOST_NAME.key(); /** * @deprecated Use {@link #METRIC_TAG_VALUES} and its methods instead */ @Deprecated public static final String DATADOG_METRIC_TAGS = METRIC_TAG_VALUES.key(); private HoodieMetricsDatadogConfig() { super(); } public static HoodieMetricsDatadogConfig.Builder newBuilder() { return new Builder(); } public static class Builder { private final HoodieMetricsDatadogConfig metricsDatadogConfig = new HoodieMetricsDatadogConfig(); public Builder fromProperties(Properties props) { this.metricsDatadogConfig.getProps().putAll(props); return this; } public Builder withDatadogReportPeriodSeconds(int period) { metricsDatadogConfig.setValue(REPORT_PERIOD_IN_SECONDS, String.valueOf(period)); return this; } public Builder withDatadogApiSite(String apiSite) { metricsDatadogConfig.setValue(API_SITE_VALUE, apiSite); return this; } public Builder withDatadogApiKey(String apiKey) { metricsDatadogConfig.setValue(API_KEY, apiKey); return this; } public Builder withDatadogApiKeySkipValidation(boolean skip) { metricsDatadogConfig.setValue(API_KEY_SKIP_VALIDATION, String.valueOf(skip)); return this; } public Builder withDatadogApiKeySupplier(String apiKeySupplier) { metricsDatadogConfig.setValue(API_KEY_SUPPLIER, apiKeySupplier); return this; } public Builder withDatadogApiTimeoutSeconds(int timeout) { metricsDatadogConfig.setValue(API_TIMEOUT_IN_SECONDS, String.valueOf(timeout)); return this; } public Builder withDatadogPrefix(String prefix) { metricsDatadogConfig.setValue(METRIC_PREFIX_VALUE, prefix); return this; } public Builder withDatadogHost(String host) { metricsDatadogConfig.setValue(METRIC_HOST_NAME, host); return this; } public Builder withDatadogTags(String tags) { metricsDatadogConfig.setValue(METRIC_TAG_VALUES, tags); return this; } public HoodieMetricsDatadogConfig build() { metricsDatadogConfig.setDefaults(HoodieMetricsDatadogConfig.class.getName()); return metricsDatadogConfig; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy