-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2 Microsoft SQL templates appear to be missing information #41
Comments
Hi, I'm having the same issue right now. Tested it with Zabbix Agent 2 5.0.24 and 6.0.5. |
I'm also having the same issue |
I faced the same issue and reversed engineered the discovery for the instances discovery for our Infrastructure. $services = Get-Service "mssql$*"|Select-Object -ExpandProperty Name
$data = foreach ($service in $services) {
[PSCustomObject]@{
"{#INSTANCES}" = $service
}
}
$data|ConvertTo-Json
I don't know if the instance names always match the name of the service, as they do at my company. side note: i had to add/change the discovery filter to a marco, like this: {$MSSQL.MULTI.INSTANCE.MATCHAES} = ".*" for match |
I was able to reproduce / fix it the way you described |
I've created a Pull Request Draft, (Only for version 6.0 and Instance) |
template_app_ms_sql_database_discovery_(lld)
references key: windowsdb.discovery
template_app_ms_sql_instance_discovery_(lld)
references key: windowssqlinstances.discovery
These are not agent or agent2 built-in keys. Therefore there must have been additional scripts or at least user parameters that would need to be defined. These templates should be marked as incomplete, or the additional information added.
I tried searching for more info using:
The text was updated successfully, but these errors were encountered: