Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix display of data frame #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@ Supported --align parameters:
- ALIGN_STDDEV
- ALIGN_COUNT_TRUE
- ALIGN_FRACTION_TRUE
- ALIGN_PERCENTILE_99
- ALIGN_PERCENTILE_95
- ALIGN_PERCENTILE_50
- ALIGN_PERCENTILE_05

Supported --reduce parameters:

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.dev
1.0.1
2 changes: 1 addition & 1 deletion gcpmetrics/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.dev
1.0.1
2 changes: 1 addition & 1 deletion gcpmetrics/gcpmetrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def perform_query(client, metric_id, days, hours, minutes,

else:
# print the whole dataset
print(dataframe)
print(dataframe.to_string())


def process(keyfile, config, project_id, list_resources, list_metrics, query, metric_id, days, hours, minutes,
Expand Down