Observability
Metrics Export
For monitoring/alerting, Fennel exposes all relevant metrics behind an OpenMetrics compatible endpoint. You can point Grafana, New Relic, Datadog or any other metric system that speaks the OpenMetrics protocol towards this endpoint. Once your metric system is connected to Fennel endpoint, you can seamlessly use your existing monitoring/alerting stack.
The following metrics are exposed by Fennel:
Write path metrics
fennel_source_dataset_metrics
Reports the rate & the health of data ingestion from sources into datasets
Type: Gauge
Labels:
source_name
- name of the sourcedataset_name
- name of the datasetmetric
- metric to report. Possible value arebacklog
&event_timestamp_seconds
.backlog
reports the number of events ingested by the source but yet to be applied to the dataset.event_timestamp_seconds
reports the event timestamp of the last message processed (this is sampled and hence approximate).
fennel_source_dataset_counter
Reports the count of schema errors encountered by the data source
Type: Counter
Labels:
source_name
- name of the sourcedataset_name
- name of the datasetformat
- format of the data being processedmetric
- metric to report. Possible value aremsgs_processed
&schema_error
.msgs_processed
reports the number of messages processed by the source dataset so far.schema_error
reports the number of messages which failed due to schema mismatch related errors.
fennel_pipeline_metrics
Reports the volume and the health of data flowing through the pipeline into the dataset
Type: Gauge
Labels:
pipeline_name
- the name of the pipelinedataset_name
- the name of the datasetmetric
- metric to report. Possible values arebacklog
,event_timestamp_seconds
,error
.backlog
reports the number of events in the input datasets that haven't been processed by the pipeline.event_timestamp_seconds
reports the event timestamp of the last message processed (this is sampled and hence approximate).error
is the number of messages for which the pipeline encountered an error.
fennel_expectation_status_counter
Reports the number of rows in the dataset that passed/failed the given data expectation
Type: Counter
Labels:
dataset
- the name of the dataset whose data is monitoredexpectation_name
– the name of the specific expectationstatus
- whether expectation passed or not. Valid values aresuccess
orfailure
fennel_source_watermark_discarded_rows
Reports the number of rows discarded at the source dataset due to watermarking i.e. the rows are older than the
disorder
set on the source.Type: Counter
Labels:
source_name
- the name of the sourcedataset_name
– the name of the dataset
fennel_source_watermark_timestamp
Reports the current watermark timestamp of the source dataset. Any event older than this timestamp is discarded and reported in
fennel_source_watermark_discarded_rows
metric.Type: Gauge
Labels:
source_name
- the name of the sourcedataset_name
– the name of the dataset
Read path metrics
fennel_request_counter
Reports the number of API calls to Fennel broken by the endpoint.
Type: Counter
Labels:
target
- the endpoint invoked. Valid values aresync
,extract_features
,log
,extract_historical_features
.code
- the status code corresponding to the request. Valid values are valid HTTP codes.
fennel_extract_features_counter
Reports the number of times a given feature has been extracted.
Type: Counter
Labels:
featureset
- the name of the featureset in which the feature to be extracted is definedfeature
- the name of the feature to be extractedworkflow
- the name of the workflow set in the feature extraction call. Note that it defaults todefault
when not set.target
- eitherextract_features
orextract_historical_features
fennel_extract_features_error_counter
Reports the number of errors in feature extraction calls by workflow
Type: Counter
Labels:
workflow
- the name of the workflow set in the feature extraction call. Note that it defaults todefault
when not set.target
- eitherextract_features
orextract_historical_features
.code
- the status code corresponding to the request. Valid values are valid HTTP codes.
fennel_request_latency_seconds
Reports the latencies of the API calls made to Fennel.
Type: Histogram
Labels:
target
- valid values areextract_features
,extract_historical_features
,sync
, andlog
.
extract_features_latency_seconds
Reports the latencies of feature extraction calls in particular.
Type: Histogram
Labels:
workflow
- the name of the workflow set in the feature extraction call. Note that it defaults todefault
when not set.target
- eitherextract_features
orextract_historical_features
.