6 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
168
views
How to Watch changes in folders in KUBERNETES / go lang
In the Kubernetes environment, we are using configmap as a mount to a specific folder.
The configmap is often modified and updated to kubectl application -f [configmap-name]
I want to use fsnotify to ...
1
vote
0
answers
92
views
error adding /managed-agents/serviceconnect to fsnotify watcher, error: no such file or directory
Title: Error Deploying Docker Image to AWS Elastic Beanstalk: /managed-agents/serviceconnect Directory Not Found
Body:
I am trying to deploy a Docker image created using Jib on AWS Elastic Beanstalk, ...
2
votes
1
answer
526
views
fsnotify watcher uses too much memory
(sorry for bad english)
i am working on a file watcher that will monitor the entire C:\Users tree. but its using too much RAM(around 10 GB). i think there is a memory leak.
i am using "github.com/...
2
votes
1
answer
475
views
How to filter duplicate system messages from fsnotify
I used "github.com/fsnotify/fsnotify" to listen for file changes, but how should I filter some messages too many times?
func Listener() {
watcher, err := fsnotify.NewWatcher()
if err ...
2
votes
1
answer
3k
views
Monitoring an existing file with fsnotify
I'm trying to monitor a file using the fsnotify packet in golang.
I saw few examples like this and I would like to know if this is the best way of using fsnotify:
package main
import (
"log&...
1
vote
2
answers
1k
views
How to use fsnotify to listen to a file not created yet
I'd like to use fsnotify to listen to a file that's not created when started that listening. The fsnotify listening is expected to exit either when the watched file is being written and closed, or it ...