Skip to content

Commit

Permalink
Update integration test references
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiklohmann committed Apr 26, 2024
1 parent 1a3959a commit ebb1e91
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
error: failed to infer fields to use for charting
= hint: either specify `x` and `y` as arguments explicitly, or none of them, and utilize the `select` operator
= usage: chart bar [-x|--x-axis <field>] [--position <position>] [-y|--y-axis <fields>]
= usage: chart bar [-x|--x-axis <field>] [--position <position>] [--x-axis-type <x_axis_type>] [--y-axis-type <y_axis_type>] [-y|--y-axis <fields>]
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"chart": "bar", "position": "grouped", "x": "id.orig_h", "y": "count"}
{"chart": "bar", "position": "grouped", "x": "id.orig_h", "x_axis_type": "linear", "y": "count", "y_axis_type": "linear"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"chart": "bar", "position": "grouped", "x": "id.orig_h", "y": "count"}
{"chart": "bar", "position": "grouped", "x": "id.orig_h", "x_axis_type": "linear", "y": "count", "y_axis_type": "linear"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"chart": "line", "position": "grouped", "x": "ts", "y": "orig_bytes"}
{"chart": "line", "position": "grouped", "x": "ts", "x_axis_type": "linear", "y": "orig_bytes", "y_axis_type": "linear"}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"chart": "line", "position": "grouped", "x": "ts", "y": "orig_bytes"}
{"chart": "line", "position": "grouped", "x": "ts", "x_axis_type": "linear", "y": "orig_bytes", "y_axis_type": "linear"}

0 comments on commit ebb1e91

Please sign in to comment.