diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6bf619795..5d8c9b5b9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@
 
 ### Bug Fixes
 1. [#353](https://github.com/influxdata/influxdb-client-csharp/pull/353): Support for `double` types in LINQ expression [LINQ]
+2. [#360](https://github.com/influxdata/influxdb-client-csharp/pull/360): Designated `HealthAsync` as obsolete in `IInfluxDBClient`
 
 ### Dependencies
 Update dependencies:
diff --git a/Client/InfluxDBClient.cs b/Client/InfluxDBClient.cs
index 6a7142caa..9069f1ce3 100644
--- a/Client/InfluxDBClient.cs
+++ b/Client/InfluxDBClient.cs
@@ -181,6 +181,7 @@ public interface IInfluxDBClient : IDisposable
         /// Get the health of an instance.
         /// 
         /// health of an instance
+        [Obsolete("This method is obsolete. Call 'PingAsync()' instead.", false)]
         Task HealthAsync();
 
         ///