You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
argus accepts json payloads with non-unique object names:
e.g.
{"identifier" : "minimal0","data": {"mini":"mouse"},"ttl":300,"identifier" : "minimal1","data": {"mini":"mouse"},"ttl":600}
which is stored as (ignore ttl decreasing value):
{"identifier":"minimal1","data":{"mini":"mouse"},"ttl":578}
It replaces the value of the first occurrence with the value of the last occurrence of the name. The json syntax doesn't require unique identifiers. The json lint validator flags this as invalid json.
The text was updated successfully, but these errors were encountered:
argus accepts json payloads with non-unique object names:
e.g.
{"identifier" : "minimal0","data": {"mini":"mouse"},"ttl":300,"identifier" : "minimal1","data": {"mini":"mouse"},"ttl":600}
which is stored as (ignore ttl decreasing value):
{"identifier":"minimal1","data":{"mini":"mouse"},"ttl":578}
It replaces the value of the first occurrence with the value of the last occurrence of the name. The json syntax doesn't require unique identifiers. The json lint validator flags this as invalid json.
The text was updated successfully, but these errors were encountered: