ResultSet 처리
This commit is contained in:
parent
ed726f368b
commit
0e74eb7dd9
|
@ -42,11 +42,10 @@ public class SQLCrawler extends Crawler {
|
||||||
|
|
||||||
for (Item item : config.getItems()) {
|
for (Item item : config.getItems()) {
|
||||||
|
|
||||||
Query query = item.getQuery();
|
|
||||||
OFResultSet resultSet = OFResultSetRow.newInstance(item);
|
OFResultSet resultSet = OFResultSetRow.newInstance(item);
|
||||||
Map<String,Integer> meta = resultSet.getMeta();
|
Map<String,Integer> meta = resultSet.getMeta();
|
||||||
|
|
||||||
rs = stmt.executeQuery((String)query.getQueryInfo().get("query"));
|
rs = stmt.executeQuery((String)item.getQueryInfo().getQuery());
|
||||||
|
|
||||||
while(rs.next()) {
|
while(rs.next()) {
|
||||||
List<String> row = new ArrayList<>(Arrays.asList(new String[meta.size()]));
|
List<String> row = new ArrayList<>(Arrays.asList(new String[meta.size()]));
|
||||||
|
|
|
@ -22,22 +22,22 @@
|
||||||
},
|
},
|
||||||
"items" : [
|
"items" : [
|
||||||
{
|
{
|
||||||
"metrics" : [
|
"keys" : [
|
||||||
"net.connection_count"
|
|
||||||
],
|
|
||||||
"query":
|
|
||||||
{
|
{
|
||||||
|
"metric":"net.connection_count",
|
||||||
|
"key":"Connections"
|
||||||
|
}
|
||||||
|
|
||||||
|
],
|
||||||
"queryInfo" : {
|
"queryInfo" : {
|
||||||
"query":"show status where `variable_name` = 'Connections'",
|
"query":"show status where `variable_name` = 'Connections'"
|
||||||
|
},
|
||||||
|
"mappingInfo" : {
|
||||||
"parseDirection" : "row",
|
"parseDirection" : "row",
|
||||||
"valueColumn" : "Value",
|
"valueColumn" : "Value",
|
||||||
"keyColumns" : [
|
"keyColumns" : [
|
||||||
"Variable_name"
|
"Variable_name"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
"keys" : [
|
|
||||||
"Connections"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -22,17 +22,14 @@
|
||||||
},
|
},
|
||||||
"items" : [
|
"items" : [
|
||||||
{
|
{
|
||||||
"metrics" : [
|
|
||||||
"net.connection_count"
|
|
||||||
],
|
|
||||||
"query": {
|
|
||||||
"queryInfo":{
|
|
||||||
"query" : "select count(pid) as connection_count from pg_catalog.pg_stat_activity where state <> 'idle'" ,
|
|
||||||
"parseDirection":"col"
|
|
||||||
},
|
|
||||||
"keys" : [
|
"keys" : [
|
||||||
"connection_count"
|
{
|
||||||
]
|
"metric":"net.connection_count",
|
||||||
|
"key" : "connection_count"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"queryInfo":{
|
||||||
|
"query" : "select count(pid) as connection_count from pg_catalog.pg_stat_activity where state <> 'idle'"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -22,18 +22,17 @@
|
||||||
},
|
},
|
||||||
"items" : [
|
"items" : [
|
||||||
{
|
{
|
||||||
"metrics" : [
|
|
||||||
"net.connection_count"
|
|
||||||
],
|
|
||||||
"query": {
|
|
||||||
"queryInfo" : {
|
|
||||||
"query": "select count(session_id) as connection_count from sys.dm_exec_connections where session_id = @@SPID",
|
|
||||||
"parseDirection" : "col"
|
|
||||||
},
|
|
||||||
"keys" : [
|
"keys" : [
|
||||||
"connection_count"
|
{
|
||||||
]
|
"metric" :"net.connection_count",
|
||||||
|
"key" : "connection_count"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"queryInfo" : {
|
||||||
|
"query": "select count(session_id) as connection_count from sys.dm_exec_connections where session_id = @@SPID"
|
||||||
|
},
|
||||||
|
"mappingInfo" : {}
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -23,22 +23,24 @@
|
||||||
},
|
},
|
||||||
"items" : [
|
"items" : [
|
||||||
{
|
{
|
||||||
"metrics" : [
|
"keys" : [
|
||||||
"object[$0].db[$1].datafile_size",
|
{
|
||||||
"object[$0].db[$1].logfile_size"
|
"metric" : "object[$0].db[$1].datafile_size",
|
||||||
|
"key" : "Data File(s) Size (KB)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"metric" : "object[$0].db[$1].logfile_size",
|
||||||
|
"key" : "Log File(s) Size (KB)"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"query": {
|
|
||||||
"queryInfo" : {
|
"queryInfo" : {
|
||||||
"query": "select object_name,instance_name, counter_name, cntr_value from sys.dm_os_performance_counters where ( counter_name = 'Data File(s) Size (KB)' or counter_name = 'Log File(s) Size (KB)' ) AND object_name = 'SQLServer:Databases'",
|
"query": "select object_name,instance_name, counter_name, cntr_value from sys.dm_os_performance_counters where ( counter_name = 'Data File(s) Size (KB)' or counter_name = 'Log File(s) Size (KB)' ) AND object_name = 'SQLServer:Databases'"
|
||||||
|
},
|
||||||
|
"mappingInfo" : {
|
||||||
"parseDirection" : "row",
|
"parseDirection" : "row",
|
||||||
"arrayColumns" : [ "object_name","instance_name"],
|
"arrayColumns" : [ "object_name","instance_name"],
|
||||||
"keyColumns" : ["counter_name"],
|
"keyColumns" : ["counter_name"],
|
||||||
"valueColumn" : "cntr_value"
|
"valueColumn" : "cntr_value"
|
||||||
},
|
|
||||||
"keys" : [
|
|
||||||
"Data File(s) Size (KB)",
|
|
||||||
"Log File(s) Size (KB)"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user