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

org.graylog.events.search.EventsSearchResult Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
/*
 * Copyright (C) 2020 Graylog, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * Server Side Public License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program. If not, see
 * .
 */
package org.graylog.events.search;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableMap;
import org.graylog.events.event.EventDto;

import java.util.List;
import java.util.Map;
import java.util.Set;

@AutoValue
@JsonAutoDetect
public abstract class EventsSearchResult {
    @JsonProperty("events")
    public abstract List events();

    @JsonProperty("used_indices")
    public abstract Set usedIndices();

    @JsonProperty("parameters")
    public abstract EventsSearchParameters parameters();

    @JsonProperty("total_events")
    public abstract long totalEvents();

    @JsonProperty("duration")
    public abstract long duration();

    @JsonProperty("context")
    public abstract Context context();

    public static Builder builder() {
        return new AutoValue_EventsSearchResult.Builder();
    }

    @AutoValue.Builder
    public static abstract class Builder {
        public abstract Builder events(List events);

        public abstract Builder usedIndices(Set usedIndices);

        public abstract Builder parameters(EventsSearchParameters parameters);

        public abstract Builder totalEvents(long totalEvents);

        public abstract Builder duration(long duration);

        public abstract Builder context(Context context);

        public abstract EventsSearchResult build();
    }

    @AutoValue
    public static abstract class Event {
        @JsonProperty("event")
        public abstract EventDto event();

        @JsonProperty("index_name")
        public abstract String indexName();

        @JsonProperty("index_type")
        public abstract String indexType();

        public static Event create(EventDto event, String indexName, String indexType) {
            return new AutoValue_EventsSearchResult_Event(event, indexName, indexType);
        }
    }

    @AutoValue
    public static abstract class Context {
        @JsonProperty("event_definitions")
        public abstract ImmutableMap eventDefinitions();

        @JsonProperty("streams")
        public abstract ImmutableMap streams();

        public static Context create(Map eventDefinitions,
                                     Map streams) {
            return new AutoValue_EventsSearchResult_Context(ImmutableMap.copyOf(eventDefinitions), ImmutableMap.copyOf(streams));
        }
    }

    @AutoValue
    public static abstract class ContextEntity {
        @JsonProperty("id")
        public abstract String id();

        @JsonProperty("title")
        public abstract String title();

        @JsonProperty("description")
        public abstract String description();

        public static ContextEntity create(String id, String title, String description) {
            return new AutoValue_EventsSearchResult_ContextEntity(id, title, description);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy