Skip to content
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

#2861 - sqlserver input plugin not working with Azure SQL #2864

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Godeps
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ github.com/vjeantet/grok d73e972b60935c7fec0b4ffbc904ed39ecaf7efe
github.com/wvanbergen/kafka bc265fedb9ff5b5c5d3c0fdcef4a819b3523d3ee
github.com/wvanbergen/kazoo-go 968957352185472eacb69215fa3dbfcfdbac1096
github.com/yuin/gopher-lua 66c871e454fcf10251c61bf8eff02d0978cae75a
github.com/zensqlmonitor/go-mssqldb ffe5510c6fa5e15e6d983210ab501c815b56b363
github.com/denisenkom/go-mssqldb e3bd523cf238e14637d0e028becc25651098a138
golang.org/x/crypto dc137beb6cce2043eb6b5f223ab8bf51c32459f4
golang.org/x/net f2499483f923065a842d38eb4c7f1927e6fc6e6d
golang.org/x/text 506f9d5c962f284575e88337e7d9296d27e729d3
Expand Down
18 changes: 17 additions & 1 deletion plugins/inputs/sqlserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ GO
# By default, the host is localhost, listening on default port (TCP/1433)
# for Windows, the user is the currently running AD user (SSO).
# See https://github.com/denisenkom/go-mssqldb for detailed connection parameters.

servers = [
"Server=192.168.1.30;Port=1433;User Id=telegraf;Password=T$l$gr@f69*;app name=telegraf;log=1;",
"Server=192.168.1.30;Port=2222;User Id=telegraf;Password=T$l$gr@f69*;app name=telegraf;log=1;"
]
## Specify if queries should not run in parallel
# disable_parallel true

```


Expand All @@ -59,7 +61,9 @@ GO
- Memory breakdown (bytes) | Buffer pool, Cache (objects), Cache (sql plans), Other
- Database size
- Log size (bytes) | databases (included sysdb)
- Log max size (bytes) | databases (included sysdb)
- Rows size (bytes) | databases (included sysdb)
- Rows max size (bytes) | databases (included sysdb)
- Database IO
- Log writes (bytes/sec) | databases (included sysdb)
- Rows writes (bytes/sec) | databases (included sysdb)
Expand Down Expand Up @@ -103,6 +107,18 @@ GO
- ... 1000+ metrics
See https://msdn.microsoft.com/fr-fr/library/ms190382(v=sql.120).aspx

## Azure SQL Missing Measurement | Fields:

- Database size
- Log Max size (bytes) | databases (included sysdb)
- Rows Max size (bytes) | databases (included sysdb)
- OS Volume
- Volume total space (bytes) | logical volumes
- Volume available space (bytes) | logical volumes
- Volume used space (bytes) | logical volumes
- Volume used space (%) | logical volumes
- Performance metrics
- Performance metrics | Available physical memory (bytes), Page File Usage (%)

## Tags:
- All stats have the following tags:
Expand Down
Loading