@tdengine/websocket
Version:
The websocket Node.js connector for TDengine. TDengine versions 3.3.2.0 and above are recommended to use this connector.
26 lines • 625 B
TypeScript
export interface SchemalessMessageInfo {
action: string;
args: SchemalessParamsInfo;
}
export interface SchemalessParamsInfo {
req_id?: number | undefined | null;
protocol: number;
ttl?: number;
precision: string;
data: string;
}
export declare enum Precision {
NOT_CONFIGURED = "",
HOURS = "h",
MINUTES = "m",
SECONDS = "s",
MILLI_SECONDS = "ms",
MICRO_SECONDS = "u",
NANO_SECONDS = "ns"
}
export declare enum SchemalessProto {
InfluxDBLineProtocol = 1,
OpenTSDBTelnetLineProtocol = 2,
OpenTSDBJsonFormatProtocol = 3
}
//# sourceMappingURL=wsProto.d.ts.map