metadata.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // Copyright 2019, OpenCensus Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. package tag
  16. const (
  17. // valueTTLNoPropagation prevents tag from propagating.
  18. valueTTLNoPropagation = 0
  19. // valueTTLUnlimitedPropagation allows tag to propagate without any limits on number of hops.
  20. valueTTLUnlimitedPropagation = -1
  21. )
  22. // TTL is metadata that specifies number of hops a tag can propagate.
  23. // Details about TTL metadata is specified at https://github.com/census-instrumentation/opencensus-specs/blob/master/tags/TagMap.md#tagmetadata
  24. type TTL struct {
  25. ttl int
  26. }
  27. var (
  28. // TTLUnlimitedPropagation is TTL metadata that allows tag to propagate without any limits on number of hops.
  29. TTLUnlimitedPropagation = TTL{ttl: valueTTLUnlimitedPropagation}
  30. // TTLNoPropagation is TTL metadata that prevents tag from propagating.
  31. TTLNoPropagation = TTL{ttl: valueTTLNoPropagation}
  32. )
  33. type metadatas struct {
  34. ttl TTL
  35. }
  36. // Metadata applies metadatas specified by the function.
  37. type Metadata func(*metadatas)
  38. // WithTTL applies metadata with provided ttl.
  39. func WithTTL(ttl TTL) Metadata {
  40. return func(m *metadatas) {
  41. m.ttl = ttl
  42. }
  43. }