mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-27 07:44:05 +02:00
Db: provide import statistics
This commit is contained in:
parent
a649712048
commit
1b13d15070
@ -55,6 +55,26 @@ class Db extends DbConnection
|
|||||||
return $this->db()->fetchOne($select);
|
return $this->db()->fetchOne($select);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function fetchImportStatistics()
|
||||||
|
{
|
||||||
|
$query = "SELECT 'imported_properties' AS stat_name, COUNT(*) AS stat_value"
|
||||||
|
. " FROM import_run i"
|
||||||
|
. " JOIN imported_rowset_row rs ON i.rowset_checksum = rs.rowset_checksum"
|
||||||
|
. " JOIN imported_row_property rp ON rp.row_checksum = rs.row_checksum"
|
||||||
|
. " UNION ALL"
|
||||||
|
. " SELECT 'imported_rows' AS stat_name, COUNT(*) AS stat_value"
|
||||||
|
. " FROM import_run i"
|
||||||
|
. " JOIN imported_rowset_row rs ON i.rowset_checksum = rs.rowset_checksum"
|
||||||
|
. " UNION ALL"
|
||||||
|
. " SELECT 'unique_rows' AS stat_name, COUNT(*) AS stat_value"
|
||||||
|
. " FROM imported_row"
|
||||||
|
. " UNION ALL"
|
||||||
|
. " SELECT 'unique_properties' AS stat_name, COUNT(*) AS stat_value"
|
||||||
|
. " FROM imported_property"
|
||||||
|
;
|
||||||
|
return $this->db()->fetchPairs($query);
|
||||||
|
}
|
||||||
|
|
||||||
public function getImportrunRowsetChecksum($id)
|
public function getImportrunRowsetChecksum($id)
|
||||||
{
|
{
|
||||||
$db = $this->db();
|
$db = $this->db();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user