Read data from OPC-UA Server

Hello everyone,

I'm trying to read data from an OPC-UA Server. OPC-UA communicates via TCP and my hope was that it would work with the standard TCP-plugin, but it doesn't

input {
    tcp {
       host => "localhost"
       port => 48030
       codec => line
       mode => "client"
    }
}
output {
    stdout{
        codec=>rubydebug
    }
}

Any idea how I can read data from OPC-UA Server?

I don't know OPC UA, but I'd assume that it doesn't send data to anyone that connects but expects to receive commands. The tcp input doesn't support that. You'll probably have to write a custom input plugin for this.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.