-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Fix docs of MSSQL filebeat module referencing Traefik plus change paths from Linux to MS Windows #23360
Fix docs of MSSQL filebeat module referencing Traefik plus change paths from Linux to MS Windows #23360
Conversation
Pinging @elastic/integrations-services (Team:Services) |
💚 Build Succeeded
Expand to view the summary
Build stats
Test stats 🧪
💚 Flaky test reportTests succeeded. Expand to view the summary
Test stats 🧪
|
filebeat/docs/modules/mssql.asciidoc
Outdated
|
||
["source","yaml",subs="attributes"] | ||
----- | ||
- module: mssql | ||
log: | ||
enabled: true | ||
var.paths: ["/var/opt/mssql/log/error*"] | ||
var.paths: ["C:\Program Files\Microsoft SQL Server\MSSQL.150\MSSQL\LOG\ERRORLOG*"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Backslashes in YAML need to be escaped or single-quoted:
var.paths: ["C:\Program Files\Microsoft SQL Server\MSSQL.150\MSSQL\LOG\ERRORLOG*"] | |
var.paths: ['C:\Program Files\Microsoft SQL Server\MSSQL.150\MSSQL\LOG\ERRORLOG*'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Thanks Jaime! |
…hs from Linux to MS Windows (elastic#23360) (cherry picked from commit 739f820)
Fixes MSSQL docs that had references to Traefik plus changing the config paths from a Linux based path (also compatible with MSSQL) to a MS Windows path, which is probably more common.
Related issues