# Register into Service Discovery

IndustryApps use Netflix Eureka as the service discovery system

## Option 1: Eureka Rest Operations

You can use Eureka REST operations as given here <https://github.com/Netflix/eureka/wiki/Eureka-REST-operations> in your app

Please go through "[Keep your application sync with application registry](https://docs.industryapps.net/connect-to-the-platform)"

## Option 2: Pre-built side car

You can download a pre-built side car from below

{% file src="<https://3706867246-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0tGo33otNRgIhFn6lpgU%2Fuploads%2FooTha55qLcGU0uJCArPu%2FdiscoveryClientSideCar-1.0.0.zip?alt=media&token=dd4e9561-95ad-47f4-a72b-fa69c396a0f2>" %}

```
java -jar discoveryClientSideCar-1.0.0.jar --appCode=<<Application Code>> --statusPageUrl=https://484c-14-142-179-182.ngrok.io/ --hostname=484c-14-142-179-182.ngrok.io
```

appCode is your App Code as we noted previously

&#x20;statusPageUrl is your app’s landing page URL / URL for status check&#x20;

Hostname is your hostname running your app

Please refer below screenshots for executing sidecar

![](https://3706867246-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0tGo33otNRgIhFn6lpgU%2Fuploads%2Ft2AzKrZtUSqqQrsUV9Uq%2Fimage.png?alt=media\&token=9b001684-ebc3-452c-8936-0f951f458240)

After register using sidecar you will be getting  registration status as 204

![](https://3706867246-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0tGo33otNRgIhFn6lpgU%2Fuploads%2FiiDmgtk75lbN1wN0L7Cs%2Fimage.png?alt=media\&token=6ba58ddd-ee76-4802-b710-c900c7e4e300)

After service registry IndustryApp platform can show new app inside Platform

You can check the status of your app using the following URL [https://servicediscovery.uat.industryapps.net/eureka/apps/\<your\_app\_code](https://servicediscovery.uat.industryapps.net/eureka/apps/%3Cyour_app_code)>

Check Status is "UP"

![](https://3706867246-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0tGo33otNRgIhFn6lpgU%2Fuploads%2F1j9B3IszisNCa8zvSfbc%2Fimage.png?alt=media\&token=962f089a-ca07-4cd3-bd4f-40a60b580766)
