2016-03-31 16:37:40 -07: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.Collections.Generic;
|
|
|
|
|
|
2017-06-05 20:51:58 -07:00
|
|
|
|
namespace Microsoft.DotNet.Cli.Telemetry
|
2016-03-31 16:37:40 -07:00
|
|
|
|
{
|
|
|
|
|
public interface ITelemetry
|
|
|
|
|
{
|
2016-04-27 16:04:26 -07:00
|
|
|
|
bool Enabled { get; }
|
|
|
|
|
|
2016-03-31 16:37:40 -07:00
|
|
|
|
void TrackEvent(string eventName, IDictionary<string, string> properties, IDictionary<string, double> measurements);
|
|
|
|
|
}
|
|
|
|
|
}
|