Help needed to deploy on Windows Server #392
-
Hi Folks i have been trying to implement this exporter on my Machine for testing purposes but I was not able to make it
So just you give you an idea of what i am trying to Do
Note: I have tried using Windows Exporter but I was not able to make it |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Shivam327, we use
So we omit the protocol and parentheses. In case you want to explicitly specify transport, you can set it like below:
For more details, please check As for monitoring MySQL and MSSQL from a single instance, you might want to use jobs as in here: You'd need to define separate jobs (for mssql and mysql), and then also use different collectors with respective queries for each. Which queries you might need is up to you, so I don't think I can help here. I'm happy to assist with the config structure in case you have any issues. |
Beta Was this translation helpful? Give feedback.
Hi @Shivam327, we use
dburl
dependency which requires a valid URL, the format MySQL driver is using by default is non-standard. Instead you need to put the DSN as follows:So we omit the protocol and parentheses. In case you want to explicitly specify transport, you can set it like below:
For more details, please check
dburl
repository: https://github.com/xo/dburl?tab=readme-ov-file#example-urlsAs for monitoring MySQL and MSSQL from a single instance, you might want to use jobs as in here:
https://github.com/burningalchemist/sql_exporter?tab=readme-ov-file#multiple-database-connections
You'd…