Skip to content

Commit

Permalink
corrected alert url
Browse files Browse the repository at this point in the history
  • Loading branch information
shishirdw committed Oct 17, 2024
1 parent 5313769 commit b436f3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ public static async Task RunAsync(

private static async Task<dynamic> FetchAlerts(long startDateUsecs, long endDateUsecs, ILogger log)
{
string requestUriString = $"https://helios-sandbox2.cohesity.com/v2/mcm/alert-service/alerts?startTimeUsecs={startDateUsecs}&maxAlerts=1000&endTimeUsecs={endDateUsecs}&alertCategoryList=Security";
string requestUriString = $"https://helios.cohesity.com/v2/mcm/alert-service/alerts?startTimeUsecs={startDateUsecs}&maxAlerts=1000&endTimeUsecs={endDateUsecs}&alertCategoryList=Security";
log.LogInformation("requestUriString --> " + requestUriString);
using HttpClient client = new();
client.DefaultRequestHeaders.Accept.Clear();
Expand Down

0 comments on commit b436f3f

Please sign in to comment.