Kinetica   C#   API  Version 7.2.3.1
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 
17 {
21  public struct Options
22  {
24  public const string EXPRESSION = "expression";
25 
28  public const string FILEPATH = "filepath";
29 
47  public const string FORMAT = "format";
48 
50  public const string JSON = "json";
51 
53  public const string JSON_TRACE_EVENT = "json_trace_event";
54 
57  public const string JOB_ID = "job_id";
58 
60  public const string LIMIT = "limit";
61  } // end struct Options
62 
106  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
107 
111 
158  public ExportQueryMetricsRequest( IDictionary<string, string> options = null)
159  {
160  this.options = options ?? new Dictionary<string, string>();
161  } // end constructor
162 } // end class ExportQueryMetricsRequest
163 
168 {
172  public struct Info
173  {
176  public const string EXPORTED_FILES = "exported_files";
177 
180  public const string OUTPUT = "output";
181  } // end struct Info
182 
198  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
199 } // end class ExportQueryMetricsResponse
const string FORMAT
Specifies which format to export the metrics.
const string JSON
Generic JSON output.
const string LIMIT
Record limit per file for multi query export.
IDictionary< string, string > info
Additional information.
const string OUTPUT
Exported metrics if no other destination specified.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.exportQueryMetrics.
A set of results returned by Kinetica.exportQueryMetrics.
ExportQueryMetricsRequest(IDictionary< string, string > options=null)
Constructs an ExportQueryMetricsRequest object with the specified parameters.
ExportQueryMetricsRequest()
Constructs an ExportQueryMetricsRequest object with default parameters.
const string JSON_TRACE_EVENT
Chromium/Perfetto trace event format.
const string EXPORTED_FILES
Comma separated list of filenames exported if applicable.
const string EXPRESSION
Filter for multi query export.
IDictionary< string, string > options
Optional parameters.
const string JOB_ID
Export query metrics for the currently running job.
A set of string constants for the parameter options.
const string FILEPATH
Path to export target specified as a filename or existing directory.
A set of string constants for the parameter info.