@cliff - Hi there! I’ve moved your question to tech support from the original product announcement thread.
I assume your data is not showing up in Prometheus? If you’re getting a specific error in the Prometheus container, please share that.
Some items stand out to me:
- I would recommend not editing the original
prometheus.yml
file. This will prevent upgrades. Instead, create a new file (maybetextit-scrape.yml
) and then mount it inside the container. Please see our Integration docs for an example of this, specifically the Scrape Config section. It tells you exactly how to do this very task. - You’ll need to ensure you specify the correct
targets:
value, pass inbasic_auth
and specify thehttps
scheme. I can’t tell for sure, but yourtextit-scrape.yml
might look like:
scrape_configs:
- job_name: 'textit'
scrape_interval: 1m
scheme: 'https'
basic_auth:
username: 'metrics'
password: '958745859603d6d1a7052d0e9991262a1011eb0f'
static_configs:
targets: ['https://textit.com/mr/org/501cdde5-7024-4118-b305-554d7175a5e1/metrics']
- Note that you have
targets
ashttps://textit.com/
when I think you need as I have it abovehttps://textit.com/mr/org/501cdde5-7024-4118-b305-554d7175a5e1/metrics
please report back how it goes!