user21819272
user21819272

Reputation: 170

Is it possible to retrieve creation date & time of a key-value pair in etcd?

I would like to know if the etcd database stores the date and time of when a key-value pair were created. Additionally, I would also like to know if etcd stores such information about previous versions of a key-value pair as well.

I went through the etcd.io v5 document and tried to look for the solution. I was expecting to learn if etcd has any such features due to which the creation date & time of a pair is stored.

Upvotes: 0

Views: 555

Answers (1)

Ron
Ron

Reputation: 6621

Short answer is NO

etcd saves revisions as integers, but no timestamps on creation of a key.

Upvotes: 1

Related Questions