In my domain model diagram, I have a class Area that is defined by multiple sensors (eg:temperature sensors), but each sensor can be on one area at a time. As I can move the sensors, I can change the sensors to another area, and in the ultimate case delete the area (because an area needs sensors to exist).
Knowing, Area has already and attribute data:Data. How can i keep track of previous Areas?
eg:
time=0 - Area A has sensors 1,2,3
time = 10- Area A has sensors 2,3
time =20- Area A has sensors 3
I want to be able to go to previous states of the instance, and check which sensors belonged to the area at a certain time t.
Current diagram:

You can use a qualified association with the timestamp as qualifier. This is shown with a small rectangle at the
Areaend of the association with the textt:Timestampin it.PS: In your diagram an
Areacan exist withoutSensors, since the multiplicity is0..*. You should change it to1..*if you want this semantics.