Skip to content
View lukasmalkmus's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro
Block or Report

Block or report lukasmalkmus

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
lukasmalkmus/README.md

Hi there 👋

It's me, Lukas. Software developer by day and night.

🌱 My latest projects

🔭 Latest releases I've contributed to

💬 Feedback

If you use one of my projects, I'd love to hear from you! Don't be shy and let me know what you liked and what needs being improved. Got an issue? Open a ticket, I don't bite and will try my best to help!

📫 How to reach me

I try to be @lukasmalkmus everywhere:


Shout out to Christian Muehlhaeuser for the README inspiration! Check out his markscribe project.

Pinned

  1. rpi_exporter rpi_exporter Public

    A Raspberry Pi CPU temperature exporter.

    Go 77 17

  2. tankerkoenig_exporter tankerkoenig_exporter Public

    A prometheus exporter for the Tankerkoenig API (gas prices).

    Go 19 3

  3. Add this single line to your crontab... Add this single line to your crontab and enable the textfile collector. Collects the temperature of the CPU in degree celsius.
    1
    # crontab -e
    2
    * * * * * /opt/vc/bin/vcgencmd measure_temp | awk -F"=" '{print $2}' | awk -F"'" '{print "node_cpu_temperature " $1}' > /var/lib/node_exporter/textfile_collector/cpu_temp.prom.$$ && mv /var/lib/node_exporter/textfile_collector/cpu_temp.prom.$$ /var/lib/node_exporter/textfile_collector/cpu_temp.prom
  4. test.go test.go
    1
    import (
    2
    	"reflect"
    3
    	"testing"
    4
    )
    5