mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Show that statistic data is not a patch
This commit is contained in:
+41
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Copyright 2000-2015 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.intellij.internal.statistic;
|
||||
|
||||
import com.intellij.internal.statistic.beans.GroupDescriptor;
|
||||
import com.intellij.internal.statistic.beans.UsageDescriptor;
|
||||
import com.intellij.openapi.application.impl.ApplicationInfoImpl;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* @author Ivan Chirkov
|
||||
*/
|
||||
public class BuildNumberUsageCollector extends UsagesCollector {
|
||||
@NotNull
|
||||
@Override
|
||||
public Set<UsageDescriptor> getUsages() throws CollectUsagesException {
|
||||
return Collections.singleton(new UsageDescriptor(ApplicationInfoImpl.getShadowInstance().getBuild().asString(), 1));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public GroupDescriptor getGroupId() {
|
||||
return GroupDescriptor.create("application.build");
|
||||
}
|
||||
}
|
||||
+1
@@ -37,6 +37,7 @@ public class StatisticsHttpClientSender implements StatisticsDataSender {
|
||||
Response response = Request.Post(url).bodyForm(Form.form().
|
||||
add("content", content).
|
||||
add("uuid", UpdateChecker.getInstallationUID(PropertiesComponent.getInstance())).
|
||||
add("patch", String.valueOf(false)).
|
||||
add("ide", ApplicationNamesInfo.getInstance().getProductName()).build()).execute();
|
||||
|
||||
final HttpResponse httpResponse = response.returnResponse();
|
||||
|
||||
@@ -296,6 +296,7 @@
|
||||
<statistics.usagesCollector implementation="com.intellij.internal.statistic.OsVersionUsageCollector"/>
|
||||
<statistics.usagesCollector implementation="com.intellij.internal.statistic.UiInfoUsageCollector"/>
|
||||
<statistics.usagesCollector implementation="com.intellij.internal.statistic.JdkInfoUsageCollector"/>
|
||||
<statistics.usagesCollector implementation="com.intellij.internal.statistic.BuildNumberUsageCollector"/>
|
||||
|
||||
<applicationConfigurable parentId="preferences.general" instance="com.intellij.internal.statistic.configurable.StatisticsConfigurable" id="usage.statistics"
|
||||
displayName="Usage Statistics"/>
|
||||
|
||||
Reference in New Issue
Block a user