2016-03-31 23:37:40 +00:00
|
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2016-04-07 00:02:27 +00:00
|
|
|
|
namespace Microsoft.DotNet.Cli
|
2016-03-31 23:37:40 +00:00
|
|
|
|
{
|
|
|
|
|
public interface ITelemetry
|
|
|
|
|
{
|
2016-04-27 23:04:26 +00:00
|
|
|
|
bool Enabled { get; }
|
|
|
|
|
|
2016-03-31 23:37:40 +00:00
|
|
|
|
void TrackEvent(string eventName, IDictionary<string, string> properties, IDictionary<string, double> measurements);
|
|
|
|
|
}
|
|
|
|
|
}
|