Don't render deprecated enum members (#1764)
This commit is contained in:
parent
578c4bf60b
commit
68b0afaf20
|
|
@ -88,12 +88,9 @@ Semantic conventions for individual database systems SHOULD document what `db.re
|
|||
| Value | Description | Stability |
|
||||
|---|---|---|
|
||||
| `adabas` | Adabas (Adaptable Database System) |  |
|
||||
| `cache` | Deprecated, use `intersystems_cache` instead. | <br>Replaced by `intersystems_cache`. |
|
||||
| `cassandra` | Apache Cassandra |  |
|
||||
| `clickhouse` | ClickHouse |  |
|
||||
| `cloudscape` | Deprecated, use `other_sql` instead. | <br>Replaced by `other_sql`. |
|
||||
| `cockroachdb` | CockroachDB |  |
|
||||
| `coldfusion` | Deprecated, no replacement at this time. | <br>Removed. |
|
||||
| `cosmosdb` | Microsoft Azure Cosmos DB |  |
|
||||
| `couchbase` | Couchbase |  |
|
||||
| `couchdb` | CouchDB |  |
|
||||
|
|
@ -104,7 +101,6 @@ Semantic conventions for individual database systems SHOULD document what `db.re
|
|||
| `elasticsearch` | Elasticsearch |  |
|
||||
| `filemaker` | FileMaker |  |
|
||||
| `firebird` | Firebird |  |
|
||||
| `firstsql` | Deprecated, use `other_sql` instead. | <br>Replaced by `other_sql`. |
|
||||
| `geode` | Apache Geode |  |
|
||||
| `h2` | H2 |  |
|
||||
| `hanadb` | SAP HANA |  |
|
||||
|
|
@ -122,7 +118,6 @@ Semantic conventions for individual database systems SHOULD document what `db.re
|
|||
| `memcached` | Memcached |  |
|
||||
| `mongodb` | MongoDB |  |
|
||||
| `mssql` | Microsoft SQL Server (This value has stability level RELEASE CANDIDATE) |  |
|
||||
| `mssqlcompact` | Deprecated, Microsoft SQL Server Compact is discontinued. | <br>Removed, use `other_sql` instead. |
|
||||
| `mysql` | MySQL (This value has stability level RELEASE CANDIDATE) |  |
|
||||
| `neo4j` | Neo4j |  |
|
||||
| `netezza` | Netezza |  |
|
||||
|
|
|
|||
|
|
@ -66,9 +66,7 @@ size should be used.
|
|||
| Value | Description | Stability |
|
||||
|---|---|---|
|
||||
| `create` | A message is created. "Create" spans always refer to a single message and are used to provide a unique creation context for messages in batch sending scenarios. |  |
|
||||
| `deliver` | Deprecated. Use `process` instead. | <br>Replaced by `process`. |
|
||||
| `process` | One or more messages are processed by a consumer. |  |
|
||||
| `publish` | Deprecated. Use `send` instead. | <br>Replaced by `send`. |
|
||||
| `receive` | One or more messages are requested by a consumer. This operation refers to pull-based scenarios, where consumers explicitly call methods of messaging SDKs to receive messages. |  |
|
||||
| `send` | One or more messages are provided for sending to an intermediary. If a single message is sent, the context of the "Send" span can be used as the creation context and no "Create" span needs to be created. |  |
|
||||
| `settle` | One or more messages are settled. |  |
|
||||
|
|
|
|||
|
|
@ -81,7 +81,6 @@ Describes System Memory attributes
|
|||
| `buffers` | buffers |  |
|
||||
| `cached` | cached |  |
|
||||
| `free` | free |  |
|
||||
| `shared` | shared | <br>Removed, report shared memory usage with `metric.system.memory.shared` metric |
|
||||
| `used` | used |  |
|
||||
|
||||
## System Paging Attributes
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{% import 'stability.j2' as stability %}
|
||||
{% macro filter(member) %}{% if snippet_type is not defined or (member.deprecated is none or member.deprecated == "") %}{{ "True" }}{% else %}{{ "False" }}{% endif %}{% endmacro %}
|
||||
{% macro filter(member) %}{% if (member.deprecated is none or member.deprecated == "") %}{{ "True" }}{% else %}{{ "False" }}{% endif %}{% endmacro %}
|
||||
{% macro table(enum, notes) %}
|
||||
---
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue