-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend csplib to add Azure SQL Database (#1278)
* Initial commit of azure sql * jsonnetfmt * signals feedback
- Loading branch information
Showing
6 changed files
with
312 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
local commonlib = import 'common-lib/common/main.libsonnet'; | ||
function(this) | ||
{ | ||
local s = self, | ||
filteringSelector: this.filteringSelector, | ||
groupLabels: this.groupLabels, | ||
instanceLabels: this.instanceLabels, | ||
aggLevel: 'none', | ||
discoveryMetric: { | ||
azuremonitor: 'azure_microsoft_storage_storageaccounts_blobservices_blobcount_average_count', | ||
}, | ||
|
||
signals: { | ||
successfulConns: { | ||
name: 'Successful connections by database', | ||
description: 'Count of successful connections by database', | ||
type: 'gauge', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_connection_successful_total_count{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
|
||
deadlocks: { | ||
name: 'Deadlocks by database', | ||
description: 'Count of deadlocks by database', | ||
type: 'gauge', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_deadlock_total_count{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
|
||
sessions: { | ||
name: 'Average sessions by database', | ||
description: 'Average number of sessions by database', | ||
type: 'gauge', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_sessions_count_average_count{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
|
||
cpuPercent: { | ||
name: 'CPU utilization by database', | ||
description: 'Percent of CPU utilization by database. If database uses vCores, the vCore percent utilization is shown', | ||
type: 'gauge', | ||
unit: 'percent', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_cpu_percent_average_percent{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
|
||
vCoreCpuPercent: { | ||
name: 'vCore utilization by database', | ||
description: 'Percent of CPU utilization by database. If database uses vCores, the vCore percent utilization is shown', | ||
type: 'gauge', | ||
unit: 'percent', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_cpu_used_average_count{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)") / label_replace(azure_microsoft_sql_servers_databases_cpu_limit_average_count{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
exprWrappers: [['100 * (', ')']], | ||
legendCustomTemplate: '{{database}} vCore', | ||
}, | ||
}, | ||
}, | ||
|
||
storageBytes: { | ||
name: 'Storage utilization by database', | ||
description: 'Bytes of storage by database', | ||
type: 'gauge', | ||
unit: 'bytes', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_storage_maximum_bytes{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
|
||
storagePercent: { | ||
name: 'Storage % of limit by database', | ||
description: 'Percent used of storage limitby database', | ||
type: 'gauge', | ||
unit: 'percent', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_storage_percent_maximum_percent{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
|
||
dtuUsed: { | ||
name: 'Used', | ||
description: 'Average number of DTUs utilized by database', | ||
type: 'gauge', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_dtu_used_average_count{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
|
||
dtuPercent: { | ||
name: 'Percent of limit', | ||
description: 'Average percent of DTU limit utilized by database', | ||
type: 'gauge', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_dtu_consumption_percent_average_percent{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
|
||
dtuLimit: { | ||
name: 'Limit', | ||
description: 'DTU limit by database', | ||
type: 'gauge', | ||
sources: { | ||
azuremonitor: { | ||
expr: 'label_replace(azure_microsoft_sql_servers_databases_dtu_limit_average_count{%(queriesSelector)s}, "database", "$1", "resourceID", ".+/(.*)")', | ||
legendCustomTemplate: '{{database}}', | ||
}, | ||
}, | ||
}, | ||
}, | ||
|
||
} |