# README
Stackdriver exporter
Command line application to extract stackdiver metrics and export then into different formats like json, prometheus, bigquery ....
Notes
Depends on the following for connectivity:
export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/my-key.json"
// Sets your Google Cloud Platform project ID.
projectID := "YOUR_PROJECT_ID"
Or gcloud auth application-default
.
Still to come
More output formats like PROMETHEUS, import to BQ and so on
Examples calling to get multiple metrics
go run main.go --project_id "deployments-metrics" \
--metric_type "storage.googleapis.com/storage/total_bytes|*/5 * * * *" \
--metric_type "storage.googleapis.com/storage/object_count|*/5 * * * *" \
--output_type "json" \
--output_path "/tmp"
go run main.go --project_id "deployments-metrics" \
--metric_type "storage.googleapis.com/storage/total_bytes" \
--metric_type "storage.googleapis.com/storage/object_count" \
--output_type "prometheus"
go run main.go --project_id "deployments-metrics" \
--metric_type "storage.googleapis.com/storage/total_bytes" \
--metric_type "storage.googleapis.com/storage/object_count" \
--metric_type "bigquery.googleapis.com/storage/stored_bytes" \
--metric_type "bigquery.googleapis.com/storage/table_count" \
--metric_type "bigquery.googleapis.com/query/count" \
--metric_type "bigquery.googleapis.com/query/execution_times" \
--output_type "prometheus"
go run main.go --project_id "deployments-metrics" \
--metric_type "storage.googleapis.com/storage/total_bytes|*/10 * * * *" \
--metric_type "storage.googleapis.com/storage/object_count|*/10 * * * *" \
--metric_type "bigquery.googleapis.com/storage/stored_bytes|*/10 * * * *" \
--metric_type "bigquery.googleapis.com/storage/table_count|*/10 * * * *" \
--metric_type "bigquery.googleapis.com/query/count|*/10 * * * *" \
--metric_type "bigquery.googleapis.com/query/execution_times|*/10 * * * *" \
--output_type "json" \
--output_path "/tmp"
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author