Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Wiki] Fix markdown links in multiple-backends.md #183

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[Wiki] Fix markdown links in multiple-backends.md
  • Loading branch information
ceciliahwang committed Nov 8, 2023
commit 045f1a93c97a05550dad4ebaf2c2435809441564
2 changes: 1 addition & 1 deletion wiki/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -1862,7 +1862,7 @@ public class <Filter>BroadcastFilter extends <Interface><Broadcast>BroadcastFilt
}
```

# <a name="status_monitoring"></a> Joynr Status Monitoring
# Joynr Status Monitoring

Joynr provides metrics to monitor the connectivity status of its connections which can be used to
detect invalid states and situations which require a restart of an instance. Currently,
Expand Down
14 changes: 7 additions & 7 deletions wiki/multiple-backends.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ override of the GBIDs selection in the cluster controller. The global capabiliti
identified by the first selected GBID performs the registration.

Please refer to the language specific developer guides for further details on the provider registration:
* Java: [Java Developer Guide](wiki/java.md#building-a-java-provider-application)
* C\+\+: [C++ Developer Guide](wiki/cplusplus.md#registering-provider)
* Javascript: [JavaScript Developer Guide](wiki/javascript.md#building-a-javascript-provider-application)
* Java: [Java Developer Guide](java.md#building-a-java-provider-application)
* C\+\+: [C++ Developer Guide](cplusplus.md#registering-provider)
* Javascript: [JavaScript Developer Guide](javascript.md#building-a-javascript-provider-application)

## (Global) Proxy creation (discovery) with multiple backends

Expand All @@ -91,9 +91,9 @@ The global lookup is performed by the CC via the GCD instance in the CC's defaul
To discover a provider only in selected backends and/or via different JDS instances, a list of GBIDs has to be selected at the proxy builder. The first selected GBID determines the GCD instance that will be used by the CC to perform the global lookup.

Please refer to the language specific developer guides for further details on the proxy creation:
* Java: [Java Developer Guide](wiki/java.md#building-a-java-consumer-application)
* C\+\+: [C++ Developer Guide](wiki/cplusplus.md#creating-a-proxy)
* Javascript: [JavaScript Developer Guide](wiki/javascript.md#building-a-proxy)
* Java: [Java Developer Guide](java.md#building-a-java-consumer-application)
* C\+\+: [C++ Developer Guide](cplusplus.md#creating-a-proxy)
* Javascript: [JavaScript Developer Guide](javascript.md#building-a-proxy)


## Mqtt Status Metrics for multiple backends (Java/JEE)
Expand All @@ -102,7 +102,7 @@ The joynr status metrics for MQTT (Java, JEE) are retrieved via the JoynrStatusM
There, you can call the method `getAllConnectionStatusMetrics()` or
`getConnectionStatusMetrics(gbid)` to retrieve up to two ConnectionStatusMetrics objects per GBID,
depending on whether separate sending and receiving connections are configured.
See [Java Developer Guide](java.md#status_monitoring) for more information.
See [Java Developer Guide](java.md#joynr-status-monitoring) for more information.

## Known limitations and issues of multiple backends support in joynr

Expand Down