We have a lot of strange POSTs to this REST on our Bitbucket instance. Can i to disable System Plugin? Why it do something if all Analytics disabled in Server settings?
It make 20k request per day.
We recently solve this on one system by using the following in our NGINX front-end server:
location /rest/analytics/1.0/publish/bulk { deny all; return 200; } location /rest/analytics/1.0/publish/bulk/ { deny all; return 200; }
Updated with more accurate code block. Note: by blocking this at the Front-end reverse proxy (nginx) layer, it takes load off the application.
Here some tricks to avoid this problem (and others)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alexey,
The "disable" button on the analytics plugin settings page only prevents the analytics plugin from uploading data to Atlassian. We cannot guarantee that turning off a system plugin will not cause any failures, and Atlassian does not offer support if it does.
Hope this helps,
Kristy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
An observation from Atlassian Site Reliability:
(1) Turning off the analytics plugin (from what we see) does not appear to adversely affect this site (answers.atlassian.com) which is based on Confluence.
(2) Disabling the analytics plugin does not turn off the JavaScript in the UI that sends requests to the server. This is why we blocked the URL end points on the FE servers, since every time Google would reindex the system it would generate n-times more requests than were necessary.
As Kristy says (above), this is not supported by the product. The information is presented as the latest information from a production system using the same product you are using to run one of our public-facing systems. That said, if you choose to disable/block this end point, make sure you test the results on your system to ensure it doesn't break anything.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tricks to block this URL from Jira:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.