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 bool support #37

Merged
merged 2 commits into from
Jun 14, 2020
Merged

Fix bool support #37

merged 2 commits into from
Jun 14, 2020

Conversation

davdr
Copy link
Contributor

@davdr davdr commented Jun 13, 2020

This fixes parsing of boolean values.

Boolean support was added thanks to #17, but was incomplete. Consider the following example JSON:

{
    "counter": 1234,
    "values": [
        {
            "id": "id-A",
            "count": 1,
            "some_boolean": true,
            "state": "ACTIVE"
        },
        {
            "id": "id-B",
            "count": 2,
            "some_boolean": true,
            "state": "INACTIVE"
        },
        {
            "id": "id-C",
            "count": 3,
            "some_boolean": false,
            "state": "ACTIVE"
        },
    ]
}

This previously yielded a "skipping not numerical result" error.

This PR corrects this, and also updates the example and README to demo the boolean parsing.

/cc @WilliButz

davdr added 2 commits June 13, 2020 23:36
Signed-off-by: David DR <52098642+davdr@users.noreply.github.com>
Signed-off-by: David DR <52098642+davdr@users.noreply.github.com>
Copy link
Contributor

@SuperQ SuperQ left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, Thanks

@SuperQ SuperQ merged commit 1a5679d into prometheus-community:master Jun 14, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants