Hi Community,
I had install OpenTelemetry Agent on Windows 2012 R2 and trying to monitor SQL Server 2012. So, I have configured agent.yaml as below and restarted the service but we couldn't see data in infrastructure section. Please suggest what could be the issue!
smartagent/sqlserver:
type: telegraf/sqlserver
host: xxxxxxxxx
port: 1433
userID: xxxxxx
password: xxxxxxxx
Regards,
Eshwar
Be sure you are configuring the receiver per the example mentioned in the guide:
https://docs.splunk.com/Observability/gdi/monitors-databases/mysql.html
receivers:
smartagent/mysql:
type: collectd/mysql
host: 127.0.0.1
port: 3306
username: <global-username-for-all-db>
password: <global-password-for-all-db>
databases:
- name: <name-of-db>
username: <username> #Overrides global username
password: <password> #Overrides global password
Hi,
If you have any additional info you can share, that would be helpful. Generally though, here are some ideas to get started troubleshooting.