lib/opentelemetry/semantic_conventions/resource.rb in opentelemetry-semantic_conventions-1.8.0 vs lib/opentelemetry/semantic_conventions/resource.rb in opentelemetry-semantic_conventions-1.10.0

- old
+ new

@@ -89,9 +89,13 @@ # The marketing name for the device model # @note It's recommended this value represents a human readable version of the device model rather than a machine readable alternative DEVICE_MODEL_NAME = 'device.model.name' + # The name of the device manufacturer + # @note The Android OS provides this field via [Build](https://developer.android.com/reference/android/os/Build#MANUFACTURER). iOS apps SHOULD hardcode the value `Apple` + DEVICE_MANUFACTURER = 'device.manufacturer' + # The name of the single function that this runtime instance executes # @note This is the name of the function as configured/deployed on the FaaS platform and is usually different from the name of the callback function (which may be stored in the [`code.namespace`/`code.function`](../../trace/semantic_conventions/span-general.md#source-code-attributes) span attributes) FAAS_NAME = 'faas.name' # The unique ID of the single function that this runtime instance executes \ No newline at end of file