[ZBX-25472] ZBX-24930 - Get data item, java script "bug"? Created: 2024 Oct 29 Updated: 2025 Feb 21 Resolved: 2025 Feb 21 |
|
Status: | Closed |
Project: | ZABBIX BUGS AND ISSUES |
Component/s: | None |
Affects Version/s: | 7.0.4 |
Fix Version/s: | None |
Type: | Incident report | Priority: | Trivial |
Reporter: | Kean Seng Lee | Assignee: | Aleksejs Abrosimovs |
Resolution: | Duplicate | Votes: | 1 |
Labels: | api, azure, integration | ||
Remaining Estimate: | Not Specified | ||
Time Spent: | Not Specified | ||
Original Estimate: | Not Specified |
Attachments: |
![]() |
Description |
https://www.zabbix.com/integrations/azure This template --> Azure Microsoft SQL Database by HTTP Item "Get data" - Suggest to update the Java Script.
java script started from row 115: Instead of going for chunk of 20 metrics, it is better to go 1 by 1. // for (var i = 0; i < metrics.length; i += 20) { for (var i = 0; i < metrics.length; i++) { prepared_metrics.push(// chunk.map(function (element) { // return encodeURIComponent(element); encodeURIComponent(metric) // }).join(',') The reason is, if one of the metrics is in error, all the rest of metrics values will be dropped. "errors": "Failed to receive data:\ncpu_percent,physical_data_read_percent,log_write_percent,storage,connection_successful,connection_failed,blocked_by_firewall,deadlock,storage_percent,xtp_storage_percent,workers_percent,sessions_percent,sessions_count,cpu_limit,cpu_used,sqlserver_process_core_percent,sqlserver_process_memory_percent,tempdb_data_size,tempdb_log_size,tempdb_log_used_percent : Request failed with status code 400: {\"code\":\"BadRequest\",\"message\":\"Failed to find metric configuration for provider: Microsoft.Sql, resource Type: servers/databases, metric: cpu_limit, Valid metrics: cpu_percent,physical_data_read_percent,log_write_percent,dtu_consumption_percent,storage,connection_successful,connection_failed,connection_failed_user_error,blocked_by_firewall,availability,deadlock,storage_percent,xtp_storage_percent,workers_percent,sessions_percent,sessions_count,dtu_limit,dtu_used,sqlserver_process_core_percent,sqlserver_process_memory_percent,sql_instance_cpu_percent,sql_instance_memory_percent,tempdb_data_size,tempdb_log_size,tempdb_log_used_percent,allocated_data_storage,ledger_digest_upload_success,ledger_digest_upload_failed\"}\nfull_backup_size_bytes,diff_backup_size_bytes,log_backup_size_bytes : Request failed with status code 400: {\"code\":\"BadRequest\",\"message\":\"Failed to find metric configuration for provider: Microsoft.Sql, resource Type: servers/databases, metric: full_backup_size_bytes, Valid metrics: cpu_percent,physical_data_read_percent,log_write_percent,dtu_consumption_percent,storage,connection_successful,connection_failed,connection_failed_user_error,blocked_by_firewall,availability,deadlock,storage_percent,xtp_storage_percent,workers_percent,sessions_percent,sessions_count,dtu_limit,dtu_used,sqlserver_process_core_percent,sqlserver_process_memory_percent,sql_instance_cpu_percent,sql_instance_memory_percent,tempdb_data_size,tempdb_log_size,tempdb_log_used_percent,allocated_data_storage,ledger_digest_upload_success,ledger_digest_upload_failed\"}"
|
Comments |
Comment by Kean Seng Lee [ 2024 Oct 29 ] |
|
Comment by Aleksejs Abrosimovs [ 2025 Feb 21 ] |
Hello. I believe, it is still better to use one API call to get 20 metrics at once rather than make 20 separate 20 API calls for each metric. Using less API calls in a script make them more efficient and faster. The cause of the error in response is known - instance does not have metrics we are asking. That happens because classic MSSQL template was automatically attached on discovered DTU-based database host. There was no template for DTU-based MSSQL databases at the moment. Similar case described here: Improved Azure MSSQL databases discovery and new template for DTU-based databases soon will be made in the scope of this task: |