-
Notifications
You must be signed in to change notification settings - Fork 773
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a very basic prometheus exporter (#2143)
- Loading branch information
1 parent
a572ad8
commit 8577221
Showing
15 changed files
with
986 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
src/OpenTelemetry.Exporter.Prometheus/Implementation/PrometheusExporterEventSource.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// <copyright file="PrometheusExporterEventSource.cs" company="OpenTelemetry Authors"> | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// </copyright> | ||
|
||
using System; | ||
using System.Diagnostics.Tracing; | ||
using OpenTelemetry.Internal; | ||
|
||
namespace OpenTelemetry.Exporter.Prometheus.Implementation | ||
{ | ||
/// <summary> | ||
/// EventSource events emitted from the project. | ||
/// </summary> | ||
[EventSource(Name = "OpenTelemetry-Exporter-Prometheus")] | ||
internal class PrometheusExporterEventSource : EventSource | ||
{ | ||
public static PrometheusExporterEventSource Log = new PrometheusExporterEventSource(); | ||
|
||
[NonEvent] | ||
public void FailedExport(Exception ex) | ||
{ | ||
if (this.IsEnabled(EventLevel.Error, (EventKeywords)(-1))) | ||
{ | ||
this.FailedExport(ex.ToInvariantString()); | ||
} | ||
} | ||
|
||
[NonEvent] | ||
public void FailedShutdown(Exception ex) | ||
{ | ||
if (this.IsEnabled(EventLevel.Error, (EventKeywords)(-1))) | ||
{ | ||
this.FailedShutdown(ex.ToInvariantString()); | ||
} | ||
} | ||
|
||
[NonEvent] | ||
public void CanceledExport(Exception ex) | ||
{ | ||
if (this.IsEnabled(EventLevel.Error, (EventKeywords)(-1))) | ||
{ | ||
this.CanceledExport(ex.ToInvariantString()); | ||
} | ||
} | ||
|
||
[Event(1, Message = "Failed to export metrics: '{0}'", Level = EventLevel.Error)] | ||
public void FailedExport(string exception) | ||
{ | ||
this.WriteEvent(1, exception); | ||
} | ||
|
||
[Event(2, Message = "Canceled to export metrics: '{0}'", Level = EventLevel.Error)] | ||
public void CanceledExport(string exception) | ||
{ | ||
this.WriteEvent(2, exception); | ||
} | ||
|
||
[Event(3, Message = "Failed to shutdown Metrics server '{0}'", Level = EventLevel.Error)] | ||
public void FailedShutdown(string exception) | ||
{ | ||
this.WriteEvent(3, exception); | ||
} | ||
} | ||
} |
Oops, something went wrong.