event_parameters table does not support multiple values
Description
In cases where we would like to send multi-values for a given parameter of an event, the event_parameters table has a primary key index that prevents this - PK(eventId, name).
A partial example of creating an event requiring multiple parameters would be something like:
In cases where we would like to send multi-values for a given parameter of an event, the event_parameters table has a primary key index that prevents this - PK(eventId, name).
A partial example of creating an event requiring multiple parameters would be something like:
$OPENNMS_HOME/bin/send-event.pl uei.opennms.org/alarms/situation
...
-p 'related-reductionKey uei.value1'
-p 'related-reductionKey uei.value2'
-p 'related-reductionKey uei.value3'