github.com/lulzWill/go-agent@v2.1.2+incompatible/datastore.go (about)

     1  package newrelic
     2  
     3  // DatastoreProduct encourages consistent metrics across New Relic agents.  You
     4  // may create your own if your datastore is not listed below.
     5  type DatastoreProduct string
     6  
     7  // Datastore names used across New Relic agents:
     8  const (
     9  	DatastoreCassandra     DatastoreProduct = "Cassandra"
    10  	DatastoreDerby                          = "Derby"
    11  	DatastoreElasticsearch                  = "Elasticsearch"
    12  	DatastoreFirebird                       = "Firebird"
    13  	DatastoreIBMDB2                         = "IBMDB2"
    14  	DatastoreInformix                       = "Informix"
    15  	DatastoreMemcached                      = "Memcached"
    16  	DatastoreMongoDB                        = "MongoDB"
    17  	DatastoreMySQL                          = "MySQL"
    18  	DatastoreMSSQL                          = "MSSQL"
    19  	DatastoreOracle                         = "Oracle"
    20  	DatastorePostgres                       = "Postgres"
    21  	DatastoreRedis                          = "Redis"
    22  	DatastoreSolr                           = "Solr"
    23  	DatastoreSQLite                         = "SQLite"
    24  	DatastoreCouchDB                        = "CouchDB"
    25  	DatastoreRiak                           = "Riak"
    26  	DatastoreVoltDB                         = "VoltDB"
    27  )