Kinetica   C#   API  Version 7.2.3.0
ExportQueryMetrics.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 namespace kinetica
10 {
16  public class ExportQueryMetricsRequest : KineticaData
17  {
21  public struct Options
22  {
24  public const string EXPRESSION = "expression";
25 
28  public const string FILEPATH = "filepath";
29 
48  public const string FORMAT = "format";
49 
51  public const string JSON = "json";
52 
54  public const string JSON_TRACE_EVENT = "json_trace_event";
55 
58  public const string JOB_ID = "job_id";
59 
61  public const string LIMIT = "limit";
62  } // end struct Options
63 
108  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
109 
113 
161  public ExportQueryMetricsRequest( IDictionary<string, string> options = null)
162  {
163  this.options = options ?? new Dictionary<string, string>();
164  } // end constructor
165  } // end class ExportQueryMetricsRequest
166 
170  public class ExportQueryMetricsResponse : KineticaData
171  {
175  public struct Info
176  {
179  public const string EXPORTED_FILES = "exported_files";
180 
183  public const string OUTPUT = "output";
184  } // end struct Info
185 
201  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
202  } // end class ExportQueryMetricsResponse
203 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
const string FILEPATH
Path to export target specified as a filename or existing directory.
const string JOB_ID
Export query metrics for the currently running job
ExportQueryMetricsRequest(IDictionary< string, string > options=null)
Constructs an ExportQueryMetricsRequest object with the specified parameters.
const string FORMAT
Specifies which format to export the metrics.
const string JSON_TRACE_EVENT
Chromium/Perfetto trace event format
const string OUTPUT
Exported metrics if no other destination specified
ExportQueryMetricsRequest()
Constructs an ExportQueryMetricsRequest object with default parameters.
const string EXPRESSION
Filter for multi query export
IDictionary< string, string > info
Additional information.
const string EXPORTED_FILES
Comma separated list of filenames exported if applicable
const string JSON
Generic json output
const string LIMIT
Record limit per file for multi query export