com.grafana.foundation.grafanapyroscope.Dataquery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grafana-foundation-sdk Show documentation
Show all versions of grafana-foundation-sdk Show documentation
A set of tools, types and libraries for building and manipulating Grafana objects.
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
package com.grafana.foundation.grafanapyroscope;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonSetter;
import com.fasterxml.jackson.annotation.Nulls;
import com.grafana.foundation.dashboard.DataSourceRef;
public class Dataquery implements com.grafana.foundation.cog.variants.Dataquery {
// Specifies the query label selectors.
@JsonProperty("labelSelector")
public String labelSelector;
// Specifies the query span selectors.
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty("spanSelector")
public List spanSelector;
// Specifies the type of profile to query.
@JsonProperty("profileTypeId")
public String profileTypeId;
// Allows to group the results.
@JsonSetter(nulls = Nulls.AS_EMPTY)
@JsonProperty("groupBy")
public List groupBy;
// Sets the maximum number of nodes in the flamegraph.
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty("maxNodes")
public Long maxNodes;
// A unique identifier for the query within the list of targets.
// In server side expressions, the refId is used as a variable name to identify results.
// By default, the UI will assign A->Z; however setting meaningful names may be useful.
@JsonProperty("refId")
public String refId;
// If hide is set to true, Grafana will filter out the response(s) associated with this query before returning it to the panel.
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty("hide")
public Boolean hide;
// Specify the query flavor
// TODO make this required and give it a default
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty("queryType")
public String queryType;
// For mixed data sources the selected datasource is on the query level.
// For non mixed scenarios this is undefined.
// TODO find a better way to do this ^ that's friendly to schema
// TODO this shouldn't be unknown but DataSourceRef | null
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty("datasource")
public DataSourceRef datasource;
public String toJSON() throws JsonProcessingException {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(this);
}
public static class Builder implements com.grafana.foundation.cog.Builder {
protected final Dataquery internal;
public Builder() {
this.internal = new Dataquery();
this.labelSelector("{}");
}
public Builder labelSelector(String labelSelector) {
this.internal.labelSelector = labelSelector;
return this;
}
public Builder spanSelector(List spanSelector) {
this.internal.spanSelector = spanSelector;
return this;
}
public Builder profileTypeId(String profileTypeId) {
this.internal.profileTypeId = profileTypeId;
return this;
}
public Builder groupBy(List groupBy) {
this.internal.groupBy = groupBy;
return this;
}
public Builder maxNodes(Long maxNodes) {
this.internal.maxNodes = maxNodes;
return this;
}
public Builder refId(String refId) {
this.internal.refId = refId;
return this;
}
public Builder hide(Boolean hide) {
this.internal.hide = hide;
return this;
}
public Builder queryType(String queryType) {
this.internal.queryType = queryType;
return this;
}
public Builder datasource(DataSourceRef datasource) {
this.internal.datasource = datasource;
return this;
}
public Dataquery build() {
return this.internal;
}
}
}