ListPrometheusScrapeJobs
In this article:
ListPrometheusScrapeJobs#
Description#
Request to get a list of data scrape jobs for Prometheus service.
Request Parameters#
serviceId — The PaaS service ID.
Type: String
Required: Yes
Response Elements#
prometheusScrapeJobs — List of jobs.
Type: List of PrometheusScrapeJob objects
Examples#
Managing PaaS services in K2 Cloud via API requires a customized version of the boto3 library:
import boto3
session = boto3.Session(
aws_access_key_id="<AWS_ACCESS_KEY_ID>",
aws_secret_access_key="<AWS_SECRET_ACCESS_KEY>",
region_name="",
)
paas_client = session.client(
"paas",
endpoint_url='https://paas.k2.cloud/',
)
route = paas_client.list_prometheus_scrape_jobs(
serviceId='fm-cluster-1ACD3963',
)
Or c2-paas utility from K2 Cloud API Client software suite:
c2-paas ListPrometheusScrapeJobs serviceId fm-cluster-1ACD3963