Skip to content

Commit 569a951

Browse files
authored
#46: [Question] - How to send URL variables in backend URL ? (#47)
* #46: [Question] - How to send URL variables in backend URL ?
1 parent a385517 commit 569a951

File tree

4 files changed

+43
-1
lines changed

4 files changed

+43
-1
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,20 @@ If the `icon_index.json` has the following content:
149149
it is assumed that the files `java.png` and `star_trek.png` is existing in the `/assets/service_icons/` directory.
150150
___
151151

152+
### Tracing Drilldown
153+
154+
The service dependency graph plugin allows you to specify a backend URL for each drawn node.
155+
For this purpose the option 'Tracing Drilldown' can be used.
156+
Here you can specify a backend URL. An open and closed curly bracket `{}` is the placeholder for the selected node.
157+
Each node will get an arrow icon in the details view. This icon is a link to your backend, specified in the options.
158+
The curly brackets `{}` will be replaced with the selected node.
159+
160+
#### Example
161+
162+
`http://{}/my/awesome/path` will end up to `http://customers-service/my/awesome/path` when you select the `customers-service`.
163+
164+
___
165+
152166
### Found a bug? Have a question? Wanting to contribute?
153167

154168
Feel free to open up an issue. We will take care of you and provide as much help as needed. Any suggestions/contributions are being very much appreciated.

dist/Readme.md renamed to dist/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,20 @@ If the `icon_index.json` has the following content:
140140
it is assumed that the files `java.png` and `star_trek.png` is existing in the `/assets/service_icons/` directory.
141141
___
142142

143+
### Tracing Drilldown
144+
145+
The service dependency graph plugin allows you to specify a backend URL for each drawn node.
146+
For this purpose the option 'Tracing Drilldown' can be used.
147+
Here you can specify a backend URL. An open and closed curly bracket `{}` is the placeholder for the selected node.
148+
Each node will get an arrow icon in the details view. This icon is a link to your backend, specified in the options.
149+
The curly brackets `{}` will be replaced with the selected node.
150+
151+
#### Example
152+
153+
`http://{}/my/awesome/path` will end up to `http://customers-service/my/awesome/path` when you select the `customers-service`.
154+
155+
___
156+
143157
### Found a bug? Have a question? Wanting to contribute?
144158

145159
Feel free to open up an issue. We will take care of you and provide as much help as needed. Any suggestions/contributions are being very much appreciated.

src/Readme.md renamed to src/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,20 @@ If the `icon_index.json` has the following content:
140140
it is assumed that the files `java.png` and `star_trek.png` is existing in the `/assets/service_icons/` directory.
141141
___
142142

143+
### Tracing Drilldown
144+
145+
The service dependency graph plugin allows you to specify a backend URL for each drawn node.
146+
For this purpose the option 'Tracing Drilldown' can be used.
147+
Here you can specify a backend URL. An open and closed curly bracket `{}` is the placeholder for the selected node.
148+
Each node will get an arrow icon in the details view. This icon is a link to your backend, specified in the options.
149+
The curly brackets `{}` will be replaced with the selected node.
150+
151+
#### Example
152+
153+
`http://{}/my/awesome/path` will end up to `http://customers-service/my/awesome/path` when you select the `customers-service`.
154+
155+
___
156+
143157
### Found a bug? Have a question? Wanting to contribute?
144158

145159
Feel free to open up an issue. We will take care of you and provide as much help as needed. Any suggestions/contributions are being very much appreciated.

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = {
3737
new webpack.optimize.OccurrenceOrderPlugin(),
3838
new CopyWebpackPlugin([
3939
{ from: 'plugin.json', to: '.' },
40-
{ from: 'Readme.md', to: '.' },
40+
{ from: 'README.md', to: '.' },
4141
{ from: '../LICENSE', to: '.' },
4242
{ from: 'partials/*', to: '.' },
4343
{ from: 'img/*', to: '.' },

0 commit comments

Comments
 (0)