Skip to content

Commit f1d7281

Browse files
renovate[bot]trask
andauthored
chore(deps): update dependency markdownlint-cli to v0.46.0 (#2464)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Trask Stalnaker <[email protected]>
1 parent 5ee4253 commit f1d7281

File tree

5 files changed

+32
-32
lines changed

5 files changed

+32
-32
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ When implementing changes or new features:
6363
1. Follow all [Style Guide](../docs/style-guide.md) conventions and the Code Review Priorities above
6464
2. Run tests to ensure they still pass (use `./gradlew test` and `./gradlew integrationTest` as needed)
6565
3. **Always run `./gradlew spotlessApply`** after making code changes to ensure proper formatting
66-
4. Run markdown lint to ensure it still passes: `npx markdownlint-cli@0.45.0 -c .github/config/markdownlint.yml **/*.md`
66+
4. Run markdown lint to ensure it still passes: `npx markdownlint-cli@0.46.0 -c .github/config/markdownlint.yml **/*.md`

.github/workflows/reusable-markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414

1515
- name: Run markdownlint
1616
run: |
17-
npx markdownlint-cli@0.45.0 -c .github/config/markdownlint.yml **/*.md
17+
npx markdownlint-cli@0.46.0 -c .github/config/markdownlint.yml **/*.md

jmx-metrics/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ capable of being specified via the `otel.jmx.target.system` property as a comma-
7575
currently supported target systems are:
7676

7777
| `otel.jmx.target.system` |
78-
|--------------------------|
78+
| ------------------------ |
7979
| [`jvm`](./docs/target-systems/jvm.md) |
8080
| [`activemq`](./docs/target-systems/activemq.md) |
8181
| [`cassandra`](./docs/target-systems/cassandra.md) |
@@ -257,20 +257,20 @@ file contents can also be provided via stdin on startup when using `-config -` a
257257

258258
| Property | Required | Description |
259259
| ------------- | -------- | ----------- |
260-
| `otel.jmx.service.url` | **yes** | The service URL for the JMX RMI/JMXMP endpoint (generally of the form `service:jmx:rmi:///jndi/rmi://<host>:<port>/jmxrmi` or `service:jmx:jmxmp://<host>:<port>`).|
260+
| `otel.jmx.service.url` | **yes** | The service URL for the JMX RMI/JMXMP endpoint (generally of the form `service:jmx:rmi:///jndi/rmi://<host>:<port>/jmxrmi` or `service:jmx:jmxmp://<host>:<port>`). |
261261
| `otel.jmx.groovy.script` | if not using `otel.jmx.target.system` | The path for the desired Groovy script. |
262262
| `otel.jmx.target.system` | if not using `otel.jmx.groovy.script` | A comma-separated list of the supported target applications with built in Groovy scripts. |
263263
| `otel.jmx.interval.milliseconds` | no | How often, in milliseconds, the Groovy script should be run. Value will also be used for `otel.metric.export.interval`, if unset, to control asynchronous updates and metric exporting. 10000 by default. |
264264
| `otel.jmx.username` | no | Username for JMX authentication, if applicable. |
265265
| `otel.jmx.password` | no | Password for JMX authentication, if applicable. |
266266
| `otel.jmx.remote.profile` | no | Supported JMX remote profiles are TLS in combination with SASL profiles: SASL/PLAIN, SASL/DIGEST-MD5 and SASL/CRAM-MD5. Thus valid `jmxRemoteProfiles` values are: `SASL/PLAIN`, `SASL/DIGEST-MD5`, `SASL/CRAM-MD5`, `TLS SASL/PLAIN`, `TLS SASL/DIGEST-MD5` and `TLS SASL/CRAM-MD5`. |
267267
| `otel.jmx.realm` | no | The realm is required by profile SASL/DIGEST-MD5. |
268-
| `otel.metrics.exporter` | no | The type of metric exporter to use: (`otlp`, `prometheus`, `inmemory`, `logging`). `logging` by default. |
269-
| `otel.exporter.otlp.endpoint` | no | The otlp exporter endpoint to use, Required for `otlp`. |
270-
| `otel.exporter.otlp.headers` | no | Any headers to include in otlp exporter metric submissions. Of the form `header1=value1,header2=value2` |
271-
| `otel.exporter.otlp.timeout` | no | The otlp exporter request timeout (in milliseconds). Default is 1000. |
272-
| `otel.exporter.prometheus.host` | no | The prometheus collector server host. Default is `0.0.0.0`. |
273-
| `otel.exporter.prometheus.port` | no | The prometheus collector server port. Default is `9464`. |
268+
| `otel.metrics.exporter` | no | The type of metric exporter to use: (`otlp`, `prometheus`, `inmemory`, `logging`). `logging` by default. |
269+
| `otel.exporter.otlp.endpoint` | no | The otlp exporter endpoint to use, Required for `otlp`. |
270+
| `otel.exporter.otlp.headers` | no | Any headers to include in otlp exporter metric submissions. Of the form `header1=value1,header2=value2` |
271+
| `otel.exporter.otlp.timeout` | no | The otlp exporter request timeout (in milliseconds). Default is 1000. |
272+
| `otel.exporter.prometheus.host` | no | The prometheus collector server host. Default is `0.0.0.0`. |
273+
| `otel.exporter.prometheus.port` | no | The prometheus collector server port. Default is `9464`. |
274274
| `javax.net.ssl.keyStore` | no | The key store path is required if client authentication is enabled on the target JVM. |
275275
| `javax.net.ssl.keyStorePassword` | no | The key store file password if required. |
276276
| `javax.net.ssl.keyStoreType` | no | The key store type. |

jmx-scraper/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Supported values for `otel.jmx.target.system` and support for `otel.jmx.target.s
7373
| `activemq` | Apache ActiveMQ | [`activemq.yaml`](src/main/resources/activemq.yaml) | |
7474
| `cassandra` | Apache Cassandra | [`cassandra.yaml`](src/main/resources/cassandra.yaml) | |
7575
| `hbase` | Apache HBase | [`hbase.yaml`](src/main/resources/hbase.yaml) | |
76-
| `hadoop` | Apache Hadoop | [`hadoop.yaml`](src/main/resources/hadoop.yaml) | [`hadoop.yaml`](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/jmx-metrics/library/src/main/resources/jmx/rules/hadoop.yaml) ([doc](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/jmx-metrics/library/hadoop.md)) |
76+
| `hadoop` | Apache Hadoop | [`hadoop.yaml`](src/main/resources/hadoop.yaml) | [`hadoop.yaml`](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/jmx-metrics/library/src/main/resources/jmx/rules/hadoop.yaml) ([doc](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/jmx-metrics/library/hadoop.md)) |
7777
| `jetty` | Eclipse Jetty | [`jetty.yaml`](src/main/resources/jetty.yaml) | [`jetty.yaml`](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/jmx-metrics/library/src/main/resources/jmx/rules/jetty.yaml) ([doc](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/jmx-metrics/library/jetty.md)) |
7878
| `jvm` | JVM runtime metrics | [`jvm.yaml`](src/main/resources/jvm.yaml) | [`jvm.yaml`](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/jmx-metrics/library/src/main/resources/jmx/rules/jvm.yaml) ([doc](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/jmx-metrics/library/jvm.md)) |
7979
| `kafka` | Apache Kafka | [`kafka.yaml`](src/main/resources/kafka.yaml) | |

maven-extension/README.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -105,39 +105,39 @@ Distributed trace of a Jenkins pipeline invoking a Maven build instrumented with
105105

106106
In addition to the span attributes captured on every Maven plugin goal execution as described above:
107107

108-
| Span attribute | Type | Description |
109-
|----------------------------------------|--------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
110-
| `http.method` | string | `POST` |
111-
| `http.url` | string | Base URL of the uploaded artifact `${maven.build.repository.url}/${groupId}/${artifactId}/${version}` where the `.` of `${groupId}` are replaced by `/` |
112-
| `maven.build.repository.id` | string | ID of the Maven repository to which the artifact is deployed. See [Maven POM reference / Repository](https://maven.apache.org/pom.html#Repository) |
113-
| `maven.build.repository.url` | string | URL of the Maven repository to which the artifact is deployed. See [Maven POM reference / Repository](https://maven.apache.org/pom.html#Repository) |
114-
| `peer.service` | string | Maven repository hostname deduced from the Repository URL |
108+
| Span attribute | Type | Description |
109+
|----------------------------------------|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------- --|
110+
| `http.method` | string | `POST` |
111+
| `http.url` | string | Base URL of the uploaded artifact `${maven.build.repository.url}/${groupId}/${artifactId}/${version}` where the `.` of `${groupId}` are replaced by `/` |
112+
| `maven.build.repository.id` | string | ID of the Maven repository to which the artifact is deployed. See [Maven POM reference / Repository](https://maven.apache.org/pom.html#Repository) |
113+
| `maven.build.repository.url` | string | URL of the Maven repository to which the artifact is deployed. See [Maven POM reference / Repository](https://maven.apache.org/pom.html#Repository) |
114+
| `peer.service` | string | Maven repository hostname deduced from the Repository URL |
115115

116116
The `span.kind` is set to `client`
117117

118118
### `jib:build`
119119

120-
| Span attribute | Type | Description |
121-
|-------------------------------------------------|----------|------------------------------------------------------------------------------------------------------------|
122-
| `http.method` | string | `POST` |
123-
| `http.url` | string | URL on the Docker registry deduced from the Docker image specified in the `build` goal configuration. |
124-
| `maven.build.container.image.name` | string | Name of the produced Docker image |
125-
| `maven.build.container.image.tags` | string[] | Tags of the produced Docker image |
126-
| `maven.build.container.registry.url` | string | URL of the container registry to which this image is uploaded. |
127-
| `peer.service` | string | Docker Registry hostname. |
120+
| Span attribute | Type | Description |
121+
|-------------------------------------------------|----------|----------------------------------------------------------------------------------------------------------------------------|
122+
| `http.method` | string | `POST` |
123+
| `http.url` | string | URL on the Docker registry deduced from the Docker image specified in the `build` goal configuration. |
124+
| `maven.build.container.image.name` | string | Name of the produced Docker image |
125+
| `maven.build.container.image.tags` | string[] | Tags of the produced Docker image |
126+
| `maven.build.container.registry.url` | string | URL of the container registry to which this image is uploaded. |
127+
| `peer.service` | string | Docker Registry hostname. |
128128

129129
The `span.kind` is set to `client`
130130

131131
### `snyk:monitor`
132132

133133
See <https://github.com/snyk/snyk-maven-plugin>.
134134

135-
| Span attribute | Type | Description |
136-
|----------------|--------|------------------------------------------------------------------------------------------------|
137-
| `http.method` | string | `POST` |
138-
| `http.url` | string | `https://snyk.io/api/v1/monitor/maven` the underlying Snyk API URL invoked by the Maven plugin.|
139-
| `rpc.method` | string | `monitor`, the underlying Snyk CLI command invoked by the Maven plugin.|
140-
| `peer.service` | string | `snyk.io` |
135+
| Span attribute | Type | Description |
136+
|----------------|--------|-------------------------------------------------------------------------------------------------------- -|
137+
| `http.method` | string | `POST` |
138+
| `http.url` | string | `https://snyk.io/api/v1/monitor/maven` the underlying Snyk API URL invoked by the Maven plugin. |
139+
| `rpc.method` | string | `monitor`, the underlying Snyk CLI command invoked by the Maven plugin. |
140+
| `peer.service` | string | `snyk.io` |
141141

142142
The `span.kind` is set to `client`
143143

0 commit comments

Comments
 (0)