# QA: for testing removal of one label, but not all labels
# HELP metric1 local metric
# Type metric1 gauge
metric1 {foo="abc",uninteresting="123"} 1

# QA: for testing removal of all labels (=> metric becomes singular)
# HELP metric2 local metric
# Type metric2 gauge
metric2 {removeme="something"} 8

# QA: For testing singular metric with no labels
# HELP singular_metric local metric
# Type singular_metric gauge
singular_metric 9

# QA: For testing duplicates by excluding "def"
# - the instance with value 458 prevails
# HELP metric3 Simple gauge metric with two instances
# Type metric3 gauge
metric3 {abc="0"} 456
metric3 {abc="0",def="1"} 458

# QA: For testing optional labels where (somelabel is optional)
# HELP metric4 Simple gauge metric with one instance
# Type metric4 gauge
metric4 {xyz="0",someoptionallabel="not in instance name"} 456
