Dataquery🔗
Definition🔗
class Dataquery(cogvariants.Dataquery):
alias: typing.Optional[str]
scenario_id: typing.Optional[testdata.TestDataQueryType]
string_input: typing.Optional[str]
stream: typing.Optional[testdata.StreamingQuery]
pulse_wave: typing.Optional[testdata.PulseWaveQuery]
sim: typing.Optional[testdata.SimulationQuery]
csv_wave: typing.Optional[list[testdata.CSVWave]]
labels: typing.Optional[str]
lines: typing.Optional[int]
level_column: typing.Optional[bool]
channel: typing.Optional[str]
nodes: typing.Optional[testdata.NodesQuery]
csv_file_name: typing.Optional[str]
csv_content: typing.Optional[str]
raw_frame_content: typing.Optional[str]
series_count: typing.Optional[int]
usa: typing.Optional[testdata.USAQuery]
error_type: typing.Optional[typing.Literal["server_panic", "frontend_exception", "frontend_observable"]]
span_count: typing.Optional[int]
points: typing.Optional[list[list[typing.Union[str, int]]]]
# Drop percentage (the chance we will lose a point 0-100)
drop_percent: typing.Optional[float]
flamegraph_diff: typing.Optional[bool]
# 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.
ref_id: str
# true if query is disabled (ie should not be returned to the dashboard)
# Note this does not always imply that the query should not be executed since
# the results from a hidden query may be used as the input to other queries (SSE etc)
hide: typing.Optional[bool]
# Specify the query flavor
# TODO make this required and give it a default
query_type: typing.Optional[str]
# 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
datasource: typing.Optional[object]
Methods🔗
to_json🔗
Converts this object into a representation that can easily be encoded to JSON.
from_json🔗
Builds this object from a JSON-decoded dict.