I try to get values from a webscenario check in Zabbix with the use of regular expressions. Just like: http://blog.zabbix.com/zabbix-2-2-features-part-6-returning-values-from-webpages/2256/
I would like to set this feature using the Zabbix Webclient but I can't find out how to do this.
The purpose is to monitor free diskspace of a hosting package instead of the whole server disk.
Hope someone can help me.
Thanks in advance.
Frank
Related
I am new to LabVIEW and trying to make a small project. In LabVIEW from one device, I am measuring some values and then need to store them in database. Initially, I used Excel to store data. But now I need to add MySQL functionality to store data and then later retrieve when need for analyzing.
I look for NI toolkit but it is expensive. I need some free and open source solution for my project.
I search over SO and google to find any examples where I can start and make it work, but I couldn't find any.
If someone suggest me some resources or having some example code that I can use to achieve my goal. thanks in advance.
Take a look at LabSQL. This works in LabVIEW 2017, allowing connection to a MySQL database without NI's LabVIEW Database Connectivity Toolkit.
I normally use the Database Connectivity Toolkit, but I did confirm I could get this to work in 2017 as well (though connecting to a MSSQL database instead of MySQL).
The only thing that tripped me up at first was not using the Create Connection before Open Connection (because I was used to the aforementioned toolkit). I didn't try anything complicated; I just ran a simple selection query. But it looks like everything should work pretty similarly to the toolkit. As adambro said, if you have a more specific question, maybe we can help with an answer.
I would suggest you could use SQLite. It is a fairly easy toolkit. You can download it via the VI package manager. By dr. James Powell. SQLite is excellent in storing data locally.
Use the SQLite browser from sqlitebrowser.org.
Also a nice way to learn SQL!
I'm used Yii2 Advance to develop system via remote server. When I save file editor will upload it to server automatic. After save I refresh browser. It's still show old data not update from new file. And about 1 min it will up to date.
I test the different folder on server It's work find, Update when save file.
Please help me.
Thanks and best regards,
Woody
Well, Now I can solve this problem by myself.
This effect is PHP function "OPCache" it come with PHP 5.5 or higher.
We can disable OPCache by many way but I used this solution.
Open autoload.php from /yii2project/vender/autoload.php and add this code.
opcache_reset();
I don't know what the best way in Yii2 for reset opcache like this. If it has please reply this post.
Thank you everyone and to think this topic will help you.
I've been given the task to synchronize our mail to our MySQL database.
Is there an easy way that I can do this? Or can you guys suggest any software available for this?
Thank You.
Zapier can help you build connections between two services, including email and MySQL.
Could someone please help me with this. I would like to install the AWDB sample database to use with SharePoint 2010 on my Win7 dev system.
So SQL 2008 Express.
I have tried to download various things from codeplex, basically because I don't know the difference between the types. I have tried to look this up online in some blog posts but none of what I find/follow seem to work.
I think this is where I need to download what I need here, but I am not sure what I need exactly. At this point I am just trying to get the db in SQL right now, and I am maybe novice with sql at that point, but really just want to start experimenting with BCS in SP2010 anyway.
Any takers helping a rookie? Always appreciated! Thanks guys!
AdventureWorks2008R2-Full Database Backup.zip would be fine.
Then in SQL Express use:
restore database [database_name] from disk = 'backup path'
with move 'AdventureWorks2008R2_Data' to '<database_data_file_path>\<filename>.mdf',
move 'AdventureWorks2008R2_Log' to '<database_log_file_path>\<filename>.ldf'
At work we use amfphp as server and mysql as databse. What we need is that when a user updates a record the other users logged in the application can receive that update and see the update data, is that possible? Are there any libraries capable of doing this? I think that the most important part is to identify from the server the logged in users... thank you in advance.
To make this happen you will need to use a server that supports push functionality; meaning the server can send data to the client.
LiveCycle supports this, as does GraniteDS and WebOrb. I don't think that PHP does.