Skip to content

Commit b4de1da

Browse files
committed
Change how comment reference is imported and update docs.
1 parent 8f00ceb commit b4de1da

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

application/src/main/java/org/opentripplanner/apis/gtfs/GtfsApiParameters.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package org.opentripplanner.apis.gtfs;
22

33
import java.util.Collection;
4-
import org.opentripplanner.ext.actuator.MicrometerGraphQLInstrumentation;
54

65
/**
76
* GTFS API parameters. These parameters configure the behaviour of some aspects of the
@@ -12,7 +11,7 @@ public interface GtfsApiParameters {
1211
* Which HTTP headers or query parameters should be used as tags for performance metering in the
1312
* Actuator API.
1413
*
15-
* @see MicrometerGraphQLInstrumentation
14+
* @see org.opentripplanner.ext.actuator.MicrometerGraphQLInstrumentation
1615
*/
1716
Collection<String> tracingTags();
1817
}

application/src/main/java/org/opentripplanner/apis/transmodel/TransmodelAPIParameters.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package org.opentripplanner.apis.transmodel;
22

33
import java.util.Collection;
4-
import org.opentripplanner.ext.actuator.MicrometerGraphQLInstrumentation;
54

65
/**
76
* Transmodel API parameters. These parameters configure the behaviour of some aspects of the
@@ -16,7 +15,7 @@ public interface TransmodelAPIParameters {
1615
/**
1716
* Which HTTP headers should be used as tags for performance metering in the Actuator API
1817
*
19-
* @see MicrometerGraphQLInstrumentation
18+
* @see org.opentripplanner.ext.actuator.MicrometerGraphQLInstrumentation
2019
*/
2120
Collection<String> tracingHeaderTags();
2221

doc/user/RouterConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ A full list of them can be found in the [RouteRequest](RouteRequest.md).
3636
| [configVersion](#configVersion) | `string` | Deployment version of the *router-config.json*. | *Optional* | | 2.1 |
3737
| [flex](sandbox/Flex.md) | `object` | Configuration for flex routing. | *Optional* | | 2.1 |
3838
| gtfsApi | `object` | Configuration for the GTFS GraphQL API. | *Optional* | | 2.8 |
39-
|    [tracingTags](#gtfsApi_tracingTags) | `string[]` | Used to group requests when monitoring OTP. | *Optional* | | na |
39+
|    [tracingTags](#gtfsApi_tracingTags) | `string[]` | Used to group requests based on headers or query parameters when monitoring OTP. | *Optional* | | na |
4040
| [rideHailingServices](sandbox/RideHailing.md) | `object[]` | Configuration for interfaces to external ride hailing services like Uber. | *Optional* | | 2.3 |
4141
| [routingDefaults](RouteRequest.md) | `object` | The default parameters for the routing query. | *Optional* | | 2.0 |
4242
| [server](#server) | `object` | Configuration for router server. | *Optional* | | 2.4 |
@@ -106,7 +106,7 @@ Be aware that OTP uses the config embedded in the loaded graph if no new config
106106
**Since version:** `na`**Type:** `string[]`**Cardinality:** `Optional`
107107
**Path:** /gtfsApi
108108

109-
Used to group requests when monitoring OTP.
109+
Used to group requests based on headers or query parameters when monitoring OTP.
110110

111111
<h3 id="server">server</h3>
112112

0 commit comments

Comments
 (0)