Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General tag changes #1562

Merged
merged 64 commits into from Nov 22, 2022
Merged

General tag changes #1562

merged 64 commits into from Nov 22, 2022

Commits on Oct 31, 2022

  1. ddtrace/ext: 'span.kind' constant in tags.go

    To meet opentelemetry standards, 'span.kind' tag needs to be set in all spans.
    Adds new constant 'SpanKind' with value 'span.kind' in tags.go.
    zarirhamza committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    e0f7480 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2022

  1. contrib/99designs/gqlgen: 'component' and 'span.kind' tags for gqlgen

    Determines 'span.kind' value for gqlgen is 'server'
    Sets tag "'span.kind':'server'" for root spans generated from gqlgen
    Sets tag "'component':'gqlgen'" for all spans generated from gqlgen
    Modifies tests to check parent and child spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    8a5fff6 View commit details
    Browse the repository at this point in the history
  2. contrib/cloud.google.com/go/pubsub.v1: 'component' and 'span.kind' ta…

    …gs for google-cloud-go/pubsub
    
    Determines 'span.kind' value for google-cloud-go/pubsub is 'producer' or 'consumer' depending on context
    Sets tag "'span.kind':'producer'" for root span created from Publish in google-cloud-go/pubsub
    Sets tag "'span.kind':'consumer'" for final span created from WrapRecieveHandler in ggoogle-cloud-go/pubsub
    Sets tag "'component':'google-cloud-go/pubsub'" for all spans generated from google-cloud-go/pubsub
    Modifies tests to check parent and child spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    5798ad6 View commit details
    Browse the repository at this point in the history
  3. contrib/elastic/go-elasticsearch.v6: 'component' and 'span.kind' tags…

    … for go-elasticsearch
    
    Determines 'span.kind' value for go-elasticsearch is 'client'
    Sets tag "'span.kind':'client'" for root spans generated from go-elasticsearch
    Sets tag "'component':'go-elasticsearch'" for all spans generated from go-elasticsearch
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests for elasticsearch_v6 and elasticsearch_v7
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    617f11d View commit details
    Browse the repository at this point in the history
  4. contrib/go-redis: 'component' and 'span.kind' tags for go-redis

    Determines 'span.kind' value for all versions of go-redis is 'client'
    Sets tag "'span.kind':'client'" for root spans generated from all versions of go-redis
    Sets tag "'component':'go-redis'" for all spans generated from all versions of go-redis
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests for redis, redis.v7, redis.v8
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    5a76c4d View commit details
    Browse the repository at this point in the history
  5. contrib/go.mongodb.org/mongo-driver/mongo: 'component' and 'span.kind…

    …' tags for mongo-go-driver
    
    Determines 'span.kind' value for mongo-go-driver is 'client'
    Sets tag "'span.kind':'client'" for root spans generated from mongo-go-driver
    Sets tag "'component':'mongo-go-driver'" for all spans generated from mongo-go-driver
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests for mongo with v4.4.6 (Version did not require AVX support)
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    ff08c57 View commit details
    Browse the repository at this point in the history
  6. contrib/gorilla/mux: 'component' and 'span.kind' tags for gorilla/mux

    Determines 'span.kind' value for gorilla/mux is ‘server’
    Sets tag "'span.kind':'server'" for root spans generated from gorilla/mux
    Sets tag "'component':'gorilla/mux'" for all spans generated from gorilla/mux
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    8261ccf View commit details
    Browse the repository at this point in the history
  7. contrib/net/http: 'component' and 'span.kind' tags for net/http

    Determines 'span.kind' value for net/http is ‘server’ or ‘client’
    Sets tag "'span.kind':'client'" for root spans generated from roundtripper
    Sets tag "'span.kind’:’server’” for root spans generated from servehttp or wrapHandler
    Sets tag "'component’:’net/http’” for all spans generated from net/http
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    baa3615 View commit details
    Browse the repository at this point in the history
  8. contrib/segmentio/kafka.go.v0: 'component' and 'span.kind' tags for k…

    …afka-go
    
    Determines 'span.kind' value for kafka-go is ‘producer’ or ‘consumer’
    Sets tag "'span.kind':'producer'" for root spans generated from producer
    Sets tag "'span.kind’:’consumer’” for root spans generated from consumers
    Sets tag "'component’:’kafka-go’” for all spans generated from kafka-go
    Modifies tests to check spans for newly added tags
    Passes modified test and integrations test
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    6977695 View commit details
    Browse the repository at this point in the history
  9. contrib/confluentinc/confluent-kafka-go/kafka: 'component' and 'span.…

    …kind' tags for confluent-kafka-go
    
    Determines 'span.kind' value for confluent-kafka-go is ‘producer’ or ‘consumer’
    Sets tag "'span.kind':'producer'" for root spans generated from producer
    Sets tag "'span.kind’:’consumer’” for root spans generated from consumers
    Sets tag "'component’:’confluent-kafka-go’” for all spans generated from confluent-kafka-go
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    a802b15 View commit details
    Browse the repository at this point in the history
  10. contrib/aws: 'component' and 'span.kind' tags for aws

    Determines 'span.kind' value for aws is ‘client’
    Sets tag "'span.kind':'client'" for root spans generated from aws
    Sets tag "'component’:’aws-sdk-go’” for all spans generated from aws-sdk-go
    Sets tag "'component’:’aws-sdk-go-v2’” for all spans generated from aws-sdk-go-v2
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    6afe188 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3ec7e50 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2022

  1. contrib/bradfitz/gomemcache/memcache: 'component' and 'span.kind' tag…

    …s for gomemcache
    
    Determines 'span.kind' value for gomemcache is ‘client’
    Sets tag "'span.kind':'client'" for root spans generated from gomemcache
    Sets tag "'component’:’gomemcache’” for all spans generated from gomemcache
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    de5ab38 View commit details
    Browse the repository at this point in the history
  2. contrib/database/sql: 'component' and 'span.kind' tags for database/sql

    Determines 'span.kind' value for database/sql is ‘client’
    Sets tag "'span.kind':'client'" for root spans generated from database/sql
    Sets tag "'component’:’database/sql’” for all spans generated from database/sql
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    5b97b83 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eaa15c6 View commit details
    Browse the repository at this point in the history
  4. contrib/emicklei/go-restful: 'component' and 'span.kind' tags for go-…

    …restful
    
    Determines 'span.kind' value for go-restful is ‘server’
    Sets tag "'span.kind’:’server’” for root spans generated from go-restful
    Sets tag "'component’:’go-restful’” for all spans generated from go-restful
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    f183a54 View commit details
    Browse the repository at this point in the history
  5. contrib/garyburd/redigo: 'component' and 'span.kind' tags for redigo

    Determines 'span.kind' value for redigo is ‘client’
    Sets tag "'span.kind’:’client’” for root spans generated from redigo
    Sets tag "'component’:’redigo’” for all spans generated from redigo
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    9a92083 View commit details
    Browse the repository at this point in the history
  6. contrib/gin-gonic/gin: 'component' and 'span.kind' tags for gin

    Determines 'span.kind' value for gin is ‘client’
    Sets tag "'span.kind’:’client’” for root spans generated from gin
    Sets tag "'component’:’gin’” for all spans generated from gin
    Does not set span.kind tag for spans from HTML rendering as that is a child span
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    1a0a995 View commit details
    Browse the repository at this point in the history
  7. ddtrace/ext: spankind constants for 'span_kind' tags

    Adds constants to be used for 'span_kind' tags used for identification
    Values are either server, client, producer, consumer, or internal
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    aa5f7f5 View commit details
    Browse the repository at this point in the history
  8. contrib: general tag reformatting in integrations

    Replaces string values in 'span_kind' tags with constants defined in ddtrace/ext/span_kind.go
    Adds version to component tag for go-redis
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    096e98d View commit details
    Browse the repository at this point in the history
  9. Merge branch 'general-tag-changes' of ssh://github.com/DataDog/dd-tra…

    …ce-go into general-tag-changes
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    7c0db5b View commit details
    Browse the repository at this point in the history
  10. ddtrace/ext: spankind constants linting

    Renames constants to meet linter requirement
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    c96e34e View commit details
    Browse the repository at this point in the history
  11. contrib: linter and redis test changes

    Replaces spankind constants with new values set in previous commit
    Fixes spankind values for redis to correctly reflect producer/consumer
    Passes segmention/kafka.go.v0 tests
    zarirhamza committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    a17e24c View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2022

  1. contrib: span.kind usage in tests

    Changes 'span.kind' string literal to ext.SpanKind in tests for various integrations
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    1786628 View commit details
    Browse the repository at this point in the history
  2. contrib/net/http: import linting

    Fixes order of imports to meet linting standard
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    f2623e4 View commit details
    Browse the repository at this point in the history
  3. contrib/globalsign/mgo: 'component' and 'span.kind' tags for mgo

    Determines 'span.kind' value for mgo is ‘client’
    Sets tag "'span.kind’:’client’” for root spans generated from mgo
    Sets tag "'component’:’mgo’” for all spans generated from mgo
    Does not set span.kind for spans created from Iter() because those generate child spans after
    Modifies tests to check spans for newly added tags
    Adds new test to check no span.kind tag is set for Iter()
    Passes modified test and integration tests
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    0b4af82 View commit details
    Browse the repository at this point in the history
  4. contrib/net/http: span.kind server tags

    Changes pre-existing span.kind server string literal to constant ext.SpanKindServer
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    9b6b4bf View commit details
    Browse the repository at this point in the history
  5. contrib/gin-gonic/gin: span.kind values for gin

    Changes span.kind value from client to server
    Determined that span.kind value here should be server
    Previous classification of client was incorrect and fixed
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    6bc8f43 View commit details
    Browse the repository at this point in the history
  6. contrib/go-chi: 'component' and 'span.kind' tags for go-chi

    Determines 'span.kind' value for go-chi is ‘server’
    Sets tag "'span.kind’:’server’” for root spans generated from go-chi
    Sets tag "'component’:’chi’” or "'component’:’chi.v5’” for all spans generated from go-chi depending on version
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    940ca0b View commit details
    Browse the repository at this point in the history
  7. contrib: span.kind values for tests

    Changes string literals for span.kind values to constants for existing tests in various integrations
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    f863395 View commit details
    Browse the repository at this point in the history
  8. contrib/go-pg/pg.v10 'component' and 'span.kind' tags for go-pg

    Determines 'span.kind' value for go-pg is ‘client’
    Sets tag "'span.kind’:’client’” for root spans generated from go-pg
    Sets tag "'component’:’pg.v10’” for all spans generated from go-pg
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    a992390 View commit details
    Browse the repository at this point in the history
  9. contrib/gocql/gocql 'component' and 'span.kind' tags for gocql

    Determines 'span.kind' value for gocql is ‘client’
    Sets tag "'span.kind’:’client’” for root spans generated from gocql
    Sets tag "'component’:’gocql’” for all spans generated from gocql
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    3dabc75 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2022

  1. contrib/gofiber/fiber.v2 'component' and 'span.kind' tags for fiber.v2

    Determines 'span.kind' value for fiber.v2 is ‘server’
    Sets tag "'span.kind’:’server’” for root spans generated from fiber.v2
    Sets tag "'component’:’fiber.v2’” for all spans generated from fiber.v2
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 5, 2022
    Configuration menu
    Copy the full SHA
    87b33d4 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2022

  1. contrib/graphql-gophers/graphql-go: 'component' tag for graphql-go

    Sets tag "'component’:’graphql-go” for all spans generated from graphql-go
    Does not set span.kind tag for graphql-go to assume default internal value
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    77ff734 View commit details
    Browse the repository at this point in the history
  2. contrib/99designs/gqlgen: span.kind value change

    Re-determined span.kind value for gqlgen to be internal
    Removes span.kind tag to assume default internal value
    Passes all tests
    zarirhamza committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    5892ec2 View commit details
    Browse the repository at this point in the history
  3. contrib/gopkg.in/jinzhu/gorm.v1: 'component' tag for jinzhu/gorm.v1

    Does not set span.kind tag for jinzhu/gorm.v1 to assume default internal value
    Sets tag "'component’:’jinzhu/gorm.v1’” for all spans generated from jinzhu/gorm.v1
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    df1a9e0 View commit details
    Browse the repository at this point in the history
  4. contrib/gorm.io/gorm.v1: 'component' tag for gorm.io/gorm.v1

    Does not set span.kind tag for gorm.io/gorm.v1 to assume default internal value
    Sets tag "'component’:’gorm.io/gorm.v1’” for all spans generated from gorm.io/gorm.v1
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    3541377 View commit details
    Browse the repository at this point in the history
  5. contrib/jinzhu/gorm: 'component' tag for jinzhu/gorm

    Does not set span.kind tag for jinzhu/gorm to assume default internal value
    Sets tag "'component’:’jinzhu/gorm’” for all spans generated from jinzhu/gorm
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    6a5d6d7 View commit details
    Browse the repository at this point in the history
  6. contrib/julienschmidt/httprouter: 'component' and 'span.kind' tags fo…

    …r julienschmidt/httprouter
    
    Determines 'span.kind' value for julienschmidt/httprouter is ‘server’
    Sets tag "'span.kind’:’server” for root spans generated from julienschmidt/httprouter
    Sets tag "'component’:’julienschmidt/httprouter’” for all spans generated from julienschmidt/httprouter
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    f2ba204 View commit details
    Browse the repository at this point in the history
  7. contrib/k8s.io/client-go/kubernetes 'component' and 'span.kind' tags …

    …for kubernetes/client-go
    
    Determines 'span.kind' value for kubernetes/client-go is ‘client’
    Sets tag "'span.kind’:’client” for root spans generated from kubernetes/client-go
    Sets tag "'component’:’kubernetes/client-go’” for all spans generated from kubernetes/client-go
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    5e060ad View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2022

  1. contrib/miekg/dns 'component' and 'span.kind' tags for miekg/dns

    Determines 'span.kind' value for miekg/dns is ‘client’
    Sets tag "'span.kind’:’client” for root spans generated from miekg/dns
    Sets tag "'component’:’miekg/dns’” for all spans generated from miekg/dns
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    fe5ad23 View commit details
    Browse the repository at this point in the history
  2. contrib/olivere/elastic 'component' and 'span.kind' tags for olivere/…

    …elastic
    
    Determines 'span.kind' value for olivere/elastic is ‘client’
    Sets tag "'span.kind’:’client” for root spans generated from olivere/elastic
    Sets tag "'component’:’olivere/elastic’” for all spans generated from oliviere/elastic
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    8af7b2b View commit details
    Browse the repository at this point in the history
  3. contrib/Shopify/sarama 'component' and 'span.kind' tags for Shopify/s…

    …arama
    
    Determines 'span.kind' value for Shopify/sarama is 'producer' or 'consumer'
    Sets tag "'span.kind':'producer'" for root producer spans generated from Shopify/sarama
    Sets tag "'span.kind':'consumer'" for root consumer spans generated from Shopify/sarama
    Sets tag "'component':'Shopify/sarama'" for all spans generated from Shopify/sarama
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    e8bdab6 View commit details
    Browse the repository at this point in the history
  4. contrib/syndtr/goleveldb 'component' and 'span.kind' tags for syndtr/…

    …goleveldb
    
    Determines 'span.kind' value for syndtr/goleveldb is ‘client’
    Sets tag "'span.kind’:’client’” for root spans generated from syndtr/goleveldb
    Sets tag "'component':'syndtr/goleveldb'" for all spans generated from syndtr/goleveldb
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    011224d View commit details
    Browse the repository at this point in the history
  5. contrib/tidwall/buntdb 'component' and 'span.kind' tags for tidwall/b…

    …untdb
    
    Determines 'span.kind' value for tidwall/buntdb is ‘client’
    Sets tag "'span.kind’:’client’” for root spans generated from tidwall/buntdb
    Sets tag "'component':'tidwall/buntdb'" for all spans generated from tidwall/buntdb
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    f74432f View commit details
    Browse the repository at this point in the history
  6. contrib/urfave/negroni 'component' and 'span.kind' tags for urfave/ne…

    …groni
    
    Determines 'span.kind' value for urfave/negroni is ‘server’
    Sets tag "'span.kind’:’server’” for root spans generated from urfave/negroni
    Sets tag "'component':'urfave/negroni'" for all spans generated from urfave/negroni
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    786e039 View commit details
    Browse the repository at this point in the history
  7. contrib/zenazn/goji.v1/web 'component' and 'span.kind' tags for zenaz…

    …n/goji.v1
    
    Determines 'span.kind' value for zenazn/goji.v1 is ‘server’
    Sets tag "'span.kind’:’server’” for root spans generated from zenazn/goji.v1
    Sets tag "'component':'zenazn/goji.v1'" for all spans generated from zenazn/goji.v1
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    6a62727 View commit details
    Browse the repository at this point in the history
  8. contrib/olivere/elastic: linter fix

    Changes import order according to golinter
    zarirhamza committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    9b18ff0 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2022

  1. contrib/labstack: 'component' and 'span.kind' tags for labstack/echo …

    …and labstack/echo.v4
    
    Determines 'span.kind' value for labstack/echo and labstack/echo.v4 is ‘server’
    Sets tag "'span.kind’:’server’” for root spans generated from labstack/echo and labstack/echo.v4
    Sets tag "'component’:’labstack/echo'" for all spans generated from labstack/echo
    Sets tag "'component’:’labstack/echo.v4’” for all spans generated from labstack/echo.v4
    Modifies tests to check spans for newly added tags
    Passes modified test
    zarirhamza committed Nov 9, 2022
    Configuration menu
    Copy the full SHA
    14e80cb View commit details
    Browse the repository at this point in the history
  2. contrib/hashicorp: 'component' and 'span.kind' tags for hashicorp/con…

    …sul and hashicorp/vault
    
    Determines 'span.kind' value for hashicorp/consul and hashicorp/vault is ‘client’
    Sets tag "'span.kind’:’client’” for root spans generated from hashicorp/consul and hashicorp/vault
    Sets tag "'component’:’hashicorp/consul’” for all spans generated from hashicorp/consul
    Sets tag "'component’:’hashicorp/vault’” for all spans generated from hashicorp/vault
    Modifies tests to check spans for newly added tags
    Passes modified and integration tests
    zarirhamza committed Nov 9, 2022
    Configuration menu
    Copy the full SHA
    33ac0f0 View commit details
    Browse the repository at this point in the history
  3. contrib/twitchtv/twirp: 'component' and 'span.kind' tags for twitchtv…

    …/twirp
    
    Determines 'span.kind' value for twitchtv/twirp is ‘client’ or ‘server’
    Sets tag "'span.kind’:’client’” for root client spans generated from twitchtv/twirp
    Sets tag "'span.kind’:’server’” for root server spans generated from twitchtv/twirp
    Sets tag "'component’:’twirp’” for all spans generated from twitchtv/twirp
    Modifies tests to check spans for newly added tags
    Passes modified tests
    zarirhamza committed Nov 9, 2022
    Configuration menu
    Copy the full SHA
    9bb7f93 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2022

  1. contrib/google.golang.com: 'component' and 'span.kind' tags for grpc-…

    …go, grace-go.v12, google-api-go-client
    
    Determines 'span.kind' value for grpc-go is server or client
    Determines 'span.kind' value for grpc-go.v12 is server or client
    Determines 'span.kind' value for google-api-go-client is client
    
    Sets tag "'span.kind’:’client’” for root client spans generated from grpc-go
    Sets tag "'span.kind’:’server’” for root server spans generated from grpc-go
    Sets tag "'span.kind’:’client’” for root client spans generated from grpc-go.v12
    Sets tag "'span.kind’:’server’” for root server spans generated from grpc-go.v12
    Sets tag "'span.kind’:’client’” for root client spans generated from google-api-go-client
    
    Sets tag "'component’:’grpc-go’” for all spans generated from grpc-go
    Sets tag "'component’:’grpc-go.v12’” for all spans generated from grpc-go.v12
    Sets tag "'component’:’google-api-go-client’” for all spans generated from google-api-go-client
    
    Modifies tests to check spans for newly added tags
    Passes modified tests
    zarirhamza committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    552a9a0 View commit details
    Browse the repository at this point in the history
  2. .github/workflows: system tests for general tags

    Changes to include system tests for general tags
    zarirhamza committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    0ed7fb4 View commit details
    Browse the repository at this point in the history
  3. ddtrace: process_id and language

    Changes system.pid to process_id and from string to numeric
    Changes logic to set language to be set for all spans except spankind client or producer
    Updates tests to reflect changes
    Passes modified tests
    zarirhamza committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    43d305d View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2022

  1. ddtrace/tracer: language tag on spans

    Removes logic of not setting language on spankind client or producer spans
    Sets langauge on all spans
    zarirhamza committed Nov 11, 2022
    Configuration menu
    Copy the full SHA
    aad6197 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2022

  1. Configuration menu
    Copy the full SHA
    4e20629 View commit details
    Browse the repository at this point in the history
  2. contrib/gomodule/redigo: ‘span.kind’ and 'component' tags for gomodul…

    …e/redigo
    
    Determines span.kind tag for gomodule/redigo as ‘client’
    Sets tag “’span.kind’:’client’” for all root spans generated from gomodule/redigo
    Sets tag "'component’:’gomodule/redigo’” for all spans generated from gomodule/redigo
    Modifies tests to check spans for newly added tags
    Passes modified test and integration tests
    zarirhamza committed Nov 15, 2022
    Configuration menu
    Copy the full SHA
    95feaaa View commit details
    Browse the repository at this point in the history
  3. contrib: README

    Updates README.md to include specifications for obligatory 'span.kind' and 'component' tags
    zarirhamza committed Nov 15, 2022
    Configuration menu
    Copy the full SHA
    0c5d91d View commit details
    Browse the repository at this point in the history
  4. contrib: 'component' values for several integrations

    Updates all 'component' values to be set to full path of integration package starting after contrib/
    Runs all tests and passes them
    zarirhamza committed Nov 15, 2022
    Configuration menu
    Copy the full SHA
    903b143 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    442a504 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4329499 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2022

  1. Configuration menu
    Copy the full SHA
    96f5585 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2022

  1. Configuration menu
    Copy the full SHA
    344b5f1 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2022

  1. Configuration menu
    Copy the full SHA
    9c0188b View commit details
    Browse the repository at this point in the history