cassandra.go 1.0 KB

1234567891011121314151617181920212223242526272829
  1. // Unless explicitly stated otherwise all files in this repository are licensed
  2. // under the Apache License Version 2.0.
  3. // This product includes software developed at Datadog (https://www.datadoghq.com/).
  4. // Copyright 2016 Datadog, Inc.
  5. package ext
  6. const (
  7. // CassandraQuery is the tag name used for cassandra queries.
  8. CassandraQuery = "cassandra.query"
  9. // CassandraBatch is the tag name used for cassandra batches.
  10. CassandraBatch = "cassandra.batch"
  11. // CassandraConsistencyLevel is the tag name to set for consitency level.
  12. CassandraConsistencyLevel = "cassandra.consistency_level"
  13. // CassandraCluster specifies the tag name that is used to set the cluster.
  14. CassandraCluster = "cassandra.cluster"
  15. // CassandraRowCount specifies the tag name to use when settings the row count.
  16. CassandraRowCount = "cassandra.row_count"
  17. // CassandraKeyspace is used as tag name for setting the key space.
  18. CassandraKeyspace = "cassandra.keyspace"
  19. // CassandraPaginated specifies the tag name for paginated queries.
  20. CassandraPaginated = "cassandra.paginated"
  21. )