Why is GeoEvent Service not counting In/Out events?

1962
3
02-22-2017 08:31 AM
MarkusStecker
New Contributor

I have the following small GeoEvent Service (version 10.5) setup:

  • an input connector which receives tcp messages from a socket
  • an output connector which writes the output to a csv-File

I have a self-written tcp client which sends the messages to the input connector. In the GeoEvent Monitor I can see that the input connector is counting the incoming events correctly. But the GeoEvent Service In/Out count is 0; also the Output Connector. In the log directory C:\Program Files\ArcGIS\Server\GeoEvent\data\log I can also found no helpful information.

Any ideas what's wrong with service or how can I force the logging to output some helpful information.

Best regards

- Markus

Tags (2)
0 Kudos
3 Replies
JakeSkinner
Esri Esteemed Contributor

Hi Markus,

You may want to try another TCP client.  For example, you can copy the below text into a text file and rename the extension to .bat:

@echo off
set TCP_PORT=5575
set JAVA_HOME=C:\Program Files\ArcGIS\Server\framework\runtime\jre

"%JAVA_HOME%\bin\java" -jar TCPServerApp.jar -p %TCP_PORT%

Double-click the .bat file to open a command prompt listening on port 5575.  You can use the GeoEvent Simulator to read a text file of the data to send to the CSV output.  If this is working, the issue is with the other TCP client.

MarkusStecker
New Contributor

Hm, after a reboot of the system (scheduled by our ServiceDesk) GeoEvent Server starts my Service runs without any problems.....

AliAjami-Bakhtyarvand
New Contributor II

I had this issue and I reboot the system and it works well.

Thank you.

0 Kudos