Monokot Server 1.x
  • What is Monokot Server?
  • Quickstart
  • 🐸Basics
    • Supported OS and Hardware
    • Installation
    • Licensing
    • OPC UA
      • UA TCP Endpoint
      • UA Settings
      • Client Certificates
      • Aliases
      • Access to Object Settings
      • Troubleshooting
    • Security Certififcate
    • Users & Roles
    • Administrator GUI
      • Event Log
      • Users in Monokot Server Administrator
      • Roles in Monokot Server Administrator
    • Startup Parameters
  • 🦊Tags & Devices
    • Devices
      • Diagnostics
      • Devices in the Monokot Server Administrator
    • Tags
      • Parameters
      • Change Trigger
      • Tags in Monokot Server Administrator
        • Go Online
        • Group Action
        • Import & Export
    • Modbus Connectivity
      • Parameters
      • Addressing
      • Diagnostics
    • Siemens Connectivity
      • Parameters
      • Addressing
      • Access to DBs area in S7-1200/S7-1500
    • IEC 60870-5-104 Connectivity
      • Parameters
      • Addressing
      • Time Conversion
      • Diagnostics and Commands
    • OPC UA Connectivity
      • Parameters
      • Addressing
      • Diagnostics
      • How to: Importing OPC UA items
      • How to: Pulling Security Certificate
    • InfluxDB Connectivity (Connector)
      • Parameters
      • Addressing
      • Query Result and Data Mapping
      • Diagnostics
      • How to: Configure for InfluxDB 2.x
    • SNMP Connectivity
      • Parameters
      • Addressing
      • UDP Considerations
  • 🐺Time Series & Stores
    • Stores
      • Backlog
      • Diagnostics
      • Stores in Monokot Server Administrator
    • Time Series
      • Parameters
      • Deadband
      • Sampling
      • Last Sample Repeat
      • Time Series in Monokot Server Administrator
        • Group Action
        • Import & Export
    • InfluxDB Connectivity (Store)
      • Parameters
      • Addressing
      • Data Structure
      • About Metadata
      • Diagnostics
      • How to: Configure for InfluxDB 2.x
    • PostgreSQL Connectivity
      • Parameters
      • Addressing
      • Database Design
      • Data Compression
    • REST Connectivity
      • Parameters
      • Addressing
      • Message Script
      • RestRequestMessage
      • DataContext
      • TimeSeries
  • 🐻Scripts
    • Overview
    • Expression
      • Parameters
      • Import & Export
      • Go Online
    • Programming Examples
      • How to: Calculate Arithmetic Mean
      • How to: DoNothing
      • How to: Writing to Tag
      • How to: Inverting Bits
      • How to: Execute SQL
      • How to: Run Ping
      • How to: Do Simulation
      • How to: String Formatting
      • How to: OPC UA Method
      • How to: Initialize Device Settings from File
    • API
      • Bundle
      • BundlePair
      • Context
      • DataMap
      • DataMapPair
      • DataTriggerInfo
      • Expression
      • MosCrypto
      • MosDirectories
      • MosFiles
      • MosOdbc
      • MosOdbcReader
      • MosProcess
      • MosProcessExecuteResult
      • MosText
      • MosUtils
      • ValueState
Powered by GitBook
On this page
  1. Time Series & Stores
  2. InfluxDB Connectivity (Store)

About Metadata

PreviousData StructureNextDiagnostics

Last updated 2 years ago

For better understanding of the parameters from the Advanced category let’s consider the time series shown in the picture below:

Note that for all time series specified data source and store are the same, but types of addresses and comments are different.

Case when default store parameters are used. After data source value changes request SELECT * FROM "timeseries"."autogen"."tssamples" GROUP BY "tsid" ORDER BY DESC LIMIT 1 will return the following result:

time

tsid

s

v

2019-09-25 23:12:41

MySeries.Series1

0

25.00

2019-09-25 23:12:41

MyCustomID

0

25.00

2019-09-25 23:12:41

22ePXYjPQ0GM/3iyM+Dii12+3n4=

0

25.00

Case when Add Time Series Comment to Tag parameter is True. After data source value changes the same request will return the following result:

time

tsid

tsc

s

v

2019-09-25 23:57:16

MySeries.Series1

S1 Comment

0

99.00

2019-09-25 23:57:16

MyCustomID

S3 Comment

0

99.00

2019-09-25 23:57:16

22ePXYjPQ0GM/3iyM+Dii12+3n4=

S2 Comment

0

99.00

Thus tsc tag will be added to the record metadata for each time series and it will contain time series comment.

Case when Add Time Series Path to Tag parameter is True. After data source value changes the same request will return the following result:

time

tsid

tsp

s

v

2019-09-26 00:09:58

MySeries.Series1

MySeries.Series1

0

117.00

2019-09-26 00:09:58

MyCustomID

MySeries.Series3

0

117.00

2019-09-26 00:09:58

22ePXYjPQ0GM/3iyM+Dii12+3n4=

MySeries.Series2

0

117.00

Thus tsp tag will be added to the record metadata for each time series and it will contain path to the series.

Case when Add Server UID to Tag parameter is True. After data source value changes the same request will return the following result:

time

tsid

su

s

v

2019-09-26 00:09:58

MySeries.Series1

CeSqAF5sGUqMJqdilungXg==

0

33.00

2019-09-26 00:09:58

MyCustomID

CeSqAF5sGUqMJqdilungXg==

0

33.00

2019-09-26 00:09:58

22ePXYjPQ0GM/3iyM+Dii12+3n4=

CeSqAF5sGUqMJqdilungXg==

0

33.00

Thus su tag will be added to the record metadata for each time series and it will contain unique server identifier in the format of Base64.

You can use different combinations of flags from the Advanced category in order to define several meta-tags.

🐺