Skip to content

Commit

Permalink
chore(deps): Update Prometheus.Client to v4.3.0 (#1472)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanych-sun authored Feb 2, 2021
1 parent 01f083b commit cb9d900
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<PackageReference Include="AutoMapper" Version="10.1.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.0" />
<PackageReference Include="CronScheduler.AspNetCore" Version="3.0.1" />
<PackageReference Include="Prometheus.Client.AspNetCore" Version="4.1.1" />
<PackageReference Include="Prometheus.Client.DependencyInjection" Version="0.2.0" />
<PackageReference Include="Prometheus.Client.AspNetCore" Version="4.2.0" />
<PackageReference Include="Prometheus.Client.DependencyInjection" Version="0.4.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="YamlDotNet" Version="9.1.4" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Promitor.Core.Scraping/Promitor.Core.Scraping.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<PackageReference Include="Guard.Net" Version="1.2.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.16.0" />
<PackageReference Include="Microsoft.Azure.Management.Fluent" Version="1.36.1" />
<PackageReference Include="Prometheus.Client" Version="4.2.0" />
<PackageReference Include="Prometheus.Client" Version="4.3.0" />
<PackageReference Include="YamlDotNet" Version="9.1.4" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using GuardNet;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Prometheus.Client.Abstractions;
using Prometheus.Client;
using Promitor.Core;
using Promitor.Core.Metrics;
using Promitor.Core.Metrics.Sinks;
Expand Down Expand Up @@ -111,4 +111,4 @@ private Dictionary<string, string> DetermineLabels(PrometheusMetricDefinition me
return labels;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Prometheus.Client" Version="4.2.0" />
<PackageReference Include="Prometheus.Client" Version="4.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using GuardNet;
using Microsoft.Extensions.Options;
using Prometheus.Client.Abstractions;
using Prometheus.Client;
using Promitor.Core.Metrics;
using Promitor.Integrations.Sinks.Prometheus.Configuration;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Microsoft.Extensions.Logging.Abstractions;
using Microsoft.Extensions.Options;
using Moq;
using Prometheus.Client.Abstractions;
using Prometheus.Client;
using Promitor.Core.Metrics;
using Promitor.Core.Scraping.Configuration.Serialization.v1.Mapping;
using Promitor.Integrations.Sinks.Prometheus;
Expand Down Expand Up @@ -386,4 +386,4 @@ private static (Mock<IMetricFactory> Factory, Mock<IMetricFamily<IGauge>> Metric
return (metricFactoryMock, gaugeMetricFamilyMock, gaugeMock);
}
}
}
}

0 comments on commit cb9d900

Please sign in to comment.