Skip to content

Commit

Permalink
Merge pull request #15 from mattmahoneyrh/0.4.10-tag
Browse files Browse the repository at this point in the history
Help text change
  • Loading branch information
Guilherme Baufaker Rêgo authored Nov 7, 2018
2 parents dfd3233 + 714f456 commit 9212af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Usage Example:
```python
>>> from kiali import KialiClient
>>> client = KialiClient(host='kiali-url.com')
>>> client.graph_namespace(namespace='bookinfo')
>>> client.graph_namespaces()
{'timestamp': 1527163899, 'elements': {'nodes': [{'data': {'id': 'n2', 'service': 'details.bookinfo.svc.cluster.local', 'version': 'v1', 'rate': '0.998'}}, {'data': {'id': 'n1', 'service': 'productpage.bookinfo.svc.cluster.local', 'version': 'v1', 'rate': '1.000'}}, {'data': {'id': 'n5', 'service': 'ratings.bookinfo.svc.cluster.local', 'version': 'v1', 'rate': '0.667'}}, {'data': {'id': 'n7', 'service': 'reviews.bookinfo.svc.cluster.local', 'isGroup': 'version'}}, {'data': {'id': 'n3', 'parent': 'n7', 'service': 'reviews.bookinfo.svc.cluster.local', 'version': 'v1', 'rate': '0.333'}}, {'data': {'id': 'n4', 'parent': 'n7', 'service': 'reviews.bookinfo.svc.cluster.local', 'version': 'v2', 'rate': '0.334'}}, {'data': {'id': 'n6', 'parent': 'n7', 'service': 'reviews.bookinfo.svc.cluster.local', 'version': 'v3', 'rate': '0.333'}}, {'data': {'id': 'n0', 'service': 'unknown', 'version': 'unknown', 'isRoot': 'true'}}], 'edges': [{'data': {'id': 'e0', 'source': 'n0', 'target': 'n1', 'rate': '1.000', 'latency': '0.091'}}, {'data': {'id': 'e1', 'source': 'n1', 'target': 'n2', 'rate': '0.998', 'percentRate': '49.950', 'latency': '0.010'}}, {'data': {'id': 'e2', 'source': 'n1', 'target': 'n3', 'rate': '0.333', 'percentRate': '16.667', 'latency': '0.022'}}, {'data': {'id': 'e3', 'source': 'n1', 'target': 'n4', 'rate': '0.334', 'percentRate': '16.717', 'latency': '0.034'}}, {'data': {'id': 'e5', 'source': 'n1', 'target': 'n6', 'rate': '0.333', 'percentRate': '16.667', 'latency': '0.024'}}, {'data': {'id': 'e4', 'source': 'n4', 'target': 'n5', 'rate': '0.334', 'latency': '0.005'}}, {'data': {'id': 'e6', 'source': 'n6', 'target': 'n5', 'rate': '0.333', 'latency': '0.005'}}]}}
```

Expand Down

0 comments on commit 9212af8

Please sign in to comment.