Questions tagged [service-discovery]

Network protocols which allow automatic detection of devices and services offered by these devices on a computer network.

Service discovery protocols are network protocols which allow automatic detection of devices and services offered by these devices on a computer network. Service discovery requires a common language to allow software agents to make use of one another's services without the need for continuous user intervention.

Source: http://en.wikipedia.org/wiki/Service_discovery

618 questions
7
votes
2 answers

Internal error using Network Service Discovery in Android

During the first implementation of the NSDManager using the examples and the tutorial on the developer page , the application successfully started the discovery and found the devices. However now it seems to be broken... When the program is…
Mazze
  • 1,354
  • 4
  • 17
  • 35
6
votes
3 answers

prometheus dynamic metrics_path

Prometheus allows me to dynamically load targets with file_sd_config from a .json file like this #prometheus.yaml - job_name: 'kube-metrics' file_sd_configs: - files: - 'targets.json' [ { "labels": { "job": "kube-metrics" …
user3340372
6
votes
1 answer

How do I point ELB to domain defined by service discovery

I have service in AWS ECS and service discovery maintains domain records like web.local that points to tasks in that service. I would like Network Load Balancer to point at domain web.local instead of IP or Instance. I know when I create service I…
6
votes
2 answers

Kubernetes service discovery doesn't resolve service host on minikube

I'm trying to run two services with k8s running on minikube installation. So I have the sevice Foo and Bar, so when I'm accessing the service Foo it must trigger service Bar to get the data. Here is the deployment configuration for Foo…
Sergii Bishyr
  • 8,331
  • 6
  • 40
  • 69
6
votes
0 answers

Zookeeper in AWS ECS

I'm trying to launch a zookeeper cluster in AWS using Container Services. Using the base "zookeeper" docker image. There are two issues I'm currently having. 1) Zookeeper requires an "ZOO_MY_ID" variable to be set. When I run at home this variable…
6
votes
3 answers

Android O issues with WiFi Peer Discovery

I am developing an Android Application that employs WiFi (Direct) for service discovery and P2P peer discovery/connection. My development enviromment is as follows:- Android Studio 3.0 Beta 4 Build #AI-171.4304935, built on August 29, 2017 JRE:…
Hector
  • 4,016
  • 21
  • 112
  • 211
6
votes
1 answer

Should we run a Consul container in every Pod?

We run our stack on the Google Cloud Platform (hosted Kubernetes, GKE) and have a Consul cluster running outside of K8s (regular GCE instances). Several services running in K8s use Consul, mostly for it's CP K/V Store and advanced locking, not so…
tex
  • 2,051
  • 1
  • 23
  • 27
6
votes
3 answers

service discovery in docker without using consul

I'm new to docker and microservices. I've started to decompose my web-app into microservices and currently, I'm doing manual configuration. After some study, I came across docker swarm mode which allows service discovery. Also, I came across other…
prranay
  • 1,789
  • 5
  • 23
  • 33
6
votes
1 answer

Is there a way to discover other containers on a docker network using DNS?

I would like to be able to get a list of all containers running on the same docker network from within a docker container. As the built in docker DNS can give me the IP addresses if I have the hostnames, it seems like it should be able to just give…
nathanielobrown
  • 992
  • 7
  • 15
6
votes
1 answer

Looking for API Gateway Technology that call multiple microservices

In my company, we plan to migrate our back-end solution, which is a huge monolith, to a sexier microservices architecture. So far, we have benchmarked many technologies, and we will probably use the AWS infrastructure with AWS EC2 Container Services…
6
votes
1 answer

Service discovery in local network using WebSockets

I have a web application runing in a front-end web that connects through tcp WebSocket protocol to an Android device in the same local network through WiFi. Right now, the Android device sets up a WebSocket server (since most web browsers do not…
Alex
  • 1,449
  • 4
  • 18
  • 28
6
votes
2 answers

List Of Controllers And Classes In Asp.NET Web API

I want to access all of controllers in my web api. Let's say I have 2 controllers and 2 classes; Foo: string fooId string fooName Bar: string barId string barName Sample1Controller: Get(int fooId) Post([FromBody] Foo…
Melih Mucuk
  • 6,988
  • 6
  • 37
  • 56
6
votes
2 answers

WiFiDirect discoverServices keeps failing with error 3 (NO_SERVICE_REQUESTS)

I'm using WiFi P2P for network service discovery, and I'm following the instructions as outlined on the developer guide. Here's the relevant code in my service class: public void onCreate() { manager = (WifiP2pManager)…
6
votes
1 answer

service discovery with android smartphone and other devices

In my environment I have an Android smartphone and some other devices. The other devices are running linux. All devices are connected to a local network via Wifi. Now I want the Smartphone to recognize and discover the other devices in the network,…
Moonlit
  • 5,171
  • 14
  • 57
  • 95
5
votes
2 answers

Service Location Protocol (SLP) binding in Python

Is there a library for implementing a Service Location Protocol (SLP) client in Python?
sebastibe
  • 586
  • 3
  • 13