Changed metric- and tag-names to match best-practise naminc-convention
This commit is contained in:
parent
1e37f35e38
commit
39350932a4
@ -4,24 +4,24 @@ const {Point} = require("@influxdata/influxdb-client");
|
|||||||
|
|
||||||
/** Keys to always use as tags */
|
/** Keys to always use as tags */
|
||||||
const TAG_LIST = [
|
const TAG_LIST = [
|
||||||
"srcMac",
|
"srcmac",
|
||||||
"dstMac",
|
"dstmac",
|
||||||
"bssid",
|
"bssid",
|
||||||
"frequency",
|
"frequency",
|
||||||
"flags",
|
"flags",
|
||||||
"packetType",
|
"packettype",
|
||||||
];
|
];
|
||||||
|
|
||||||
/** Measurement-name and corresponding field-key */
|
/** Measurement-name and corresponding field-key */
|
||||||
const MEASUREMENT_MAP = new Map([
|
const MEASUREMENT_MAP = new Map([
|
||||||
["Signal", "signal"],
|
["rfmon_signal_dbm", "signal"],
|
||||||
["PayloadSize", "payloadSize"],
|
["rfmon_payloadsize_bytes", "payloadSize"],
|
||||||
["DataRate", "dataRate"],
|
["rfmon_datarate_bytes", "dataRate"],
|
||||||
["SSID", "ssid"],
|
["rfmon_ssid_names", "ssid"],
|
||||||
["AuthenticationType", "authenticationType"],
|
["rfmon_authenticationtype_info", "authenticationType"],
|
||||||
["AssociationSuccess", "associationIsSuccessful"],
|
["rfmon_associationsuccess_bools", "associationIsSuccessful"],
|
||||||
["DisassociationReason", "disassociationReason"],
|
["rfmon_disassociationreason_info", "disassociationReason"],
|
||||||
["HandshakeStage", "handshakeStage"],
|
["rfmon_handshakestage_info", "handshakeStage"],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user