Skip to content

Instantly share code, notes, and snippets.

@FlorianHeigl
Created May 22, 2020 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FlorianHeigl/0336f1381533bbc7f7d7a3f115bbfd6c to your computer and use it in GitHub Desktop.
Save FlorianHeigl/0336f1381533bbc7f7d7a3f115bbfd6c to your computer and use it in GitHub Desktop.
title:
agents:
catalog:
license: GPL
distribution: check_mk
description:
item:
inventory:
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
def inventory_stata_perf_sbench(info):
return []
@get_parsed_item_data
def check_stata_perf_sbench(item, params, data):
return 3, 'not yet implemented'
check_info['stata_perf_sbench'] = {
'inventory_function': inventory_stata_perf_sbench,
'check_function': check_stata_perf_sbench,
'service_description': 'DESCR',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment