Skip to content

Commit

Permalink
Add semantic convention for faas.coldstart and container.id (#909)
Browse files Browse the repository at this point in the history
* Add semantic convention for faas coldstart and container ID

* Update Changelog

Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
  • Loading branch information
matej-g and MrAlias committed Jul 7, 2020
1 parent eaa94e9 commit 5a4b68c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Added

- Add `peer.service` semantic attribute. (#898)
- Add semantic convention for `faas.coldstart` and `container.id`. (#909)

### Changed

Expand Down
4 changes: 4 additions & 0 deletions api/standard/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ const (
// A uniquely identifying name for the Container.
ContainerNameKey = kv.Key("container.name")

// Container ID, usually a UUID, as for example used to
// identify Docker containers. The UUID might be abbreviated.
ContainerIDKey = kv.Key("container.id")

// Name of the image the container was built on.
ContainerImageNameKey = kv.Key("container.image.name")

Expand Down
4 changes: 4 additions & 0 deletions api/standard/trace.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,10 @@ const (
// String containing the execution identifier of the function.
FaaSExecutionKey = kv.Key("faas.execution")

// A boolean indicating that the serverless function is executed
// for the first time (aka cold start).
FaaSColdstartKey = kv.Key("faas.coldstart")

// The name of the source on which the operation was performed.
// For example, in Cloud Storage or S3 corresponds to the bucket name,
// and in Cosmos DB to the database name.
Expand Down

0 comments on commit 5a4b68c

Please sign in to comment.