Octoprint config

I am trying to configure octoprint with my HOmeassistant. What am I suppose to add into the config area in the add-on screen.

edit* Spend 5 seconds on Google and found this: https://www.home-assistant.io/components/octoprint/

Have a good read of it, and post if you still have issues.

Thanks,
THis is what i have so far

octoprint:

  • host: YOUR_OCTOPRINT_HOST
    api_key: YOUR_API_KEY
    name: PRINTER_NAME_1
    port: 5000
    bed: true
    number_of_tools: 1
    sensors:
    monitored_conditions:
    - ‘Current State’
    - ‘Job Percentage’

but how do i add this part (how are the inputs defined)

sensors

(map)(Optional)Configuration for the sensors.

monitored_conditions

    (list)The sensors to activate.

    Default value: all (Current State, Temperatures, Job Percentage, Time Elapsed, Time Remaining)

    Current State

        Text of current state.
    Temperatures

        Temperatures of all available tools, eg. print, head, print bed, etc. These will be displayed as tool0, tool1, or toolN please refer to your OctoPrint frontend to associate the tool number with an actual device.
    Job Percentage

        Percentage of the job.
    Time Elapsed

        Time elapsed on current print job, in seconds.
    Time Remaining

        Time remaining on current print job, in seconds.

Also i am getting this

bad indentation of a mapping entry at line 54, column 20:
number_of_tools: 1
^

this is my configuration.yaml. it works perfectly

octoprint:
host: 192.168.1.49
api_key: !secret octoapi_key
name: 3D Printer
bed: true
number_of_tools: 1
sensors:
monitored_conditions:
- ‘Current State’
- ‘Job Percentage’
- ‘Temperatures’
- ‘Time Elapsed’
- ‘Time Remaining’