confused related to filed ...my web app made in python ..when i have to update new attribute from python i will just write alarm.attribut[attribute_name]=[attribute_value]...same thing i want to update from nifi ...for this i used invoke http processor and attribute end point in Remote url with PUT method
"https://localhost:8080/api/alarm/<alarm_id>/attributes"
and i have used two processors updateAttribute and AttributeTojson
i think i have done mistake in dynamic property of updateAttribute processor -
propertyname -attributes
propertyvalue - $.{alarm.attributes['attribute_name'] = 'attribute_value'} or ${alarm.attributes['attribute_name'] = 'attribute_value'}
and in AttributeTojson in Attribute List - id,attributes
please suggest me the right way of passing new attribute.
@stevenmatison
thanks