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

Make Search automatically redirect HTTP requests to HTTPS #3975

Closed
agr opened this issue May 16, 2017 · 1 comment
Closed

Make Search automatically redirect HTTP requests to HTTPS #3975

agr opened this issue May 16, 2017 · 1 comment

Comments

@agr
Copy link
Contributor

agr commented May 16, 2017

Search part of the #3795.

@agr agr added this to the S118 - 2017.5.08 milestone May 16, 2017
@agr agr self-assigned this May 16, 2017
@agr
Copy link
Contributor Author

agr commented May 18, 2017

Search statistics regarding HTTP usage:

We are getting ~100-150K HTTP requests each day. Almost all of them are GET requests and thus unaffected.

We do receive less than 10 of POST requests each day and occasional attempts to use other HTTP methods including random ones like "ABCD"

requests
| extend verb = tostring(split(name, " ")[0])
| where url !startswith "https" and timestamp > ago(30d)
| summarize sum(itemCount) by verb, bin(timestamp, 1d)
| order by timestamp desc, verb asc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants