io.qameta.allure.influxdb.InfluxDbExportPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure-generator Show documentation
Show all versions of allure-generator Show documentation
Module allure-generator of Allure Framework.
/*
* Copyright 2016-2024 Qameta Software Inc
*
* 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 io.qameta.allure.influxdb;
import io.qameta.allure.CommonMetricAggregator2;
import io.qameta.allure.category.CategoriesMetric;
import io.qameta.allure.metric.Metric;
import io.qameta.allure.metric.StatusMetric;
import io.qameta.allure.metric.TimeMetric;
import io.qameta.allure.retry.RetryMetric;
import java.time.Instant;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.TimeUnit;
/**
* Plugin that generates data for influx db.
*/
public class InfluxDbExportPlugin extends CommonMetricAggregator2 {
public InfluxDbExportPlugin() {
super("influxDbData.txt");
}
@Override
public List getMetrics() {
final long timestamp = TimeUnit.SECONDS.toNanos(Instant.now().getEpochSecond());
final StatusMetric statusMetric = new StatusMetric((status, count) ->
new InfluxDbMetricLine("launch_status", status.value(), String.valueOf(count), timestamp));
final TimeMetric timeMetric = new TimeMetric((key, time) ->
new InfluxDbMetricLine("launch_time", key, String.valueOf(time), timestamp));
final CategoriesMetric categoriesMetric = new CategoriesMetric((category, count) ->
new InfluxDbMetricLine("launch_problems", category, String.valueOf(count), timestamp));
final RetryMetric retryMetric = new RetryMetric((key, count) ->
new InfluxDbMetricLine("launch_retries", key, String.valueOf(count), timestamp)
);
return Arrays.asList(
statusMetric,
timeMetric,
categoriesMetric,
retryMetric
);
}
}