Skip to content

Commit

Permalink
add curated_metric column to second half of metadata.csv files (#11263)
Browse files Browse the repository at this point in the history
  • Loading branch information
vatteh authored Feb 7, 2022
1 parent 70bd232 commit 73818eb
Show file tree
Hide file tree
Showing 83 changed files with 6,512 additions and 6,514 deletions.
30 changes: 15 additions & 15 deletions kyototycoon/metadata.csv
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
metric_name,metric_type,interval,unit_name,per_unit_name,description,orientation,integration,short_name
kyototycoon.replication.delay,gauge,,millisecond,,Replication delay,0,kyoto_tycoon,kyot_repl_delay
kyototycoon.threads,gauge,,thread,,Total number of threads,0,kyoto_tycoon,kyot_serv_thrd
kyototycoon.connections_per_s,rate,10,connection,,Total number of connections,0,kyoto_tycoon,kyot_serv_conn
kyototycoon.ops.get.hits_per_s,rate,10,hit,,Rate of get hits,0,kyoto_tycoon,kyot_get_hit
kyototycoon.ops.get.misses_per_s,rate,10,hit,,Rate of get misses,0,kyoto_tycoon,kyot_get_miss
kyototycoon.ops.get.total_per_s,rate,10,hit,,Rate of total get hits,0,kyoto_tycoon,kyot_tot_get_hit
kyototycoon.ops.set.hits_per_s,rate,10,hit,,Rate of set hits,0,kyoto_tycoon,kyot_set_hit
kyototycoon.opts.set.misses_per_s,rate,10,miss,,Rate of set misses,0,kyoto_tycoon,kyot_set_miss
kyototycoon.ops.set.total_per_s,rate,10,hit,,Rate of total set hits,0,kyoto_tycoon,kyot_tot_set_hit
kyototycoon.opts.del.hits_per_s,rate,10,hit,,Rate of deleted hits,0,kyoto_tycoon,kyot_remove_hit
kyototycoon.opts.del.misses_per_s,rate,10,miss,,Rate of deleted misses,0,kyoto_tycoon,kyot_remove_miss
kyototycoon.opts.del.total_per_s,rate,10,hit,,Rate of total deleted hits,0,kyoto_tycoon,kyot_tot_remove_hit
kyototycoon.records,gauge,,record,,Total amount of records,0,kyoto_tycoon,kyot_db_count
kyototycoon.size,gauge,,,,Current size of the kyoto tycoon DB,0,kyoto_tycoon,kyot_db_size
metric_name,metric_type,interval,unit_name,per_unit_name,description,orientation,integration,short_name,curated_metric
kyototycoon.replication.delay,gauge,,millisecond,,Replication delay,0,kyoto_tycoon,kyot_repl_delay,
kyototycoon.threads,gauge,,thread,,Total number of threads,0,kyoto_tycoon,kyot_serv_thrd,
kyototycoon.connections_per_s,rate,10,connection,,Total number of connections,0,kyoto_tycoon,kyot_serv_conn,
kyototycoon.ops.get.hits_per_s,rate,10,hit,,Rate of get hits,0,kyoto_tycoon,kyot_get_hit,
kyototycoon.ops.get.misses_per_s,rate,10,hit,,Rate of get misses,0,kyoto_tycoon,kyot_get_miss,
kyototycoon.ops.get.total_per_s,rate,10,hit,,Rate of total get hits,0,kyoto_tycoon,kyot_tot_get_hit,
kyototycoon.ops.set.hits_per_s,rate,10,hit,,Rate of set hits,0,kyoto_tycoon,kyot_set_hit,
kyototycoon.opts.set.misses_per_s,rate,10,miss,,Rate of set misses,0,kyoto_tycoon,kyot_set_miss,
kyototycoon.ops.set.total_per_s,rate,10,hit,,Rate of total set hits,0,kyoto_tycoon,kyot_tot_set_hit,
kyototycoon.opts.del.hits_per_s,rate,10,hit,,Rate of deleted hits,0,kyoto_tycoon,kyot_remove_hit,
kyototycoon.opts.del.misses_per_s,rate,10,miss,,Rate of deleted misses,0,kyoto_tycoon,kyot_remove_miss,
kyototycoon.opts.del.total_per_s,rate,10,hit,,Rate of total deleted hits,0,kyoto_tycoon,kyot_tot_remove_hit,
kyototycoon.records,gauge,,record,,Total amount of records,0,kyoto_tycoon,kyot_db_count,
kyototycoon.size,gauge,,,,Current size of the kyoto tycoon DB,0,kyoto_tycoon,kyot_db_size,
62 changes: 31 additions & 31 deletions lighttpd/metadata.csv
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
metric_name,metric_type,interval,unit_name,per_unit_name,description,orientation,integration,short_name
lighttpd.net.bytes,gauge,,byte,,[Lighttpd 1 only] The number of bytes sent and received since start.,0,lighttpd,net bytes
lighttpd.net.hits,gauge,,hit,,[Lighttpd 1 only] The number of hits since start.,0,lighttpd,net hits
lighttpd.net.bytes_per_s,gauge,,byte,second,[Lighttpd 1 only] The number of bytes sent and received per second.,0,lighttpd,net bytes per s
lighttpd.net.request_per_s,gauge,,request,second,[Lighttpd 1 only] The number of requests per second.,0,lighttpd,net requests per s
lighttpd.performance.idle_server,gauge,,connection,,[Lighttpd 1 only] The number of idle connections.,0,lighttpd,idle servers
lighttpd.performance.busy_servers,gauge,,connection,,[Lighttpd 1 only] The number of active connections.,0,lighttpd,busy servers
lighttpd.performance.uptime,gauge,,second,,[Lighttpd 1 only] The amount of time the server has been up and running.,0,lighttpd,server uptime
lighttpd.connections.state_start,gauge,,connection,,[Lighttpd 2 only] The number of active connections in the state of initializing the read-idle timer.,0,lighttpd,conn state start
lighttpd.connections.state_read_header,gauge,,connection,,[Lighttpd 2 only] The number of active connections in the state of reading the http request header.,0,lighttpd,conn state read header
lighttpd.connections.state_handle_request,gauge,,connection,,[Lighttpd 2 only] The number of active connections in the state of handling the request internally.,0,lighttpd,conn state handle req
lighttpd.connections.state_write_response,gauge,,connection,,[Lighttpd 2 only] The number of active connections in the state of writing the response to the network.,0,lighttpd,conn state write resp
lighttpd.connections.state_keep_alive,gauge,,connection,,[Lighttpd 2 only] The number of idle connections.,0,lighttpd,conn state keep alive
lighttpd.net.bytes_out_avg,gauge,,byte,second,[Lighttpd 2 only] The average number of bytes sent per second since start.,0,lighttpd,net bytes out avg
lighttpd.net.bytes_in_avg,gauge,,byte,second,[Lighttpd 2 only] The average number of bytes received per second since start.,0,lighttpd,net bytes in avg
lighttpd.net.bytes_in_avg_5sec,gauge,,byte,second,[Lighttpd 2 only] The average number of bytes received per second in the past 5 seconds.,0,lighttpd,net bytes in avg 5sec
lighttpd.net.bytes_out_avg_5sec,gauge,,byte,second,[Lighttpd 2 only] The average number of bytes sent per second in the past 5 seconds.,0,lighttpd,net bytes out avg 5sec
lighttpd.net.bytes_out,rate,,byte,second,[Lighttpd 2 only] The number of bytes sent per second.,0,lighttpd,net bytes out
lighttpd.net.bytes_in,rate,,byte,second,[Lighttpd 2 only] The number of bytes received per second.,0,lighttpd,net bytes in
lighttpd.net.connections_avg,gauge,,connection,second,[Lighttpd 2 only] The average number of connections per second since start.,0,lighttpd,net conn avg
lighttpd.net.connections_avg_5sec,gauge,,connection,second,[Lighttpd 2 only] The average number of connections per second in the past 5 seconds.,0,lighttpd,net conn avg 5sec
lighttpd.net.requests_avg_5sec,gauge,,request,second,[Lighttpd 2 only] The average number of requests per second in the past 5 seconds.,0,lighttpd,net req avg 5sec
lighttpd.net.requests_avg,gauge,,request,second,[Lighttpd 2 only] The average number of requests per second since start.,0,lighttpd,net req avg
lighttpd.net.requests_total,rate,,request,second,[Lighttpd 2 only] The number of requests per second.,0,lighttpd,net rq total
lighttpd.net.connections_total,rate,,connection,second,[Lighttpd 2 only] The total number of connections per second.,0,lighttpd,net conn total
lighttpd.performance.memory_usage,gauge,,byte,,[Lighttpd 2 only] The amount of memory used by the server.,-1,lighttpd,mem usage
lighttpd.response.status_1xx,rate,,response,second,[Lighttpd 2 only] The number of 1xx status codes generated per second.,0,lighttpd,resp status 1xx
lighttpd.response.status_2xx,rate,,response,second,[Lighttpd 2 only] The number of 2xx status codes generated per second.,0,lighttpd,resp status 2xx
lighttpd.response.status_3xx,rate,,response,second,[Lighttpd 2 only] The number of 3xx status codes generated per second.,0,lighttpd,resp status 3xx
lighttpd.response.status_4xx,rate,,response,second,[Lighttpd 2 only] The number of 4xx status codes generated per second.,-1,lighttpd,resp status 4xx
lighttpd.response.status_5xx,rate,,response,second,[Lighttpd 2 only] The number of 5xx status codes generated per second.,-1,lighttpd,resp status 5xx
metric_name,metric_type,interval,unit_name,per_unit_name,description,orientation,integration,short_name,curated_metric
lighttpd.net.bytes,gauge,,byte,,[Lighttpd 1 only] The number of bytes sent and received since start.,0,lighttpd,net bytes,
lighttpd.net.hits,gauge,,hit,,[Lighttpd 1 only] The number of hits since start.,0,lighttpd,net hits,
lighttpd.net.bytes_per_s,gauge,,byte,second,[Lighttpd 1 only] The number of bytes sent and received per second.,0,lighttpd,net bytes per s,
lighttpd.net.request_per_s,gauge,,request,second,[Lighttpd 1 only] The number of requests per second.,0,lighttpd,net requests per s,
lighttpd.performance.idle_server,gauge,,connection,,[Lighttpd 1 only] The number of idle connections.,0,lighttpd,idle servers,
lighttpd.performance.busy_servers,gauge,,connection,,[Lighttpd 1 only] The number of active connections.,0,lighttpd,busy servers,
lighttpd.performance.uptime,gauge,,second,,[Lighttpd 1 only] The amount of time the server has been up and running.,0,lighttpd,server uptime,
lighttpd.connections.state_start,gauge,,connection,,[Lighttpd 2 only] The number of active connections in the state of initializing the read-idle timer.,0,lighttpd,conn state start,
lighttpd.connections.state_read_header,gauge,,connection,,[Lighttpd 2 only] The number of active connections in the state of reading the http request header.,0,lighttpd,conn state read header,
lighttpd.connections.state_handle_request,gauge,,connection,,[Lighttpd 2 only] The number of active connections in the state of handling the request internally.,0,lighttpd,conn state handle req,
lighttpd.connections.state_write_response,gauge,,connection,,[Lighttpd 2 only] The number of active connections in the state of writing the response to the network.,0,lighttpd,conn state write resp,
lighttpd.connections.state_keep_alive,gauge,,connection,,[Lighttpd 2 only] The number of idle connections.,0,lighttpd,conn state keep alive,
lighttpd.net.bytes_out_avg,gauge,,byte,second,[Lighttpd 2 only] The average number of bytes sent per second since start.,0,lighttpd,net bytes out avg,
lighttpd.net.bytes_in_avg,gauge,,byte,second,[Lighttpd 2 only] The average number of bytes received per second since start.,0,lighttpd,net bytes in avg,
lighttpd.net.bytes_in_avg_5sec,gauge,,byte,second,[Lighttpd 2 only] The average number of bytes received per second in the past 5 seconds.,0,lighttpd,net bytes in avg 5sec,
lighttpd.net.bytes_out_avg_5sec,gauge,,byte,second,[Lighttpd 2 only] The average number of bytes sent per second in the past 5 seconds.,0,lighttpd,net bytes out avg 5sec,
lighttpd.net.bytes_out,rate,,byte,second,[Lighttpd 2 only] The number of bytes sent per second.,0,lighttpd,net bytes out,
lighttpd.net.bytes_in,rate,,byte,second,[Lighttpd 2 only] The number of bytes received per second.,0,lighttpd,net bytes in,
lighttpd.net.connections_avg,gauge,,connection,second,[Lighttpd 2 only] The average number of connections per second since start.,0,lighttpd,net conn avg,
lighttpd.net.connections_avg_5sec,gauge,,connection,second,[Lighttpd 2 only] The average number of connections per second in the past 5 seconds.,0,lighttpd,net conn avg 5sec,
lighttpd.net.requests_avg_5sec,gauge,,request,second,[Lighttpd 2 only] The average number of requests per second in the past 5 seconds.,0,lighttpd,net req avg 5sec,
lighttpd.net.requests_avg,gauge,,request,second,[Lighttpd 2 only] The average number of requests per second since start.,0,lighttpd,net req avg,
lighttpd.net.requests_total,rate,,request,second,[Lighttpd 2 only] The number of requests per second.,0,lighttpd,net rq total,
lighttpd.net.connections_total,rate,,connection,second,[Lighttpd 2 only] The total number of connections per second.,0,lighttpd,net conn total,
lighttpd.performance.memory_usage,gauge,,byte,,[Lighttpd 2 only] The amount of memory used by the server.,-1,lighttpd,mem usage,
lighttpd.response.status_1xx,rate,,response,second,[Lighttpd 2 only] The number of 1xx status codes generated per second.,0,lighttpd,resp status 1xx,
lighttpd.response.status_2xx,rate,,response,second,[Lighttpd 2 only] The number of 2xx status codes generated per second.,0,lighttpd,resp status 2xx,
lighttpd.response.status_3xx,rate,,response,second,[Lighttpd 2 only] The number of 3xx status codes generated per second.,0,lighttpd,resp status 3xx,
lighttpd.response.status_4xx,rate,,response,second,[Lighttpd 2 only] The number of 4xx status codes generated per second.,-1,lighttpd,resp status 4xx,
lighttpd.response.status_5xx,rate,,response,second,[Lighttpd 2 only] The number of 5xx status codes generated per second.,-1,lighttpd,resp status 5xx,
Loading

0 comments on commit 73818eb

Please sign in to comment.