How to send Custom Field values to SYSLOG

Hello,

I want to create a feedback loop using SYSLOG towards my SIEM.
I managed to send the ticket subject , but i’m unable to send Custom Field
values.

I have the following code in the “Custom action commit code:”

my $ticket = $self->TicketObj;
RT->Logger->error($ticket->SubjectTag);
return 1;

How can i add specific Custom Field Values to the SYSLOG output?

View this message in context: http://requesttracker.8502.n7.nabble.com/How-to-send-Custom-Field-values-to-SYSLOG-tp61314.html

Allright … got it.
It was more obvious then expected!

RT->Logger->error($ticket->SubjectTag ." , ".
$ticket->FirstCustomFieldValue(‘generatorUri’));

View this message in context: http://requesttracker.8502.n7.nabble.com/How-to-send-Custom-Field-values-to-SYSLOG-tp61314p61315.html