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

io.qameta.allure.influxdb.InfluxDbExportPlugin Maven / Gradle / Ivy

/*
 *  Copyright 2019 Qameta Software OÜ
 *
 *  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.CommonMetricAggregator;
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 CommonMetricAggregator {

    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
        );
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy