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
  • CSV File
  • Import from Tags/Expressions
  1. Time Series & Stores
  2. Time Series
  3. Time Series in Monokot Server Administrator

Import & Export

PreviousGroup ActionNextInfluxDB Connectivity (Store)

Last updated 2 years ago

CSV File

Time series manager allows you to import (export) structure of groups and time series from (to) CSV file. Format of the CSV file is as follows:

  • Each field is enclosed in double quotes. If the field contains double quotes, then extra double quotes are inserted in front of them. For example, field "Mud" temperature, °C must be as follows """Mud"" temperature, °C"

  • Fields are separated by commas, e.g.: "Group1","TS_WaterLevel","Influx","Tag"

  • Each new set of fields starts with a new line.

  • The first line specifies the name of the fields (parameters) and must contain all the parameters used.

Description of fields used during export and import of the time series:

  • Series Group: contains path to the group which contains the time series. Names of the groups are separated by dots.

  • Series: contains the time series name.

  • Store: contains the store name associated with the time series.

  • Data Source Object Type: contains the data source type (Tag or Expression).

  • Data Source Group: contains path to the group which contains the data source. Names of the groups are separated by dots.

  • Data Source: contains the data source name.

  • Address: contains string representation of the address (ID) (in the format specified by the store).

  • Converter: contains string representation of the value converter (in the format specified for each type of the converter).

  • Deadband: contains value for the deadband.

  • Deadband Mode: contains deadband mode.

  • Sampling Mode: specifies the mode for presentation of continuous quantity (None, Discrete, Analog).

  • Sampling Delta Factor: specifies the factor (the real number) used for the values representation in the Analog mode.

  • Repeat Last Sample: specifies that the current sample must be cycled if data source doesn’t change.

  • Repeat Last Sample Factor: contains the factor (the real number) used for calculation of time interval in the cycling mode.

  • Comment: contains any custom text.

Import from Tags/Expressions

Time series manager allows you to import the structure of groups and time series from the tags/expressions available in the server. In this case the structure of groups and time series is created being equivalent to the structure of groups and tags/expressions where the data source for each time series will be a tag/expression which is the basis for this time series.

🐺