Questions tagged [azure-iot-edge]

Use this tag for questions related to Azure IoT Edge, which is an Internet of Things (IoT) service that builds on top of IoT Hub.

656 questions
1
vote
2 answers

Change 'createOptions' of edgeAgent and edgeHub using code

Is there a way to make changes to the createOptions of the "edgeHub" module using code? I know how to do it using the Azure Portal: Set Modules -> Runtime Settings -> CreateOptions Is there an API that I could use for that? Example: The AzureCLI…
Florian Boehmak
  • 431
  • 4
  • 20
1
vote
1 answer

Azure IoT Hub monitoring usage and history

I recently started a project with Azure IoT Edge with the IoT Hub Free Tier so I'm a total beginner. I set up a device sensor, a module and I am sucessfully sending data to my module and IoT Hub. I can monitor the messages sent from the sensor with…
milo1000
  • 13
  • 3
1
vote
2 answers

How can I connect a real device only accepting MQTT / TCP connection to azure IoT hub?

Context: I have a real device that only uses MQTT and only accepts a TCP connection (The only things I can modify in the real device are the cloud address, cloud ID (username), cloud password, machine cloud ID and cloud port). Question: How can I…
1
vote
1 answer

How to configure individual modules for 100+ edge devices

I have 100+ edge devices with multiple modules, managed by an automatic deployment. Each device has it's own characteristics, like max allowed values. We also have an external module which requires account credentials (id/password/certificate/key)…
William
  • 68
  • 5
1
vote
1 answer

Azure iot edge: Solution does not build and push for arm32v7 platform in VSCode

I created an out the box template c# edge solution in VScode using the IoT tools but get the following error when trying to build and push the solution: Step 4/12 : RUN dotnet restore ---> Running in 22c6f8ceb80c A fatal error occurred, the folder…
1
vote
1 answer

azure iot edge build failing when target architecture is arm32v7 (in ubuntu)

Im using this example to develop & understand iot edge modules. Im using ubuntu OS. At the end if the target architecture is amd64 when i click on deployment.templete.json and click on build and push iotedge solution its working perfectly. But if…
Ein2012
  • 1,103
  • 1
  • 13
  • 33
1
vote
0 answers

How to get NvidiaDeepstreamSDK iotedge module working on jetson nano?

I've had issues setting up the DeepstreamSdk IoTedge module on the jetson nano for the last week and I cannot get past it. I've installed IoTedge runtime and all the necessities for IoT edge to run. It runs perfectly including other modules like the…
1
vote
1 answer

Azure OPC Publisher says "no job received" when trying to write OPC UA data to cloud

im trying to follow those tutorials: https://sandervandevelde.wordpress.com/2018/11/06/getting-started-with-opc-ua-on-azure-iot-edge/ and https://learn.microsoft.com/en-us/azure/iot-accelerators/howto-opc-publisher-run to bring data from an opc-ua…
jmundorf
  • 47
  • 1
  • 7
1
vote
1 answer

Azure Iot solution in VS2019 working only for first run after system restart

Im using windows 10 Pro running vs2019. I have tried the default example in the docs. Im using azure container registry. I have noticed that the solution runs properly only for first time i restart my system. If i run my solution for the second time…
Ein2012
  • 1,103
  • 1
  • 13
  • 33
1
vote
1 answer

IotEdge module twin update gets reverted

Updating a module twin results in a new 'unknown' update with the old values. Steps to reproduce: create an automatic deployment based on a tag. deployment.template.json contains "mymodule": { "properties.desired": { "telemetryTakeCount":…
William
  • 68
  • 5
1
vote
1 answer

Cannot log into application insights from Azure IoT Edge module

I've a sample AzureIotEdgeApp with one IotEdgeModule (C#). In that one, I've a single file (program.cs) and I'm writing some logging information to application insights. But it never writes. I also have a launchSettings.json where I've an…
1
vote
1 answer

Azure IoT Edge Module certificate handling

I'm deploying Edge Modules for protocol translation and using certificates to secure communication. The certificates are currently placed inside the module container which would require the modules to be rebuilt and redeployed when certs change. I'm…
1
vote
1 answer

How to send operational log data from Azure IoT Edge runtime device?

We have an Edge device running Azure IoT Edge Runtime. The device is sending telemetry data from sensors to IoT Hub but all operational logging is done to logs on the device. What is the recommended way to send operational log data, i.e. not the…
Mathias Rönnlund
  • 4,078
  • 7
  • 43
  • 96
1
vote
2 answers

How do I create an IoT Edge Module for an existing docker container from Azure Cognitive Services?

I currently have public preview access for the Azure Cognitive Services for Speech-To-Text as a docker container. This allows the container to be run on an IoT Edge device, rather than accessing the cloud to perform this service. This public…
Tam Bui
  • 2,940
  • 2
  • 18
  • 27
1
vote
1 answer

Is it possible to start the various iot-edge modules one by one sequentially? If so, how to do it?

Is it possible to start the various iot-edge modules one by one sequentially? If so, how to do it?