Remove quotes from json values

because you are using multiline notation and single line notation for yaml.

      value_template: >-
        "{{ value_json.mon }}"

Use one or the other, not both.

mutliline…

      value_template: >-
        {{ value_json.mon }}

or single line

      value_template: "{{ value_json.mon }}"

See

1 Like