Questions tagged [eclipse-ditto]

Eclipse Ditto is a framework for providing the "Digital Twin" pattern for IoT applications.

Ditto mirrors physical devices as digital representations in the cloud. As a web or mobile app developer you can interact with those digital twins as if they were any other web service, that's why we also like to speak about enabling "device as a service".

A few of the main features are access control, a search over all twin data and push notifications. There are various APIs in order to interact with the devices: a REST, WebSocket, AMQP and MQTT API. Ditto is designed with scalability in mind, so managing millions of twins is possible.

The benefit when developing IoT applications or solutions is that no own backend must be implemented, the focus can be set on the use case: for example device integration and app or web UI implementation.

Ditto is already used in production at Bosch and shows that digital twins are becoming reality.

69 questions
0
votes
1 answer

How to count the total number of things in Eclipse Ditto?

I need to count the total number of things created in the Eclipse Ditto Digital Twin Framework.
apoorva
  • 31
  • 4
0
votes
0 answers

How to enable Prometheus in eclipse-ditto running on kubernetes

Earlier I was using Eclipse-ditto in local and was getting metrics using following setup.I have included Prometheus as a service right now as given below. prometheus: image: prom/prometheus:v2.33.1 container_name: prometheus restart:…
0
votes
1 answer

How to send Eclipse ditto metrics to ElasticSearch

I am running eclipse ditto on localhost:8080 and in every service, I have set environment: - SYSTEM_METRICS_ENABLED=true - PROMETHEUS_ENABLED=true - PROMETHEUS_HOSTNAME=0.0.0.0 - PROMETHEUS_PORT=9095 also, I included Prometheus in same…
0
votes
1 answer

Cloud2Edge installation

I have been trying to install the package eclipse cloud2edge on wsl2 with no luck so far. I have followed the steps mentionned in the official web site, but when i try installling it using the helm chart with the debug flag it's stuck at : service…
0
votes
1 answer

Could not get Eclipse-ditto metrics in localhost:9095

I want the eclipse ditto metrics to be viewed in localhost:9095. In order to get I did things: image: docker.io/eclipse/ditto-things:${DITTO_VERSION:-latest} mem_limit: 512m restart: always networks: default: aliases: …
0
votes
1 answer

Failed to get log files via volume in Eclipse Ditto

I was trying to save the logs of ditto locally and for that, I edited the ditto/deployment/docker/docker-compose.yml.The content of the same is: ... gateway: image: docker.io/eclipse/ditto-gateway:${DITTO_VERSION:-latest} mem_limit:…
0
votes
0 answers

How I can use MQTT and Kafka to connect them to Eclipse Ditto?

I have a question about connection between Eclipse Ditto, MQTT and Kafka. It is possible to received data on Ditto via MQTT broker and then send this data on a kafka topic? I have created a connection source on Ditto to consume message from broker…
0
votes
1 answer

How can I use mqtt to connect hono to ditto?

Is it possible to use mqtt to send data from a device (arduino in my case) to hono and then send these data to ditto via mqtt? in my case I have arduino that send a value via mqtt to hono, but now i need the data to be received by ditto. For the…
0
votes
1 answer

Connecting Eclipse Ditto and Eclipse Hono

I am trying to do the steps stated in https://www.eclipse.org/ditto/2018-05-02-connecting-ditto-hono.html#create-a-connection-to-hono to connect Ditto and Hono. I have tested Ditto and Hono with the steps explained "Hello World" for Ditto and…
0
votes
1 answer

Ditto ThingTooLargeException

I am using ditto and while creating some things I obtain this error org.eclipse.ditto.things.model.ThingTooLargeException I searched on ditto source code and found only this…
Mex
  • 196
  • 4
  • 16
0
votes
1 answer

Websocket to apache kafka in eclipse Ditto

I am having a problem with eclipse ditto. I want to send a command to update the features of a digital twins using a websocket (in python) and I want to read the new features in an apache kafka topic. This is my websocket: import asyncio import…
Lurù
  • 31
  • 5
0
votes
2 answers

How to connect apache kafka to eclipse ditto?

I'm trying to connect apache kafka 2.x to eclipse ditto in locally with default configurations. I'm following this https://www.eclipse.org/ditto/connectivity-protocol-bindings-kafka2.html, so I tried to create a new connection with a POST request,…
Lurù
  • 31
  • 5
0
votes
1 answer

Eclipse Ditto bad gateway

I'm using Eclipse Ditto's sandbox for a university project and it has given me as result 502 Bad Gateway for days (almost a week) for each command I tried and I can't do basically anything in the dashboard. Are Eclipse Ditto's servers Down or is my…
fabio
  • 1
  • 2
0
votes
1 answer

Eclipse DItto Errors in policy definition

I've got some problems in defining a policy in Eclipse Ditto's sandbox; here are some screenshots of the errors I get. I've followed the documentation for naming the policy-Id and I've not defined the If-Match and IfNone-Match clauses since they're…
fabio
  • 1
  • 2
0
votes
0 answers

Unable to create neather policies or things on Eclipse Ditto local version

i was able to run successfully local Eclipse Ditto version using docker container latest version downloaded from https://github.com/eclipse/ditto/tree/master/deployment/docker. Following the tutorial I was training first to create a new policy using…