Live Drilling
  • Introduction
  • FAQ
  • what's new
    • Latest releases
      • Wells 5
      • LiveRig 5
      • LiveRig 4
      • WITSML Store
    • Operations in Time by Depth Chart
    • Unit Sets
      • Per-Asset Units
      • Unit Conversion
      • Dashboard Configuration
      • Force Follow Asset Units
    • Well casing shoe schematic
    • Wells correlation
    • FFT spectrum
    • Pressure Tests
      • Configuration
      • Automated Standard Pressure Tests
      • Manual Pressure Test
      • LOT/FIT
    • Rig State detection
    • BOP Schematic
      • BOP status register
    • Signal Processing
      • Moving Average
  • Data Flow
    • Introduction
    • Data Ingestion
    • Data Normalization
      • Clock Synchronization
      • Normalized events schema
      • Data indexes and enrichment
      • Unit conversion
      • Auto-Switch
  • Physical Models
    • Introduction
      • Structure of the functions
      • Validation
    • General Equations
      • Static Data Dependencies
      • Pipes Functions
    • Trajectory
      • Introduction
      • Static Data Dependencies
      • Pipes Functions
    • Hydraulic
      • Introduction
      • Static Data Dependencies
      • Pipes Functions
    • Torque and Drag
      • Introduction
      • Static Data Dependencies
      • Pipes Functions
    • Hole Cleaning
      • Introduction
      • Static Data Dependencies
      • Pipes Functions
    • Surge and Swab
      • Introduction
      • Static Data Dependencies
      • Pipes Functions
    • Thermal
      • Introduction
    • Volume Tracker
      • Introduction
      • Pipes Functions
  • Basic Features
    • Charts
      • Channels Charts
        • Temporal Channels Chart
        • Channel Value Chart
        • Depth Channels Chart
        • Data navigation
          • Span Control
      • Rig Allocation Gantt Chart
    • Unit sets
      • Configuration changes on unit sets
      • Depth unit changes
      • Personal units sets
    • Permission schema
    • Import/Export Well
    • Add-ons
  • Static Data
    • Assets
      • Assets Structure
    • Well
      • Introduction
      • Well Schema
      • Well Units
      • Regions, fields and countries
      • Well Design Overview
      • Objectives
    • Intervention
      • Introduction
      • Intervention Schema
      • Intervention Types
      • Scenarios
      • Runs
      • Completion and Abandonment
      • Drilling Section Schema
    • Rig
      • Introduction
      • Rig Schema
      • Physical models configuration
    • Pipes functions
    • REST API Examples
  • Administration
    • High Frequency Data
      • WITSML Null Values
      • Unit Management Tools
      • WITS Custom Mapping
    • Data Normalization
      • Data Management
        • Event Settings
        • Channels Management
      • Data normalization templates
      • Data normalization templates prioritization
      • Auto-Switch
    • Standard Identifiers
    • Static Data
      • Regions, fields and countries
      • Intervention Types
  • LiveRig Collector
    • Introduction
    • Getting Started
    • Connecting to Intelie Live
    • Security
    • Local data storage
    • Data transmission and recovery
    • Monitoring
    • Remote Control
      • APIs
        • /testSourceEndpoint
        • /storeConfiguration
        • /getFromStore
        • /backlog-sync
      • Sources
        • MQTT Topics
        • OPC Requests
        • WITSML Backlog Sync
        • WITSML Object Explorer
        • WITSML Requests
      • Properties
    • HA Deployment
    • Protocols
      • WITSML
      • WITS
      • OPC-DA
      • OPC-UA
      • MODBUS
      • MQTT
      • CSV
      • RAW
    • Protocol conversion
    • Configuration
      • liverig.properties
      • sources.xml
      • store.json
      • modbus.json
      • mqtt.json
      • Configuring an OPC-UA source
      • Multiple event types for WITSML sources
      • Certificate-based authentication for WITSML HTTPS sources
    • LiveRig Collector Appliance
    • Command line Interface (CLI)
  • LIVE EDGE
    • Collector Reader
  • Integrations
    • Introduction
    • WITSML Store
    • REST Output
    • REST Input
    • WellView
    • OpenWells
    • Python
  • DEVELOPER
    • Identified Curves
    • Hidden Units
  • DEPRECATED
    • WITSML Output
    • LiveRig 3.x / 2.x
      • 3.5.0
      • 3.4.0
      • 3.3.0
      • 3.2.0
      • 3.1.0
      • 3.0.0
      • 2.29.0
Powered by GitBook
On this page

Was this helpful?

  1. DEPRECATED

WITSML Output

Integration to expose your local and aggregated data as WITSML objects

PreviousHidden UnitsNextLiveRig 3.x / 2.x

Last updated 2 years ago

Was this helpful?

WITSML Output is still delivered built-in in the Wells plugin but it is deprecated. For a more complete bundle check out .

Another codebase containing improvements was launched as another plugin called Generic WITSML Output at but is not being actively developed.

Characteristics

  • Provides a secure WITSML store server using SOAP protocol in Intelie Live

  • WITSML 1.3.1.1 and 1.4.1.1. available

  • GetFromStore function to list:

    • well, wellbore, log, message, tubular, wbGeometry, mudLog, and trajectory objects

    • Some examples

      • for specific objects

      • for merge objects by type

      • for filtered indexes in a specific period of time or range

  • Raw objects

    • log

    • message

    • trajectory

    • tubular

    • wbGeometry

    • mudLog

  • Normalized artificial objects

    • log

      • based:

        • date time or measured depth indexes

        • selected mnemonics(defined in Channels Management functionality)

  • Independent authentication from Intelie Live with multiple users

This configuration follows the following model below:

{
  "endpoint": "<enpoint_url>",
  "event_limit": 1000,
  "enableForOutput": true,
  "timestamp_mode": "adjusted",
  "wells": [
    {
      "name": "well name 1",
      "wellbores": [
        {
          "name": "wellbore 1",
          "objects": [
            {
              "type": "type",
              "dataType": "dataType",
              "name": "name",
              "eventType": "eventType",
              "filter": "filter",
              "curveMap": {
                "curve 1": "",
                "curve 2": "renamed curve 2"
              },
              "includeExtra": true,
              "allChannels": false
            },
            ...
          ]
        },
        ...
      ]
    }
  ]
}

Main Parameters

Parameters

Description

Required

Type

Default Value

Possible Values

endpoint

the endpoint URL that will be provided in Intelie Live

yes

string

http://127.0.0.1:<port>/<path>

event_limit

number of max events used for this pipes query

no

positive number

100.000

timestamp_mode

timestamp source for curves

yes

string

source, adjusted, capture, live

Timestamp Mode values

  • source - timestamp comes from WITSML data source

  • adjusted - timestamp comes from WITSML data source plus adjustment from capture

  • capture - timestamp comes from capture server(liverig-collector)

  • live - timestamp comes from live events.

Object Parameters

Parameters

Description

Required

Type

Default Value

Possible Values

type

witsml object type

yes

string

log, trajectory, message

dataType

the specific data type

yes

string

raw, normalized

name

the witsml object name. The uid will be generated using this name.

yes

string

*

eventType

the same event represented by a rig or well.

yes

string

*

filter

pipes filter used to a specific object

no

string

liverig__object->uid:log-uid-1

indexType

the object index type(useful for log objects)

only for log objects

string

date time, measured depth, vertical depth

includeExtra

includes extra info when necessary

no

boolean

false

true, false

curveMap

filtered curves that will be showed. It is possible to change channel name.

no

json

{

"MDIA": "",

"MTIA": "", "MTOA": "MTOA_Renamed"

}

allChannels

useful to show all channels

no

boolean

true

true, false

Complete WITSML data output example

{
  "endpoint": "http://127.0.0.1:9990/witsml/intelie",
  "event_limit": 1000,
  "enableForOutput": true,
  "timestamp_mode": "adjusted",
  "wells": [
    {
      "name": "well 1",
      "wellbores": [
        {
          "name": "wellbore 1",
          "objects": [
            {
              "type": "trajectory",
              "dataType": "raw",
              "name": "ns01 Raw Trajectory Object",
              "eventType": "raw_ns01",
              "filter": "liverig__object->object:trajectory"
            },
            {
              "type": "log",
              "dataType": "raw",
              "name": "NS01 Raw Log Object",
              "eventType": "raw_ns01",
              "filter": "liverig__object->name:log-name-1"
            },
            {
              "type": "log",
              "dataType": "normalized",
              "name": "NS01 Normalized Log Object",
              "eventType": "ns01",
              "filter": "index_type:\"measured depth\"",
              "indexType": "measured depth",
              "includeExtra": true
            },
            {
              "type": "log",
              "dataType": "normalized",
              "name": "NS01 Normalized Filtered Log Object",
              "eventType": "ns01",
              "indexType": "measured depth",
              "includeExtra": false,
              "curveMap": {
                "MDIA": "",
                "MFIA": "",
                "MFOA": "",
                "MFOP": "",
                "MTIA": "",
                "MTOA": "MTOA Renamed"
              },
              "allChannels": false
            },
            {
              "type": "log",
              "dataType": "normalized",
              "name": "NS01 Normalized Vertical Depth Filtered Log Object",
              "eventType": "ns01",
              "filter": "liverig__object->name:log-name-1"
              "indexType": "vertical depth",
              "includeExtra": true,
              "curveMap": {
                "MDIA": "",
                "MFIA": "MFIA Renamed"
              },
              "allChannels": false
            }
          ]
        },
        {
          "name": "wellbore 2",
          "objects": [
            {
              "type": "trajectory",
              "dataType": "raw",
              "name": "NS02 from ns01 Raw Trajectory Object",
              "eventType": "raw_ns01"
            },
            {
              "type": "log",
              "dataType": "normalized",
              "name": "NS01 Normalized Log Object",
              "eventType": "ns01"
            },
            {
              "type": "log",
              "dataType": "normalized",
              "name": "NS01 Extra Normalized Filtered Log Object",
              "eventType": "ns01"
              "curveMap": {
                "Blender Asset ID": "",
                "BLENDER AUGER 2 RPM": "",
                "BLENDER AUGER 4 RPM": "BA4RPM Extra"
              },
              "includeExtra": true,
              "allChannels": false
            },
            {
              "type": "log",
              "dataType": "normalized",
              "name": "NS01 Normalized Filtered Log Object",
              "eventType": "ns01"
              "curveMap": {
                "Blender Asset ID": "",
                "BLENDER AUGER 2 RPM": "",
                "BLENDER AUGER 4 RPM": "BA4RPM"
              },
              "includeExtra": false,
              "allChannels": false
            },
            {
              "type": "log",
              "dataType": "normalized",
              "name": "NS01 Measured Depth Normalized Log Object",
              "eventType": "ns02",
              "indexType": "measured depth"
            }
          ]
        }
      ]
    },
    {
      "event_type": "ns01",
      "name": "well 2"
    }
  ],
  "users": {},
  "anonymous": true
}

Pipes query filters(see ). There are a lot of possibilities using pipes query to filter objects.

pipes filters documentation
WITSML Store
https://marketplace.intelie.com/artifact/plugin-generic-witsml-output
Integration built-in in standard Wells plugin up to v5 series
Identifying the plugin which delivers the integration type