---
title: "PE - Configuring Prometheus Exporter for Bitbucket Data Center"
canonical: "https://support.appfire.com/space/PE/14680744/PE%20-%20Configuring%20Prometheus%20Exporter%20for%20Bitbucket%20Data%20Center"
format: markdown
---
> Macro (aura-html)

Data Center installations are available for the following Atlassian products:

- Jira
- Confluence
- Bitbucket

If you have a Data Center instance, then you should gather metrics from each node separately. 

Suppose these are the host names and ports of your nodes and these nodes are accessible by Prometheus:

- nodedc01:8443
- nodedc02:8443
- nodedc03:8443
- nodedc04:8443

Then you need to add a code like this to your prometheus.yml:

```
static_configs:
  - targets: ['nodedc01:8443'] 
    labels: 
      node: 'node1'
  - targets: ['nodedc02:8443'] 
    labels: 
      node: 'node2'
  - targets: ['nodedc03:8443']
    labels: 
      node: 'node3'
  - targets: ['nodedc04:8443'] 
    labels: 
      node: 'node4'
```


In this case you would have a label called node for each metric. Your metrics would look like this:

  
jira_active_cluster_nodes_gauge {instance="nodedc01:8443",job="jira",node="node1"}

jira_active_cluster_nodes_gauge {instance="nodedc02:8443",job="jira",node="nod2"}

jira_active_cluster_nodes_gauge {instance="nodedc03:8443",job="jira",node="node3"}

jira_active_cluster_nodes_gauge {instance="nodedc04:8443",job="jira",node="node4"}